mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
refactor
This commit is contained in:
parent
c367db0dbe
commit
90ecc6b79e
@ -21,8 +21,7 @@ public class OrganizationBillingController(
|
||||
IOrganizationRepository organizationRepository,
|
||||
IPaymentService paymentService,
|
||||
ISubscriberService subscriberService,
|
||||
IPaymentHistoryService paymentHistoryService,
|
||||
ITaxService taxService) : BaseBillingController
|
||||
IPaymentHistoryService paymentHistoryService) : BaseBillingController
|
||||
{
|
||||
[HttpGet("metadata")]
|
||||
public async Task<IResult> GetMetadataAsync([FromRoute] Guid organizationId)
|
||||
@ -268,8 +267,6 @@ public class OrganizationBillingController(
|
||||
return Error.NotFound();
|
||||
}
|
||||
|
||||
requestBody.TaxIdType = taxService.GetStripeTaxCode(requestBody.Country, requestBody.TaxId);
|
||||
|
||||
var taxInformation = requestBody.ToDomain();
|
||||
|
||||
await subscriberService.UpdateTaxInformation(organization, taxInformation);
|
||||
|
@ -5,8 +5,8 @@ namespace Bit.Core.Billing.Models;
|
||||
public record TaxInformation(
|
||||
string Country,
|
||||
string PostalCode,
|
||||
string TaxId,
|
||||
string TaxIdType,
|
||||
string? TaxId,
|
||||
string? TaxIdType,
|
||||
string Line1,
|
||||
string Line2,
|
||||
string City,
|
||||
|
@ -622,8 +622,8 @@ public class SubscriberService(
|
||||
return;
|
||||
}
|
||||
|
||||
string taxIdType;
|
||||
if (string.IsNullOrWhiteSpace(taxInformation.TaxIdType))
|
||||
var taxIdType = taxInformation.TaxIdType;
|
||||
if (string.IsNullOrWhiteSpace(taxIdType))
|
||||
{
|
||||
taxIdType = taxService.GetStripeTaxCode(taxInformation.Country,
|
||||
taxInformation.TaxId);
|
||||
@ -636,10 +636,6 @@ public class SubscriberService(
|
||||
throw new Exceptions.BadRequestException("billingTaxIdTypeInferenceError");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
taxIdType = taxInformation.TaxIdType;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user