From 2e6eba90c519302456fcf13c0b37cd1028cd3799 Mon Sep 17 00:00:00 2001 From: sinopsysHK Date: Sat, 13 Jun 2020 03:37:58 +0000 Subject: [PATCH] [hsbchk] fix erroneous tr type For consistency purpose, card account related transactions are to be set as DEFERRED_CARD --- modules/hsbchk/pages/account_pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hsbchk/pages/account_pages.py b/modules/hsbchk/pages/account_pages.py index 575849beea..4ea5e0c8ca 100644 --- a/modules/hsbchk/pages/account_pages.py +++ b/modules/hsbchk/pages/account_pages.py @@ -169,7 +169,7 @@ def obj_type(self): return type if Dict('txnHistType', default=None)(self) in ['U', 'B']: - return Transaction.TYPE_CARD + return Transaction.TYPE_DEFERRED_CARD return Transaction.TYPE_TRANSFER -- GitLab