Merge branch 'development' into 'devops-staging'
fix: confirm deposit return See merge request empatnusabangsa/ppob/ppob-backend!54
This commit is contained in:
commit
f74c75050b
|
@ -446,23 +446,23 @@ export class TransactionService {
|
||||||
const transactionData = await this.findApprovalDepositReturn(id);
|
const transactionData = await this.findApprovalDepositReturn(id);
|
||||||
|
|
||||||
const coaSenderWallet = await this.coaService.findByUser(
|
const coaSenderWallet = await this.coaService.findByUser(
|
||||||
transactionData.user_destination,
|
transactionData.user,
|
||||||
coaType.WALLET,
|
coaType.WALLET,
|
||||||
);
|
);
|
||||||
|
|
||||||
const coaAP = await this.coaService.findByUserWithRelated(
|
const coaAP = await this.coaService.findByUserWithRelated(
|
||||||
transactionData.user_destination,
|
transactionData.user,
|
||||||
userData.userId,
|
userData.userId,
|
||||||
coaType.ACCOUNT_PAYABLE,
|
coaType.ACCOUNT_PAYABLE,
|
||||||
);
|
);
|
||||||
|
|
||||||
const coaReceiverWallet = await this.coaService.findByUser(
|
const coaReceiverWallet = await this.coaService.findByUser(
|
||||||
transactionData.user_destination,
|
transactionData.user,
|
||||||
coaType.WALLET,
|
coaType.WALLET,
|
||||||
);
|
);
|
||||||
|
|
||||||
const coaAR = await this.coaService.findByUserWithRelated(
|
const coaAR = await this.coaService.findByUserWithRelated(
|
||||||
transactionData.user_destination,
|
transactionData.user,
|
||||||
userData.userId,
|
userData.userId,
|
||||||
coaType.ACCOUNT_RECEIVABLE,
|
coaType.ACCOUNT_RECEIVABLE,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user