From 071dd2f0ef84b216675e1628307669bbd8c2addd Mon Sep 17 00:00:00 2001 From: Fadli Date: Tue, 22 Nov 2022 13:11:11 +0700 Subject: [PATCH] - add id array for transaction --- src/transaction/transaction.service.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/transaction/transaction.service.ts b/src/transaction/transaction.service.ts index 73c0e5d..e27fc18 100644 --- a/src/transaction/transaction.service.ts +++ b/src/transaction/transaction.service.ts @@ -341,7 +341,7 @@ export class TransactionService { // ); // } else { - const trxId = Array(10) + const trxId = Array(11) .fill(null) .map(() => { return Math.round(Math.random() * 16).toString(16); @@ -601,7 +601,7 @@ export class TransactionService { } //HIT API SUPPLIER - const trxId = Array(10) + const trxId = Array(11) .fill(null) .map(() => { return Math.round(Math.random() * 16).toString(16); @@ -848,7 +848,7 @@ export class TransactionService { } //HIT API SUPPLIER - const trxId = Array(10) + const trxId = Array(11) .fill(null) .map(() => { return Math.round(Math.random() * 16).toString(16); @@ -1000,7 +1000,7 @@ export class TransactionService { userData.partner?.id, ); //HIT API SUPPLIER - const trxId = Array(10) + const trxId = Array(11) .fill(null) .map(() => { return Math.round(Math.random() * 16).toString(16);