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

Give provider credit for unused client organization time (#5421)

This commit is contained in:
Alex Morask 2025-02-19 10:13:03 -05:00 committed by GitHub
parent 43be2dbc83
commit 4f73081e41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -117,6 +117,19 @@ public class ProviderBillingService(
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(
providerOrganization,
EventType.ProviderOrganization_Added);