diff options
Diffstat (limited to 'lib/super_good/solidus_taxjar')
-rw-r--r-- | lib/super_good/solidus_taxjar/tax_calculator.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/super_good/solidus_taxjar/tax_calculator.rb b/lib/super_good/solidus_taxjar/tax_calculator.rb index a3c0690..d2b7b74 100644 --- a/lib/super_good/solidus_taxjar/tax_calculator.rb +++ b/lib/super_good/solidus_taxjar/tax_calculator.rb @@ -13,6 +13,7 @@ module SuperGood def calculate return no_tax if SuperGood::SolidusTaxJar.test_mode return no_tax if order.tax_address.empty? || order.line_items.none? + return no_tax unless taxable_address? order.tax_address cache do next no_tax unless taxjar_breakdown @@ -128,6 +129,10 @@ module SuperGood def exception_handler SuperGood::SolidusTaxJar.exception_handler end + + def taxable_address?(address) + SuperGood::SolidusTaxJar.taxable_address_check.(address) + end end end end |