mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Not updating automatic tax flag correctly when removing VAT number
This commit is contained in:
parent
39ac93326d
commit
a728d65985
@ -622,11 +622,8 @@ public class SubscriberService(
|
|||||||
await stripeAdapter.TaxIdDeleteAsync(customer.Id, taxId.Id);
|
await stripeAdapter.TaxIdDeleteAsync(customer.Id, taxId.Id);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(taxInformation.TaxId))
|
if (!string.IsNullOrWhiteSpace(taxInformation.TaxId))
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var taxIdType = taxInformation.TaxIdType;
|
var taxIdType = taxInformation.TaxIdType;
|
||||||
if (string.IsNullOrWhiteSpace(taxIdType))
|
if (string.IsNullOrWhiteSpace(taxIdType))
|
||||||
{
|
{
|
||||||
@ -665,6 +662,7 @@ public class SubscriberService(
|
|||||||
throw new Exceptions.BadRequestException("billingTaxIdCreationError");
|
throw new Exceptions.BadRequestException("billingTaxIdCreationError");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (featureService.IsEnabled(FeatureFlagKeys.PM19147_AutomaticTaxImprovements))
|
if (featureService.IsEnabled(FeatureFlagKeys.PM19147_AutomaticTaxImprovements))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user