-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔃 [Magento Community Engineering] Community Contributions - 2.3-devel…
…op latest changes Accepted Community Pull Requests: - #24111: MFTF Low stock reports sections and page. (by @nmalevanec) - #24117: #24116: Webapi schema generation fail in case when Ge� (by @swnsma) - #24109: Update _icons.less (by @Bartlomiejsz) Fixed GitHub Issues: - #24116: Webapi Swager schema generation fail in case when Get endpoint has param with Extension Attributes (reported by @swnsma) has been fixed in #24117 by @swnsma in 2.3-develop branch Related commits: 1. 166a1e0
- Loading branch information
Showing
6 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
app/code/Magento/Reports/Test/Mftf/Page/LowStockReportPage.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<pages xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/PageObject.xsd"> | ||
<page name="LowStockReportPage" url="reports/report_product/lowstock/" area="admin" module="Reports"> | ||
<section name="LowStockReportMainSection"/> | ||
<section name="LowStockProductGridSection"/> | ||
</page> | ||
</pages> |
16 changes: 16 additions & 0 deletions
16
app/code/Magento/Reports/Test/Mftf/Section/LowStockProductGridSection.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
|
||
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd"> | ||
<section name="LowStockProductGridSection"> | ||
<element name="productSku" type="input" selector="//tr[1]/td[@data-column='sku']"/> | ||
<element name="productName" type="input" selector="//tr[1]/td[@data-column='name']"/> | ||
<element name="productQty" type="input" selector="//tr[1]/td[@data-column='qty']"/> | ||
</section> | ||
</sections> |
19 changes: 19 additions & 0 deletions
19
app/code/Magento/Reports/Test/Mftf/Section/LowStockReportMainSection.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
|
||
<sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd"> | ||
<section name="LowStockReportFilterSection"> | ||
<element name="productSku" type="input" selector="#gridLowstock_filter_sku"/> | ||
<element name="productName" type="input" selector="#gridLowstock_filter_name"/> | ||
<element name="qtyFrom" type="input" selector="#gridLowstock_filter_qty_from"/> | ||
<element name="qtyTo" type="input" selector="#gridLowstock_filter_qty_to"/> | ||
<element name="searchButton" type="button" selector="//button/span[text()='Search']"/> | ||
<element name="resetButton" type="button" selector="//button/span[text()='Reset Filter']"/> | ||
</section> | ||
</sections> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters