From 5945c39b3226ddee8aaa601bacc8290c91d55c04 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 18 Feb 2019 08:07:30 -0500 Subject: [PATCH] associated ah-hoc prorate invoice with sub --- src/Core/Services/Implementations/StripePaymentService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index 9f5392aede..b6db5f87bb 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -530,7 +530,8 @@ namespace Bit.Core.Services { Billing = Billing.SendInvoice, DaysUntilDue = 1, - CustomerId = subscriber.GatewayCustomerId + CustomerId = subscriber.GatewayCustomerId, + SubscriptionId = subscriber.GatewaySubscriptionId }); var invoicePayOptions = new InvoicePayOptions();