File tree Expand file tree Collapse file tree 9 files changed +11
-102
lines changed
view/adminhtml/ui_component
dev/tests/functional/tests/app/Magento/Sales/Test/Block/Adminhtml/Invoice Expand file tree Collapse file tree 9 files changed +11
-102
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
<element name =" filters" type =" button" selector =" //div[@id='sales_order_view_tabs_order_invoices_content']//button[@data-action='grid-filter-expand']" timeout =" 30" />
18
18
<element name =" applyFilters" type =" button" selector =" //div[@id='sales_order_view_tabs_order_invoices_content']//button[@data-action='grid-filter-apply']" timeout =" 30" />
19
19
<element name =" invoiceId" type =" input" selector =" //div[@id='sales_order_view_tabs_order_invoices_content']//input[@name='increment_id']" timeout =" 30" />
20
- <element name =" amountFrom" type =" input" selector =" [name='base_grand_total [from]']" timeout =" 30" />
21
- <element name =" amountTo" type =" input" selector =" [name='base_grand_total [to]']" timeout =" 30" />
20
+ <element name =" amountFrom" type =" input" selector =" [name='grand_total [from]']" timeout =" 30" />
21
+ <element name =" amountTo" type =" input" selector =" [name='grand_total [to]']" timeout =" 30" />
22
22
</section >
23
- </sections >
23
+ </sections >
Original file line number Diff line number Diff line change 1386
1386
comment =" Adjustment Negative" />
1387
1387
<column xsi : type =" decimal" name =" order_base_grand_total" scale =" 4" precision =" 20" unsigned =" false"
1388
1388
nullable =" true" comment =" Order Grand Total" />
1389
- <column xsi : type =" varchar" name =" order_currency_code" nullable =" true" length =" 3" comment =" Order Currency Code" />
1390
- <column xsi : type =" varchar" name =" base_currency_code" nullable =" true" length =" 3" comment =" Base Currency Code" />
1391
1389
<constraint xsi : type =" primary" referenceId =" PRIMARY" >
1392
1390
<column name =" entity_id" />
1393
1391
</constraint >
Original file line number Diff line number Diff line change 815
815
"shipping_and_handling" : true ,
816
816
"adjustment_positive" : true ,
817
817
"adjustment_negative" : true ,
818
- "order_base_grand_total" : true ,
819
- "order_currency_code" : true ,
820
- "base_currency_code" : true
818
+ "order_base_grand_total" : true
821
819
},
822
820
"index" : {
823
821
"SALES_CREDITMEMO_GRID_ORDER_INCREMENT_ID" : true ,
1247
1245
"SALES_ORDER_STATUS_LABEL_STORE_ID_STORE_STORE_ID" : true
1248
1246
}
1249
1247
}
1250
- }
1248
+ }
Original file line number Diff line number Diff line change 641
641
<item name =" adjustment_positive" xsi : type =" string" >sales_creditmemo.adjustment_positive</item >
642
642
<item name =" adjustment_negative" xsi : type =" string" >sales_creditmemo.adjustment_negative</item >
643
643
<item name =" order_base_grand_total" xsi : type =" string" >sales_order.base_grand_total</item >
644
- <item name =" order_currency_code" xsi : type =" string" >sales_order.order_currency_code</item >
645
- <item name =" base_currency_code" xsi : type =" string" >sales_order.base_currency_code</item >
646
644
</argument >
647
645
</arguments >
648
646
</virtualType >
Original file line number Diff line number Diff line change 6
6
*/
7
7
-->
8
8
<config xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" urn:magento:framework:Module/etc/module.xsd" >
9
- <module name =" Magento_Sales" >
9
+ <module name =" Magento_Sales" >
10
10
<sequence >
11
11
<module name =" Magento_Rule" />
12
12
<module name =" Magento_Catalog" />
Original file line number Diff line number Diff line change 119
119
<column name =" base_grand_total" class =" Magento\Sales\Ui\Component\Listing\Column\Price" >
120
120
<settings >
121
121
<filter >textRange</filter >
122
- <label translate =" true" >Refunded (Base) </label >
122
+ <label translate =" true" >Refunded</label >
123
123
</settings >
124
124
</column >
125
125
<column name =" order_status" component =" Magento_Ui/js/grid/columns/select" >
194
194
<visible >false</visible >
195
195
</settings >
196
196
</column >
197
- <column name =" subtotal" class =" Magento\Sales\Ui\Component\Listing\Column\PurchasedPrice " >
197
+ <column name =" subtotal" class =" Magento\Sales\Ui\Component\Listing\Column\Price " >
198
198
<settings >
199
199
<filter >textRange</filter >
200
200
<label translate =" true" >Subtotal</label >
Original file line number Diff line number Diff line change 130
130
<label translate =" true" >Status</label >
131
131
</settings >
132
132
</column >
133
- <column name =" base_grand_total " class =" Magento\Sales\Ui\Component\Listing\Column\Price " >
133
+ <column name =" grand_total " class =" Magento\Sales\Ui\Component\Listing\Column\PurchasedPrice " >
134
134
<settings >
135
135
<filter >textRange</filter >
136
136
<label translate =" true" >Amount</label >
Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ class Grid extends \Magento\Ui\Test\Block\Adminhtml\DataGrid
24
24
'selector ' => 'input[name="order_increment_id"] ' ,
25
25
],
26
26
'grand_total_from ' => [
27
- 'selector ' => 'input[name="base_grand_total [from]"] ' ,
27
+ 'selector ' => 'input[name="grand_total [from]"] ' ,
28
28
],
29
29
'grand_total_to ' => [
30
- 'selector ' => 'input[name="base_grand_total [to]"] ' ,
30
+ 'selector ' => 'input[name="grand_total [to]"] ' ,
31
31
],
32
32
];
33
33
You can’t perform that action at this time.
0 commit comments