mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Pay 0 cost invoices that have not been paid (#1739)
This commit is contained in:
parent
757927e02a
commit
dc3d70cf3a
@ -19,7 +19,7 @@ namespace Bit.Core.Services
|
|||||||
Task<Stripe.Invoice> InvoiceUpdateAsync(string id, Stripe.InvoiceUpdateOptions options);
|
Task<Stripe.Invoice> InvoiceUpdateAsync(string id, Stripe.InvoiceUpdateOptions options);
|
||||||
Task<Stripe.Invoice> InvoiceFinalizeInvoiceAsync(string id, Stripe.InvoiceFinalizeOptions options);
|
Task<Stripe.Invoice> InvoiceFinalizeInvoiceAsync(string id, Stripe.InvoiceFinalizeOptions options);
|
||||||
Task<Stripe.Invoice> InvoiceSendInvoiceAsync(string id, Stripe.InvoiceSendOptions options);
|
Task<Stripe.Invoice> InvoiceSendInvoiceAsync(string id, Stripe.InvoiceSendOptions options);
|
||||||
Task<Stripe.Invoice> InvoicePayAsync(string id, Stripe.InvoicePayOptions options);
|
Task<Stripe.Invoice> InvoicePayAsync(string id, Stripe.InvoicePayOptions options = null);
|
||||||
Task<Stripe.Invoice> InvoiceDeleteAsync(string id, Stripe.InvoiceDeleteOptions options = null);
|
Task<Stripe.Invoice> InvoiceDeleteAsync(string id, Stripe.InvoiceDeleteOptions options = null);
|
||||||
Task<Stripe.Invoice> InvoiceVoidInvoiceAsync(string id, Stripe.InvoiceVoidOptions options = null);
|
Task<Stripe.Invoice> InvoiceVoidInvoiceAsync(string id, Stripe.InvoiceVoidOptions options = null);
|
||||||
IEnumerable<Stripe.PaymentMethod> PaymentMethodListAutoPaging(Stripe.PaymentMethodListOptions options);
|
IEnumerable<Stripe.PaymentMethod> PaymentMethodListAutoPaging(Stripe.PaymentMethodListOptions options);
|
||||||
|
@ -101,7 +101,7 @@ namespace Bit.Core.Services
|
|||||||
return _invoiceService.SendInvoiceAsync(id, options);
|
return _invoiceService.SendInvoiceAsync(id, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task<Stripe.Invoice> InvoicePayAsync(string id, Stripe.InvoicePayOptions options)
|
public Task<Stripe.Invoice> InvoicePayAsync(string id, Stripe.InvoicePayOptions options = null)
|
||||||
{
|
{
|
||||||
return _invoiceService.PayAsync(id, options);
|
return _invoiceService.PayAsync(id, options);
|
||||||
}
|
}
|
||||||
|
@ -801,6 +801,12 @@ namespace Bit.Core.Services
|
|||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (!invoice.Paid)
|
||||||
|
{
|
||||||
|
// Pay invoice with no charge to customer this completes the invoice immediately without waiting the scheduled 1h
|
||||||
|
invoice = await _stripeAdapter.InvoicePayAsync(subResponse.LatestInvoiceId);
|
||||||
|
paymentIntentClientSecret = null;
|
||||||
|
}
|
||||||
|
|
||||||
// Change back the subscription collection method and/or days until due
|
// Change back the subscription collection method and/or days until due
|
||||||
if (collectionMethod != "send_invoice" || daysUntilDue == null)
|
if (collectionMethod != "send_invoice" || daysUntilDue == null)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user