From a735bdd027b101b5eb73134ef17d0706a40d5582 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Thu, 19 Aug 2021 15:21:06 +1000 Subject: [PATCH] Fix sales tax error if using PayPal or credit (#1524) Add sales tax information to previewInvoice, which is used to calculate the amount of the PayPal or account credit charge. Without this, the charged amount and Stripe subscription amounts are different and throws an error. --- src/Core/Services/Implementations/StripePaymentService.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index 88006eb21f..5274ed8b76 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -513,7 +513,8 @@ namespace Bit.Core.Services var previewInvoice = await invoiceService.UpcomingAsync(new UpcomingInvoiceOptions { Customer = customer.Id, - SubscriptionItems = ToInvoiceSubscriptionItemOptions(subCreateOptions.Items) + SubscriptionItems = ToInvoiceSubscriptionItemOptions(subCreateOptions.Items), + SubscriptionDefaultTaxRates = subCreateOptions.DefaultTaxRates, }); if (previewInvoice.AmountDue > 0) @@ -599,7 +600,8 @@ namespace Bit.Core.Services var previewInvoice = await invoiceService.UpcomingAsync(new UpcomingInvoiceOptions { Customer = customer.Id, - SubscriptionItems = ToInvoiceSubscriptionItemOptions(subCreateOptions.Items) + SubscriptionItems = ToInvoiceSubscriptionItemOptions(subCreateOptions.Items), + SubscriptionDefaultTaxRates = subCreateOptions.DefaultTaxRates, }); if (previewInvoice.AmountDue > 0) {