From 137ca8e6f36de71f5aa2a66f8e24c97e57aa7348 Mon Sep 17 00:00:00 2001 From: ilham Date: Thu, 5 May 2022 18:20:15 +0700 Subject: [PATCH] fix: check bill --- src/transaction/transaction.service.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/transaction/transaction.service.ts b/src/transaction/transaction.service.ts index 74226d2..5bd7db9 100644 --- a/src/transaction/transaction.service.ts +++ b/src/transaction/transaction.service.ts @@ -814,20 +814,20 @@ export class TransactionService { }) .join(''); - // let hitSupplier = await doTransaction( - // 'CEK' + orderTransactionDto.productCode.slice(3), - // orderTransactionDto.destination, - // trxId, - // supplier, - // ); - let hitSupplier = await doTransaction( - 'CEKXL1', + 'CEK' + orderTransactionDto.productCode.slice(3), orderTransactionDto.destination, trxId, supplier, ); + // let hitSupplier = await doTransaction( + // 'CEKXL1', + // orderTransactionDto.destination, + // trxId, + // supplier, + // ); + return hitSupplier; }