1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00

Only allow automatic tax flag to be updated for complete subscription updates such as plan changes, not when upgrading additional storage, seats, etc

This commit is contained in:
Jonas Hendrickx 2025-04-01 13:39:31 +02:00
parent 50d2200dce
commit 9846f5b133
No known key found for this signature in database
GPG Key ID: C4B27F601CE4317D
2 changed files with 12 additions and 10 deletions

View File

@ -39,9 +39,8 @@ public class AutomaticTaxFactory(
} }
var personalUsePlans = await _personalUsePlansTask.Value; var personalUsePlans = await _personalUsePlansTask.Value;
var plans = await pricingClient.ListPlans();
if (personalUsePlans.Any(x => plans.Any(y => y.PasswordManager.StripePlanId == x))) if (parameters.Prices != null && parameters.Prices.Any(x => personalUsePlans.Any(y => y == x)))
{ {
return new PersonalUseAutomaticTaxStrategy(featureService); return new PersonalUseAutomaticTaxStrategy(featureService);
} }

View File

@ -128,9 +128,11 @@ public class StripePaymentService : IPaymentService
new SubscriptionPendingInvoiceItemIntervalOptions { Interval = "month" }; new SubscriptionPendingInvoiceItemIntervalOptions { Interval = "month" };
} }
if (subscriptionUpdate is CompleteSubscriptionUpdate)
{
if (_featureService.IsEnabled(FeatureFlagKeys.PM19147_AutomaticTaxImprovements)) if (_featureService.IsEnabled(FeatureFlagKeys.PM19147_AutomaticTaxImprovements))
{ {
var automaticTaxParameters = new AutomaticTaxFactoryParameters(subscriber, updatedItemOptions.Select(x => x.Price)); var automaticTaxParameters = new AutomaticTaxFactoryParameters(subscriber, updatedItemOptions.Select(x => x.Plan ?? x.Price));
var automaticTaxStrategy = await _automaticTaxFactory.CreateAsync(automaticTaxParameters); var automaticTaxStrategy = await _automaticTaxFactory.CreateAsync(automaticTaxParameters);
automaticTaxStrategy.SetUpdateOptions(subUpdateOptions, sub); automaticTaxStrategy.SetUpdateOptions(subUpdateOptions, sub);
} }
@ -138,6 +140,7 @@ public class StripePaymentService : IPaymentService
{ {
subUpdateOptions.EnableAutomaticTax(sub.Customer, sub); subUpdateOptions.EnableAutomaticTax(sub.Customer, sub);
} }
}
if (!subscriptionUpdate.UpdateNeeded(sub)) if (!subscriptionUpdate.UpdateNeeded(sub))
{ {