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:
parent
762acdbd03
commit
288f08da2a
@ -1852,7 +1852,6 @@ public class StripePaymentService : IPaymentService
|
|||||||
Enabled = true,
|
Enabled = true,
|
||||||
},
|
},
|
||||||
Currency = "usd",
|
Currency = "usd",
|
||||||
Discounts = new List<InvoiceDiscountOptions>(),
|
|
||||||
SubscriptionDetails = new InvoiceSubscriptionDetailsOptions
|
SubscriptionDetails = new InvoiceSubscriptionDetailsOptions
|
||||||
{
|
{
|
||||||
Items =
|
Items =
|
||||||
@ -1903,29 +1902,23 @@ public class StripePaymentService : IPaymentService
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gatewayCustomerId != null)
|
if (!string.IsNullOrWhiteSpace(gatewayCustomerId))
|
||||||
{
|
{
|
||||||
var gatewayCustomer = await _stripeAdapter.CustomerGetAsync(gatewayCustomerId);
|
var gatewayCustomer = await _stripeAdapter.CustomerGetAsync(gatewayCustomerId);
|
||||||
|
|
||||||
if (gatewayCustomer.Discount != null)
|
if (gatewayCustomer.Discount != null)
|
||||||
{
|
{
|
||||||
options.Discounts.Add(new InvoiceDiscountOptions
|
options.Coupon = gatewayCustomer.Discount.Coupon.Id;
|
||||||
{
|
|
||||||
Discount = gatewayCustomer.Discount.Id
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (gatewaySubscriptionId != null)
|
if (!string.IsNullOrWhiteSpace(gatewaySubscriptionId))
|
||||||
|
{
|
||||||
|
var gatewaySubscription = await _stripeAdapter.SubscriptionGetAsync(gatewaySubscriptionId);
|
||||||
|
|
||||||
|
if (gatewaySubscription?.Discount != null)
|
||||||
{
|
{
|
||||||
var gatewaySubscription = await _stripeAdapter.SubscriptionGetAsync(gatewaySubscriptionId);
|
options.Coupon ??= gatewaySubscription.Discount.Coupon.Id;
|
||||||
|
|
||||||
if (gatewaySubscription?.Discount != null)
|
|
||||||
{
|
|
||||||
options.Discounts.Add(new InvoiceDiscountOptions
|
|
||||||
{
|
|
||||||
Discount = gatewaySubscription.Discount.Id
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1976,7 +1969,6 @@ public class StripePaymentService : IPaymentService
|
|||||||
Enabled = true,
|
Enabled = true,
|
||||||
},
|
},
|
||||||
Currency = "usd",
|
Currency = "usd",
|
||||||
Discounts = new List<InvoiceDiscountOptions>(),
|
|
||||||
SubscriptionDetails = new InvoiceSubscriptionDetailsOptions
|
SubscriptionDetails = new InvoiceSubscriptionDetailsOptions
|
||||||
{
|
{
|
||||||
Items =
|
Items =
|
||||||
@ -2069,7 +2061,7 @@ public class StripePaymentService : IPaymentService
|
|||||||
|
|
||||||
if (gatewayCustomer.Discount != null)
|
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)
|
if (gatewaySubscription?.Discount != null)
|
||||||
{
|
{
|
||||||
options.Discounts.Add(new InvoiceDiscountOptions
|
options.Coupon ??= gatewaySubscription.Discount.Coupon.Id;
|
||||||
{
|
|
||||||
Discount = gatewaySubscription.Discount.Id
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user