- log digiflazz supplier

This commit is contained in:
Fadli 2023-02-23 00:51:19 +07:00
parent 21afb05910
commit 7e83212df7

View File

@ -43,7 +43,7 @@ export const doTransaction = async (
customer_no: `${destination}`, customer_no: `${destination}`,
buyer_sku_code: `${productCode}`, buyer_sku_code: `${productCode}`,
ref_id: `${idtrx}`, ref_id: `${idtrx}`,
sign: md5Hash.default(md5HashDigiflazz), sign: md5Hash.default(`${supplier.irs_user}${supplier.irs_pass}${idtrx}`),
testing: true, testing: true,
}; };
const res = await axios.post( const res = await axios.post(
@ -66,7 +66,7 @@ export const doTransaction = async (
customer_no: `${destination}`, customer_no: `${destination}`,
buyer_sku_code: `${productCode}`, buyer_sku_code: `${productCode}`,
ref_id: `${billTrxId}`, ref_id: `${billTrxId}`,
sign: md5Hash.default(md5HashDigiflazz), sign: md5Hash.default(`${supplier.irs_user}${supplier.irs_pass}${idtrx}`),
testing: true, testing: true,
}; };
const res = await axios.post( const res = await axios.post(
@ -89,7 +89,7 @@ export const doTransaction = async (
customer_no: `${destination}`, customer_no: `${destination}`,
buyer_sku_code: `${productCode}`, buyer_sku_code: `${productCode}`,
ref_id: `${idtrx}`, ref_id: `${idtrx}`,
sign: md5Hash.default(md5HashDigiflazz), sign: md5Hash.default(`${supplier.irs_user}${supplier.irs_pass}${idtrx}`),
testing: true, testing: true,
}; };
const res = await axios.post( const res = await axios.post(