From d49cc18a41d97d45181f2c5bcf7470f4b7392e4e Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Mon, 18 May 2020 12:38:00 -0400 Subject: [PATCH] Stripe not crediting customer balance after void --- .../Implementations/StripePaymentService.cs | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index b591d2ac7b..5ebfa36cba 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -956,7 +956,25 @@ namespace Bit.Core.Services return paymentIntentClientSecret; } - await invoiceService.VoidInvoiceAsync(invoice.Id, new InvoiceVoidOptions()); + invoice = await invoiceService.VoidInvoiceAsync(invoice.Id, new InvoiceVoidOptions()); + + // HACK: Workaround for customer balance credit + if (invoice.StartingBalance < 0) + { + // Customer had a balance applied to this invoice. Since we can't fully trust Stripe to + // credit it back to the customer (even though their docs claim they will), we need to + // check that balance against the current customer balance and determine if it needs to be re-applied + customer = await customerService.GetAsync(subscriber.GatewayCustomerId, customerOptions); + + // Assumption: Customer balance should now be $0, otherwise payment would not have failed. + if (customer.Balance == 0) + { + await customerService.UpdateAsync(customer.Id, new CustomerUpdateOptions + { + Balance = invoice.StartingBalance + }); + } + } } if (e is StripeException strEx &&