From 94157b1850a7f57c1ff9b6dbff6d76591bfe9053 Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Wed, 19 Mar 2025 15:41:36 +0100 Subject: [PATCH] WIP --- .../AutomaticTax/BusinessUseAutomaticTaxStrategy.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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(); } }