Issues #150 fixed

This commit is contained in:
jitendra 2018-11-27 10:44:13 +05:30
parent c510e8ae47
commit 82760de8d4
1 changed files with 2 additions and 2 deletions

View File

@ -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',