fix(import): handle non-numeric values in fee Excel cells
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-03-20 15:03:57 +01:00
parent 8488a6448f
commit 310f9c4129

View File

@ -177,7 +177,7 @@ def parse_sheet(ws, year):
if val and str(val).strip():
try:
monthly_payments[m + 1] = Decimal(str(val))
except (ValueError, TypeError):
except Exception:
pass
monthly_rate = None