We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af87f77 commit c01bbdeCopy full SHA for c01bbde
casparser/process/cas_detailed.py
@@ -98,7 +98,9 @@ def get_transaction_type(
98
else:
99
txn_type = TransactionType.PURCHASE
100
elif units < 0:
101
- if re.search("reversal|rejection|dishonoured|mismatch", description, re.I):
+ if re.search(
102
+ "reversal|rejection|dishonoured|mismatch|insufficient\s+balance", description, re.I
103
+ ):
104
txn_type = TransactionType.REVERSAL
105
elif "switch" in description:
106
if "merger" in description:
0 commit comments