removed dollar sign

This commit is contained in:
bolade
2025-10-23 23:13:10 +01:00
parent 2f917ec085
commit fa25f7bafd
+1 -1
View File
@@ -141,7 +141,7 @@ async def import_transactions_csv(
cheque_number = row.get("Cheque Number", "").strip()
description_1 = row.get("Description 1", "").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_name = row.get("VendorName", "").strip()
account_id = row.get("AccountId", "").strip()