fix: confirm deposit return

This commit is contained in:
ilham 2021-12-23 00:35:43 +07:00
parent 518c330ff9
commit 43b998c836

View File

@ -446,23 +446,23 @@ export class TransactionService {
const transactionData = await this.findApprovalDepositReturn(id);
const coaSenderWallet = await this.coaService.findByUser(
transactionData.user_destination,
transactionData.user,
coaType.WALLET,
);
const coaAP = await this.coaService.findByUserWithRelated(
transactionData.user_destination,
transactionData.user,
userData.userId,
coaType.ACCOUNT_PAYABLE,
);
const coaReceiverWallet = await this.coaService.findByUser(
transactionData.user_destination,
transactionData.user,
coaType.WALLET,
);
const coaAR = await this.coaService.findByUserWithRelated(
transactionData.user_destination,
transactionData.user,
userData.userId,
coaType.ACCOUNT_RECEIVABLE,
);