From bdb639905af174d288f0afc47ac91c87238cd16e Mon Sep 17 00:00:00 2001 From: Odysseus Chiu Date: Wed, 7 Aug 2024 14:51:12 -0700 Subject: [PATCH] 21522 - EFT Short name amount fix (#2951) --- auth-web/src/components/pay/eft/ShortNamePaymentHistory.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth-web/src/components/pay/eft/ShortNamePaymentHistory.vue b/auth-web/src/components/pay/eft/ShortNamePaymentHistory.vue index 63a24ac01..d68f2f445 100644 --- a/auth-web/src/components/pay/eft/ShortNamePaymentHistory.vue +++ b/auth-web/src/components/pay/eft/ShortNamePaymentHistory.vue @@ -265,7 +265,7 @@ export default defineComponent({ function formatTransactionAmount (item: any) { if (item.amount === undefined) return '' let amount = CommonUtils.formatAmount(item.amount) - if (item.transactionType === ShortNameHistoryType.STATEMENT_REVERSE) { + if (item.transactionType === ShortNameHistoryType.STATEMENT_PAID) { amount = `-${amount}` } return amount