mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Give provider credit for unused client organization time (#5421)
This commit is contained in:
parent
43be2dbc83
commit
4f73081e41
@ -117,6 +117,19 @@ public class ProviderBillingService(
|
|||||||
ScaleSeats(provider, organization.PlanType, organization.Seats!.Value)
|
ScaleSeats(provider, organization.PlanType, organization.Seats!.Value)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
var clientCustomer = await subscriberService.GetCustomer(organization);
|
||||||
|
|
||||||
|
if (clientCustomer.Balance != 0)
|
||||||
|
{
|
||||||
|
await stripeAdapter.CustomerBalanceTransactionCreate(provider.GatewayCustomerId,
|
||||||
|
new CustomerBalanceTransactionCreateOptions
|
||||||
|
{
|
||||||
|
Amount = clientCustomer.Balance,
|
||||||
|
Currency = "USD",
|
||||||
|
Description = $"Unused, prorated time for client organization with ID {organization.Id}."
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
await eventService.LogProviderOrganizationEventAsync(
|
await eventService.LogProviderOrganizationEventAsync(
|
||||||
providerOrganization,
|
providerOrganization,
|
||||||
EventType.ProviderOrganization_Added);
|
EventType.ProviderOrganization_Added);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user