diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs index 9be13b12cf..0971d2fdc7 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -414,8 +414,9 @@ namespace Bit.Core.Services var prorationDate = DateTime.UtcNow; var seatItem = sub.Items?.Data?.FirstOrDefault(i => i.Plan.Id == plan.StripeSeatPlanId); - // Retain original collection method + // Retain original collection method and days util due var collectionMethod = sub.CollectionMethod; + var daysUntilDue = sub.DaysUntilDue; var subUpdateOptions = new SubscriptionUpdateOptions { @@ -430,8 +431,8 @@ namespace Bit.Core.Services } }, ProrationBehavior = "always_invoice", - DaysUntilDue = 1, CollectionMethod = "send_invoice", + DaysUntilDue = daysUntilDue ?? 1, ProrationDate = prorationDate, }; @@ -485,17 +486,19 @@ namespace Bit.Core.Services // being applied forward to the next month's invoice ProrationBehavior = "none", CollectionMethod = collectionMethod, + DaysUntilDue = daysUntilDue, }); throw; } } - // Change back the subscription collection method - if (collectionMethod != "send_invoice") + // Change back the subscription collection method and/or days until due + if (collectionMethod != "send_invoice" || daysUntilDue == null) { await subscriptionService.UpdateAsync(sub.Id, new SubscriptionUpdateOptions { CollectionMethod = collectionMethod, + DaysUntilDue = daysUntilDue, }); } diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index 5274ed8b76..6b971f9709 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -889,7 +889,18 @@ namespace Bit.Core.Services if (cardPaymentMethodId == null) { // We're going to delete this draft invoice, it can't be paid - await invoiceService.DeleteAsync(invoice.Id); + try + { + await invoiceService.DeleteAsync(invoice.Id); + } + catch + { + await invoiceService.FinalizeInvoiceAsync(invoice.Id, new InvoiceFinalizeOptions + { + AutoAdvance = false + }); + await invoiceService.VoidInvoiceAsync(invoice.Id); + } throw new BadRequestException("No payment method is available."); } }