mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
90 lines
2.2 KiB
TypeScript
90 lines
2.2 KiB
TypeScript
import { Inject, Service } from 'typedi';
|
|
import events from '@/subscribers/events';
|
|
import { PaymentReceiveInvoiceSync } from '@/services/Sales/PaymentReceives/PaymentReceiveInvoiceSync';
|
|
import {
|
|
IPaymentReceiveCreatedPayload,
|
|
IPaymentReceiveDeletedPayload,
|
|
IPaymentReceiveEditedPayload,
|
|
} from '@/interfaces';
|
|
|
|
@Service()
|
|
export default class PaymentReceiveSyncInvoicesSubscriber {
|
|
@Inject()
|
|
private paymentSyncInvoice: PaymentReceiveInvoiceSync;
|
|
|
|
/**
|
|
* Attaches the events to handles.
|
|
* @param bus
|
|
*/
|
|
public attach(bus) {
|
|
bus.subscribe(
|
|
events.paymentReceive.onCreated,
|
|
this.handleInvoiceIncrementPaymentOnceCreated
|
|
);
|
|
bus.subscribe(
|
|
events.paymentReceive.onEdited,
|
|
this.handleInvoiceIncrementPaymentOnceEdited
|
|
);
|
|
bus.subscribe(
|
|
events.paymentReceive.onDeleted,
|
|
this.handleInvoiceDecrementPaymentAmount
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Handle sale invoice increment/decrement payment amount
|
|
* once created, edited or deleted.
|
|
*/
|
|
private handleInvoiceIncrementPaymentOnceCreated = async ({
|
|
tenantId,
|
|
paymentReceiveId,
|
|
paymentReceive,
|
|
trx,
|
|
}: IPaymentReceiveCreatedPayload) => {
|
|
await this.paymentSyncInvoice.saveChangeInvoicePaymentAmount(
|
|
tenantId,
|
|
paymentReceive.entries,
|
|
null,
|
|
trx
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Handle sale invoice increment/decrement payment amount once edited.
|
|
*/
|
|
private handleInvoiceIncrementPaymentOnceEdited = async ({
|
|
tenantId,
|
|
paymentReceiveId,
|
|
paymentReceive,
|
|
oldPaymentReceive,
|
|
trx,
|
|
}: IPaymentReceiveEditedPayload) => {
|
|
await this.paymentSyncInvoice.saveChangeInvoicePaymentAmount(
|
|
tenantId,
|
|
paymentReceive.entries,
|
|
oldPaymentReceive?.entries || null,
|
|
trx
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Handle revert invoices payment amount once payment receive deleted.
|
|
*/
|
|
private handleInvoiceDecrementPaymentAmount = async ({
|
|
tenantId,
|
|
paymentReceiveId,
|
|
oldPaymentReceive,
|
|
trx,
|
|
}: IPaymentReceiveDeletedPayload) => {
|
|
await this.paymentSyncInvoice.saveChangeInvoicePaymentAmount(
|
|
tenantId,
|
|
oldPaymentReceive.entries.map((entry) => ({
|
|
...entry,
|
|
paymentAmount: 0,
|
|
})),
|
|
oldPaymentReceive.entries,
|
|
trx
|
|
);
|
|
};
|
|
}
|