1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[PM-18268] SM Marketing Initiated Trials cause invoice previewing to … (#5404)

This commit is contained in:
Jonas Hendrickx 2025-02-14 18:01:49 +01:00 committed by GitHub
parent 762acdbd03
commit 288f08da2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1852,7 +1852,6 @@ public class StripePaymentService : IPaymentService
Enabled = true,
},
Currency = "usd",
Discounts = new List<InvoiceDiscountOptions>(),
SubscriptionDetails = new InvoiceSubscriptionDetailsOptions
{
Items =
@ -1903,29 +1902,23 @@ public class StripePaymentService : IPaymentService
];
}
if (gatewayCustomerId != null)
if (!string.IsNullOrWhiteSpace(gatewayCustomerId))
{
var gatewayCustomer = await _stripeAdapter.CustomerGetAsync(gatewayCustomerId);
if (gatewayCustomer.Discount != null)
{
options.Discounts.Add(new InvoiceDiscountOptions
{
Discount = gatewayCustomer.Discount.Id
});
options.Coupon = gatewayCustomer.Discount.Coupon.Id;
}
}
if (gatewaySubscriptionId != null)
if (!string.IsNullOrWhiteSpace(gatewaySubscriptionId))
{
var gatewaySubscription = await _stripeAdapter.SubscriptionGetAsync(gatewaySubscriptionId);
if (gatewaySubscription?.Discount != null)
{
var gatewaySubscription = await _stripeAdapter.SubscriptionGetAsync(gatewaySubscriptionId);
if (gatewaySubscription?.Discount != null)
{
options.Discounts.Add(new InvoiceDiscountOptions
{
Discount = gatewaySubscription.Discount.Id
});
}
options.Coupon ??= gatewaySubscription.Discount.Coupon.Id;
}
}
@ -1976,7 +1969,6 @@ public class StripePaymentService : IPaymentService
Enabled = true,
},
Currency = "usd",
Discounts = new List<InvoiceDiscountOptions>(),
SubscriptionDetails = new InvoiceSubscriptionDetailsOptions
{
Items =
@ -2069,7 +2061,7 @@ public class StripePaymentService : IPaymentService
if (gatewayCustomer.Discount != null)
{
options.Discounts.Add(new InvoiceDiscountOptions { Discount = gatewayCustomer.Discount.Id });
options.Coupon = gatewayCustomer.Discount.Coupon.Id;
}
}
@ -2079,10 +2071,7 @@ public class StripePaymentService : IPaymentService
if (gatewaySubscription?.Discount != null)
{
options.Discounts.Add(new InvoiceDiscountOptions
{
Discount = gatewaySubscription.Discount.Id
});
options.Coupon ??= gatewaySubscription.Discount.Coupon.Id;
}
}