mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { Inject, Service } from 'typedi';
|
|
import { IPaymentReceiveDeletedPayload } from '@/interfaces';
|
|
import { ValidateTransactionMatched } from '../ValidateTransactionsMatched';
|
|
import events from '@/subscribers/events';
|
|
|
|
@Service()
|
|
export class ValidateMatchingOnPaymentReceivedDelete {
|
|
@Inject()
|
|
private validateNoMatchingLinkedService: ValidateTransactionMatched;
|
|
|
|
/**
|
|
* Constructor method.
|
|
*/
|
|
public attach(bus) {
|
|
bus.subscribe(
|
|
events.paymentReceive.onDeleting,
|
|
this.validateMatchingOnPaymentReceivedDeleting.bind(this)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Validates the payment received transaction whether matched with bank transaction on deleting.
|
|
* @param {IPaymentReceiveDeletedPayload}
|
|
*/
|
|
public async validateMatchingOnPaymentReceivedDeleting({
|
|
tenantId,
|
|
oldPaymentReceive,
|
|
trx,
|
|
}: IPaymentReceiveDeletedPayload) {
|
|
await this.validateNoMatchingLinkedService.validateTransactionNoMatchLinking(
|
|
tenantId,
|
|
'PaymentReceive',
|
|
oldPaymentReceive.id,
|
|
trx
|
|
);
|
|
}
|
|
}
|