commit | 0f5d97a1565d73f4f94d1fb986e20f4afb682956 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Fri Dec 04 16:47:34 2015 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Fri Dec 04 16:47:34 2015 +0530 |
tree | 78c54663c2d53e30819608feb8d5ef0c51deea25 | |
parent | e1f8b1d69519db5827b311d0bff2c4dd3bc9e7cb [diff] |
[fix] Get exchange rate as 1 if same currency
diff --git a/erpnext/setup/utils.py b/erpnext/setup/utils.py index e44a53f..c3bd452 100644 --- a/erpnext/setup/utils.py +++ b/erpnext/setup/utils.py
@@ -63,6 +63,9 @@ @frappe.whitelist() def get_exchange_rate(from_currency, to_currency): + if from_currency == to_currency: + return 1 + exchange = "%s-%s" % (from_currency, to_currency) value = flt(frappe.db.get_value("Currency Exchange", exchange, "exchange_rate"))