From fa25f7bafd523c2edc057812ddb3d5956b731561 Mon Sep 17 00:00:00 2001 From: bolade Date: Thu, 23 Oct 2025 23:13:10 +0100 Subject: [PATCH] removed dollar sign --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index c756410..9e60e9a 100644 --- a/app/main.py +++ b/app/main.py @@ -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()