mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Working on reports
This commit is contained in:
parent
7130110f8e
commit
49815448df
@ -95,7 +95,7 @@ class InvoiceReport extends AbstractReport
|
|||||||
];
|
];
|
||||||
|
|
||||||
if (TaxRate::scope()->count()) {
|
if (TaxRate::scope()->count()) {
|
||||||
$row[] = $invoice->getTaxTotal();
|
$row[] = $isFirst ? $account->formatMoney($invoice->getTaxTotal(), $client) : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($account->custom_invoice_text_label1) {
|
if ($account->custom_invoice_text_label1) {
|
||||||
|
@ -82,7 +82,7 @@ class QuoteReport extends AbstractReport
|
|||||||
];
|
];
|
||||||
|
|
||||||
if (TaxRate::scope()->count()) {
|
if (TaxRate::scope()->count()) {
|
||||||
$row[] = $invoice->getTaxTotal();
|
$row[] = $account->formatMoney($invoice->getTaxTotal(), $client);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($account->custom_invoice_text_label1) {
|
if ($account->custom_invoice_text_label1) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user