1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 01:52:49 -05:00

Don't try to credit customer \$0 (#4964)

This commit is contained in:
Alex Morask
2024-11-01 12:55:07 -04:00
committed by GitHub
parent edd31bcf4e
commit f149f247d5

View File

@ -325,6 +325,8 @@ public class ProviderMigrator(
var organizationCancellationCredit = organizationCustomers.Sum(customer => customer.Balance);
if (organizationCancellationCredit != 0)
{
await stripeAdapter.CustomerBalanceTransactionCreate(provider.GatewayCustomerId,
new CustomerBalanceTransactionCreateOptions
{
@ -332,6 +334,7 @@ public class ProviderMigrator(
Currency = "USD",
Description = "Unused, prorated time for client organization subscriptions."
});
}
var migrationRecords = await Task.WhenAll(organizations.Select(organization =>
clientOrganizationMigrationRecordRepository.GetByOrganizationId(organization.Id)));