mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for negative line total display
This commit is contained in:
parent
4934af9ee5
commit
4773285dfa
@ -713,7 +713,7 @@ class PdfBuilder
|
||||
|
||||
$data[$key][$table_type.'.cost'] = $this->service->config->formatMoney($item->cost);
|
||||
|
||||
$data[$key][$table_type.'.line_total'] = $this->service->config->formatMoney($item->line_total);
|
||||
$data[$key][$table_type.'.line_total'] = $this->service->config->formatMoneyNoRounding($item->line_total);
|
||||
} else {
|
||||
$data[$key][$table_type.'.quantity'] = '';
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user