feat: bulk transcations delete

This commit is contained in:
Ahmed Bouhuolia
2025-11-03 21:40:24 +02:00
parent 8161439365
commit a0bc9db9a6
107 changed files with 2213 additions and 156 deletions

View File

@@ -0,0 +1,30 @@
import { Injectable } from '@nestjs/common';
import { Knex } from 'knex';
import { PromisePool } from '@supercharge/promise-pool';
import { castArray, uniq } from 'lodash';
import { DeleteVendorCreditService } from './commands/DeleteVendorCredit.service';
@Injectable()
export class BulkDeleteVendorCreditsService {
constructor(
private readonly deleteVendorCreditService: DeleteVendorCreditService,
) {}
async bulkDeleteVendorCredits(
vendorCreditIds: number | Array<number>,
trx?: Knex.Transaction,
): Promise<void> {
const creditsIds = uniq(castArray(vendorCreditIds));
const results = await PromisePool.withConcurrency(1)
.for(creditsIds)
.process(async (vendorCreditId: number) => {
await this.deleteVendorCreditService.deleteVendorCredit(vendorCreditId);
});
if (results.errors && results.errors.length > 0) {
throw results.errors[0].raw;
}
}
}