diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/citco_ops/bowdst.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/python/citco_ops/bowdst.py b/python/citco_ops/bowdst.py index 7d93060b..841e8cee 100644 --- a/python/citco_ops/bowdst.py +++ b/python/citco_ops/bowdst.py @@ -37,7 +37,10 @@ class BowdstWire(WireBase, fund="BOWDST"): value_date=line["Cash Value Date"], pay_date=line["Settle / Pay Date"], currency=line["Reporting Currency Code"], - amount=line["Local Amount"].replace(",", ""), + amount=line["Local Amount"] + .replace(",", "") + .replace(")", "") + .replace("(", "-"), wire_details=line["Transaction Description 1"] if line["Transaction Type Code"] == "CW" else line["Transaction Description 2"], |
