diff --git a/app/Helpers/Invoice/InvoiceItemSum.php b/app/Helpers/Invoice/InvoiceItemSum.php index 3be7e878ceb8..2e5cca8bd00c 100644 --- a/app/Helpers/Invoice/InvoiceItemSum.php +++ b/app/Helpers/Invoice/InvoiceItemSum.php @@ -169,7 +169,8 @@ class InvoiceItemSum private function shouldCalculateTax(): self { - if (!$this->invoice->company->calculate_taxes) { + // + if (!$this->invoice->company->calculate_taxes || !$this->invoice->company->account->isFreeHostedClient()) { $this->calc_tax = false; return $this; }