commit | 176966daabea4fe59a85858583f47ff5bd6ef38f | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Tue Jul 11 10:04:17 2023 +0530 |
committer | ruthra kumar <ruthra@erpnext.com> | Tue Jul 11 10:04:17 2023 +0530 |
tree | 84d8e6b3734b62b0da2fad96c8b666a77a2dea7b | |
parent | ab58c01a0f51531759e5d62119ccae01a4aba8ae [diff] |
fix: possible type error on ERR creation
diff --git a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py index 598db64..89f827a 100644 --- a/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py +++ b/erpnext/accounts/doctype/exchange_rate_revaluation/exchange_rate_revaluation.py
@@ -252,8 +252,8 @@ new_balance_in_base_currency = 0 new_balance_in_account_currency = 0 - current_exchange_rate = calculate_exchange_rate_using_last_gle( - company, d.account, d.party_type, d.party + current_exchange_rate = ( + calculate_exchange_rate_using_last_gle(company, d.account, d.party_type, d.party) or 0.0 ) gain_loss = new_balance_in_account_currency - (