mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Don't enable tax for customer without tax info (#5347)
This commit is contained in:
parent
2f2ef20c74
commit
ad2ea4ca21
@ -356,11 +356,20 @@ public class OrganizationBillingService(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var customerHasTaxInfo = customer is
|
||||||
|
{
|
||||||
|
Address:
|
||||||
|
{
|
||||||
|
Country: not null and not "",
|
||||||
|
PostalCode: not null and not ""
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
var subscriptionCreateOptions = new SubscriptionCreateOptions
|
var subscriptionCreateOptions = new SubscriptionCreateOptions
|
||||||
{
|
{
|
||||||
AutomaticTax = new SubscriptionAutomaticTaxOptions
|
AutomaticTax = new SubscriptionAutomaticTaxOptions
|
||||||
{
|
{
|
||||||
Enabled = true
|
Enabled = customerHasTaxInfo
|
||||||
},
|
},
|
||||||
CollectionMethod = StripeConstants.CollectionMethod.ChargeAutomatically,
|
CollectionMethod = StripeConstants.CollectionMethod.ChargeAutomatically,
|
||||||
Customer = customer.Id,
|
Customer = customer.Id,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user