mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
67 lines
2.3 KiB
TypeScript
67 lines
2.3 KiB
TypeScript
import { Knex } from 'knex';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { UncategorizedBankTransaction } from '@/modules/BankingTransactions/models/UncategorizedBankTransaction';
|
|
import {
|
|
validateTransactionNotCategorized,
|
|
validateTransactionNotExcluded,
|
|
} from './utils';
|
|
import {
|
|
IBankTransactionUnexcludedEventPayload,
|
|
IBankTransactionUnexcludingEventPayload,
|
|
} from '../types/BankTransactionsExclude.types';
|
|
import { UnitOfWork } from '@/modules/Tenancy/TenancyDB/UnitOfWork.service';
|
|
import { EventEmitter2 } from '@nestjs/event-emitter';
|
|
import { events } from '@/common/events/events';
|
|
import { TenantModelProxy } from '@/modules/System/models/TenantBaseModel';
|
|
|
|
@Injectable()
|
|
export class ExcludeBankTransactionService {
|
|
constructor(
|
|
@Inject(UncategorizedBankTransaction.name)
|
|
private uncategorizedBankTransactionModel: TenantModelProxy<
|
|
typeof UncategorizedBankTransaction
|
|
>,
|
|
|
|
private uow: UnitOfWork,
|
|
private eventEmitter: EventEmitter2,
|
|
) {}
|
|
|
|
/**
|
|
* Marks the given bank transaction as excluded.
|
|
* @param {number} uncategorizedTransactionId - Uncategorized bank transaction identifier.
|
|
* @returns {Promise<void>}
|
|
*/
|
|
public async excludeBankTransaction(uncategorizedTransactionId: number) {
|
|
const oldUncategorizedTransaction =
|
|
await this.uncategorizedBankTransactionModel()
|
|
.query()
|
|
.findById(uncategorizedTransactionId)
|
|
.throwIfNotFound();
|
|
|
|
// Validate the transaction shouldn't be excluded.
|
|
validateTransactionNotExcluded(oldUncategorizedTransaction);
|
|
|
|
// Validate the transaction shouldn't be categorized.
|
|
validateTransactionNotCategorized(oldUncategorizedTransaction);
|
|
|
|
return this.uow.withTransaction(async (trx: Knex.Transaction) => {
|
|
await this.eventEmitter.emitAsync(events.bankTransactions.onExcluding, {
|
|
uncategorizedTransactionId,
|
|
trx,
|
|
} as IBankTransactionUnexcludingEventPayload);
|
|
|
|
await this.uncategorizedBankTransactionModel()
|
|
.query(trx)
|
|
.findById(uncategorizedTransactionId)
|
|
.patch({
|
|
excludedAt: new Date(),
|
|
});
|
|
|
|
await this.eventEmitter.emitAsync(events.bankTransactions.onExcluded, {
|
|
uncategorizedTransactionId,
|
|
trx,
|
|
} as IBankTransactionUnexcludedEventPayload);
|
|
});
|
|
}
|
|
}
|