AdminInvoiceItemsSection.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <sections xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:mftf:Page/etc/SectionObject.xsd">
  10. <section name="AdminInvoiceItemsSection">
  11. <element name="itemName" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .product-title" parameterized="true"/>
  12. <element name="itemSku" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .product-sku-block" parameterized="true"/>
  13. <element name="itemPrice" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .col-price .price" parameterized="true"/>
  14. <element name="itemQty" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .col-qty .qty-table" parameterized="true"/>
  15. <element name="itemQtyToInvoice" type="input" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .col-qty-invoice .qty-input" parameterized="true"/>
  16. <element name="itemSubtotal" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .col-subtotal .price" parameterized="true"/>
  17. <element name="itemTaxAmount" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .col-tax .price" parameterized="true"/>
  18. <element name="itemDiscountAmount" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .col-discount .price" parameterized="true"/>
  19. <element name="itemTotal" type="text" selector=".order-invoice-tables tbody:nth-of-type({{row}}) .col-total .price" parameterized="true"/>
  20. <element name="nameColumn" type="text" selector=".order-invoice-tables .product-title"/>
  21. <element name="skuColumn" type="text" selector=".order-invoice-tables .product-sku-block"/>
  22. <element name="priceColumn" type="text" selector=".order-invoice-tables .col-price .price"/>
  23. <element name="qtyColumn" type="text" selector=".order-invoice-tables .col-qty .qty-table"/>
  24. <element name="qtyToInvoiceColumn" type="input" selector=".order-invoice-tables .col-qty-invoice .qty-input"/>
  25. <element name="subtotalColumn" type="text" selector=".order-invoice-tables .col-subtotal .price"/>
  26. <element name="taxAmountColumn" type="text" selector=".order-invoice-tables .col-tax .price"/>
  27. <element name="discountAmountColumn" type="text" selector=".order-invoice-tables .col-discount .price"/>
  28. <element name="totalColumn" type="text" selector=".order-invoice-tables .col-total .price"/>
  29. <element name="updateQty" type="button" selector=".order-invoice-tables tfoot button[data-ui-id='order-items-update-button']"/>
  30. </section>
  31. </sections>