removed dollar sign
This commit is contained in:
+1
-1
@@ -141,7 +141,7 @@ async def import_transactions_csv(
|
|||||||
cheque_number = row.get("Cheque Number", "").strip()
|
cheque_number = row.get("Cheque Number", "").strip()
|
||||||
description_1 = row.get("Description 1", "").strip()
|
description_1 = row.get("Description 1", "").strip()
|
||||||
description_2 = row.get("Description 2", "").strip()
|
description_2 = row.get("Description 2", "").strip()
|
||||||
amount_raw = row.get("Amount", "").strip()
|
amount_raw = row.get("Amount", "").strip()[1:]
|
||||||
vendor_id = row.get("VendorId", "").strip()
|
vendor_id = row.get("VendorId", "").strip()
|
||||||
vendor_name = row.get("VendorName", "").strip()
|
vendor_name = row.get("VendorName", "").strip()
|
||||||
account_id = row.get("AccountId", "").strip()
|
account_id = row.get("AccountId", "").strip()
|
||||||
|
|||||||
Reference in New Issue
Block a user