mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-14 12:25:09 +00:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user