mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-13 01:34:10 +00:00
fix: convert NaN to numerical
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