mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 13:38:13 -05:00

* Pm 19147 2 (#5544) * Pm 19147 2 (#5544) * Unit tests for tax strategies `GetUpdateOptions` * Only allow automatic tax flag to be updated for complete subscription updates such as plan changes, not when upgrading additional storage, seats, etc * unit tests for factory * Fix build * Automatic tax for tax estimation * Fix stub * Fix stub * "customer.tax_ids" isn't expanded in some flows. * Fix SubscriberServiceTests.cs * BusinessUseAutomaticTaxStrategy > SetUpdateOptions tests * Fix ProviderBillingServiceTests.cs
31 lines
876 B
C#
31 lines
876 B
C#
using Bit.Core.Billing.Constants;
|
|
using Stripe;
|
|
|
|
namespace Bit.Core.Billing.Extensions;
|
|
|
|
public static class CustomerExtensions
|
|
{
|
|
public static bool HasBillingLocation(this Customer customer)
|
|
=> customer is
|
|
{
|
|
Address:
|
|
{
|
|
Country: not null and not "",
|
|
PostalCode: not null and not ""
|
|
}
|
|
};
|
|
|
|
/// <summary>
|
|
/// Determines if a Stripe customer supports automatic tax
|
|
/// </summary>
|
|
/// <param name="customer"></param>
|
|
/// <returns></returns>
|
|
public static bool HasTaxLocationVerified(this Customer customer) =>
|
|
customer?.Tax?.AutomaticTax != StripeConstants.AutomaticTaxStatus.UnrecognizedLocation;
|
|
|
|
public static decimal GetBillingBalance(this Customer customer)
|
|
{
|
|
return customer != null ? customer.Balance / 100M : default;
|
|
}
|
|
}
|