Issues #150 fixed
This commit is contained in:
parent
c510e8ae47
commit
82760de8d4
|
|
@ -79,7 +79,7 @@ class OrderDataGrid
|
|||
'label' => 'Base Total',
|
||||
'sortable' => true,
|
||||
'wrapper' => function ($value) {
|
||||
return core()->currency($value);
|
||||
return core()->formatBasePrice($value);
|
||||
}
|
||||
], [
|
||||
'name' => 'or.grand_total',
|
||||
|
|
@ -88,7 +88,7 @@ class OrderDataGrid
|
|||
'label' => 'Grand Total',
|
||||
'sortable' => false,
|
||||
'wrapper' => function ($value) {
|
||||
return core()->currency($value);
|
||||
return core()->formatBasePrice($value);
|
||||
}
|
||||
], [
|
||||
'name' => 'or.created_at',
|
||||
|
|
|
|||
Loading…
Reference in New Issue