This commit is contained in:
jekkos
2022-11-19 01:03:36 +01:00
committed by Steve Ireland
parent 15f9955382
commit 8a0b43922d

View File

@@ -155,9 +155,9 @@ function get_sale_data_last_row(ResultInterface $sales): array
return [
'sale_id' => '-',
'sale_time' => lang('Sales.total'),
'amount_due' => '<b>'.to_currency($sum_amount_due).'</b>',
'amount_tendered' => '<b>'. to_currency($sum_amount_tendered).'</b>',
'change_due' => '<b>'.to_currency($sum_change_due).'</b>'
'amount_due' => to_currency($sum_amount_due),
'amount_tendered' => to_currency($sum_amount_tendered),
'change_due' => to_currency($sum_change_due)
];
}