Skip to content

Commit

Permalink
21522 - EFT Short name amount fix (#2951)
Browse files Browse the repository at this point in the history
  • Loading branch information
ochiu authored Aug 7, 2024
1 parent 6856750 commit bdb6399
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bdb6399

Please sign in to comment.