commit | cd538e138a755f6df013390afb3d8268dcf97157 | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Wed Jun 14 20:28:28 2023 +0530 |
committer | ruthra kumar <ruthra@erpnext.com> | Wed Jun 14 20:28:28 2023 +0530 |
tree | 0317236a25d6c17db526844564530dd06f7a6ed4 | |
parent | 4820221a4174c0ee69e6a6b32ecf5326e93b02b9 [diff] |
fix: reference error while using exchange rate revaluation
diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js index 733a761..f51b90d 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.js
@@ -36,7 +36,7 @@ }, validate_rounding_loss: function(frm) { - allowance = frm.doc.rounding_loss_allowance; + let allowance = frm.doc.rounding_loss_allowance; if (!(allowance > 0 && allowance < 1)) { frappe.throw(__("Rounding Loss Allowance should be between 0 and 1")); }