Merge pull request #49349 from frappe/mergify/bp/version-15-hotfix/pr-49244

fix: convert NaN to numerical (backport #49244)
This commit is contained in:
Mihir Kandoi
2025-08-27 22:46:27 +05:30
committed by GitHub

View File

@@ -26,7 +26,7 @@ erpnext.accounts.bank_reconciliation.NumberCardManager = class NumberCardManager
currency: this.currency,
},
{
value: this.bank_statement_closing_balance - this.cleared_balance,
value: flt(this.bank_statement_closing_balance) - flt(this.cleared_balance),
label: __("Difference"),
datatype: "Currency",
currency: this.currency,