diff --git a/app/DataMapper/Tax/BaseRule.php b/app/DataMapper/Tax/BaseRule.php index 060c3b1775e9..78cb2e41b416 100644 --- a/app/DataMapper/Tax/BaseRule.php +++ b/app/DataMapper/Tax/BaseRule.php @@ -145,6 +145,11 @@ class BaseRule implements RuleInterface $this->client = $invoice->client; + if(!$this->client->tax_data){ + $this->should_calc_tax = false; + return $this; + } + $this->resolveRegions(); if(!$this->isTaxableRegion())