modified model

This commit is contained in:
2026-03-16 17:05:38 +05:30
parent 93b4d88379
commit 356534c6b6
2 changed files with 2 additions and 2 deletions

View File

@@ -134,7 +134,7 @@ class Repository:
:STATUS, :STATUS,
:REJECT_CODE, :REJECT_CODE,
:BENF_ADDRS, :BENF_ADDRS,
:MSG_TYP :MSG_TYP,
:CREDITOR_AMT :CREDITOR_AMT
) )
""" """

View File

@@ -94,7 +94,7 @@ class RTGSDataMapper:
amount_in = parsed_txn.get('amount', '0') amount_in = parsed_txn.get('amount', '0')
txn_amt = cls.convert_amount(amount_in) txn_amt = cls.convert_amount(amount_in)
txnind = "CR" txnind = "CR"
creditor_amt = parsed_txn.get('amount', '0') creditor_amt = parsed_txn.get('creditor_amt', '0')
# Date handling # Date handling
txn_date_raw = parsed_txn.get('tran_date', '') or '' txn_date_raw = parsed_txn.get('tran_date', '') or ''