1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00
This commit is contained in:
Jonas Hendrickx 2025-03-19 15:41:36 +01:00
parent 3eada56467
commit 94157b1850

View File

@ -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();
}
}