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
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:
parent
8488a6448f
commit
310f9c4129
@ -177,7 +177,7 @@ def parse_sheet(ws, year):
|
|||||||
if val and str(val).strip():
|
if val and str(val).strip():
|
||||||
try:
|
try:
|
||||||
monthly_payments[m + 1] = Decimal(str(val))
|
monthly_payments[m + 1] = Decimal(str(val))
|
||||||
except (ValueError, TypeError):
|
except Exception:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
monthly_rate = None
|
monthly_rate = None
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user