diff --git a/src/Core/Billing/Services/Implementations/AutomaticTax/BusinessUseAutomaticTaxStrategy.cs b/src/Core/Billing/Services/Implementations/AutomaticTax/BusinessUseAutomaticTaxStrategy.cs index 427067ffdf..84b3328921 100644 --- a/src/Core/Billing/Services/Implementations/AutomaticTax/BusinessUseAutomaticTaxStrategy.cs +++ b/src/Core/Billing/Services/Implementations/AutomaticTax/BusinessUseAutomaticTaxStrategy.cs @@ -57,6 +57,11 @@ public class BusinessUseAutomaticTaxStrategy : IAutomaticTaxStrategy return false; } - return customer.Address.Country == "US"; + if (customer.Address.Country == "US") + { + return true; + } + + return customer.TaxIds != null && customer.TaxIds.Any(); } }