mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Not updating automatic tax flag correctly when removing VAT number
This commit is contained in:
parent
39ac93326d
commit
a728d65985
@ -622,47 +622,45 @@ 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;
|
||||||
}
|
if (string.IsNullOrWhiteSpace(taxIdType))
|
||||||
|
|
||||||
var taxIdType = taxInformation.TaxIdType;
|
|
||||||
if (string.IsNullOrWhiteSpace(taxIdType))
|
|
||||||
{
|
|
||||||
taxIdType = taxService.GetStripeTaxCode(taxInformation.Country,
|
|
||||||
taxInformation.TaxId);
|
|
||||||
|
|
||||||
if (taxIdType == null)
|
|
||||||
{
|
{
|
||||||
logger.LogWarning("Could not infer tax ID type in country '{Country}' with tax ID '{TaxID}'.",
|
taxIdType = taxService.GetStripeTaxCode(taxInformation.Country,
|
||||||
taxInformation.Country,
|
|
||||||
taxInformation.TaxId);
|
taxInformation.TaxId);
|
||||||
throw new Exceptions.BadRequestException("billingTaxIdTypeInferenceError");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
if (taxIdType == null)
|
||||||
{
|
{
|
||||||
await stripeAdapter.TaxIdCreateAsync(customer.Id,
|
logger.LogWarning("Could not infer tax ID type in country '{Country}' with tax ID '{TaxID}'.",
|
||||||
new TaxIdCreateOptions { Type = taxIdType, Value = taxInformation.TaxId });
|
|
||||||
}
|
|
||||||
catch (StripeException e)
|
|
||||||
{
|
|
||||||
switch (e.StripeError.Code)
|
|
||||||
{
|
|
||||||
case StripeConstants.ErrorCodes.TaxIdInvalid:
|
|
||||||
logger.LogWarning("Invalid tax ID '{TaxID}' for country '{Country}'.",
|
|
||||||
taxInformation.TaxId,
|
|
||||||
taxInformation.Country);
|
|
||||||
throw new Exceptions.BadRequestException("billingInvalidTaxIdError");
|
|
||||||
default:
|
|
||||||
logger.LogError(e,
|
|
||||||
"Error creating tax ID '{TaxId}' in country '{Country}' for customer '{CustomerID}'.",
|
|
||||||
taxInformation.TaxId,
|
|
||||||
taxInformation.Country,
|
taxInformation.Country,
|
||||||
customer.Id);
|
taxInformation.TaxId);
|
||||||
throw new Exceptions.BadRequestException("billingTaxIdCreationError");
|
throw new Exceptions.BadRequestException("billingTaxIdTypeInferenceError");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await stripeAdapter.TaxIdCreateAsync(customer.Id,
|
||||||
|
new TaxIdCreateOptions { Type = taxIdType, Value = taxInformation.TaxId });
|
||||||
|
}
|
||||||
|
catch (StripeException e)
|
||||||
|
{
|
||||||
|
switch (e.StripeError.Code)
|
||||||
|
{
|
||||||
|
case StripeConstants.ErrorCodes.TaxIdInvalid:
|
||||||
|
logger.LogWarning("Invalid tax ID '{TaxID}' for country '{Country}'.",
|
||||||
|
taxInformation.TaxId,
|
||||||
|
taxInformation.Country);
|
||||||
|
throw new Exceptions.BadRequestException("billingInvalidTaxIdError");
|
||||||
|
default:
|
||||||
|
logger.LogError(e,
|
||||||
|
"Error creating tax ID '{TaxId}' in country '{Country}' for customer '{CustomerID}'.",
|
||||||
|
taxInformation.TaxId,
|
||||||
|
taxInformation.Country,
|
||||||
|
customer.Id);
|
||||||
|
throw new Exceptions.BadRequestException("billingTaxIdCreationError");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user