diff --git a/app/Ninja/Reports/InvoiceReport.php b/app/Ninja/Reports/InvoiceReport.php index 3ac9e212a2d0..319717f40b52 100644 --- a/app/Ninja/Reports/InvoiceReport.php +++ b/app/Ninja/Reports/InvoiceReport.php @@ -95,7 +95,7 @@ class InvoiceReport extends AbstractReport ]; if (TaxRate::scope()->count()) { - $row[] = $invoice->getTaxTotal(); + $row[] = $isFirst ? $account->formatMoney($invoice->getTaxTotal(), $client) : ''; } if ($account->custom_invoice_text_label1) { diff --git a/app/Ninja/Reports/QuoteReport.php b/app/Ninja/Reports/QuoteReport.php index 28f1399feb39..600d3c69ff81 100644 --- a/app/Ninja/Reports/QuoteReport.php +++ b/app/Ninja/Reports/QuoteReport.php @@ -82,7 +82,7 @@ class QuoteReport extends AbstractReport ]; if (TaxRate::scope()->count()) { - $row[] = $invoice->getTaxTotal(); + $row[] = $account->formatMoney($invoice->getTaxTotal(), $client); } if ($account->custom_invoice_text_label1) {