Add buying or selling to filters in get_exchange_rate
diff --git a/erpnext/setup/utils.py b/erpnext/setup/utils.py
index 04c9931..bc17f88 100644
--- a/erpnext/setup/utils.py
+++ b/erpnext/setup/utils.py
@@ -59,13 +59,11 @@
if not (from_currency and to_currency):
# manqala 19/09/2016: Should this be an empty return or should it throw and exception?
return
-
if from_currency == to_currency:
return 1
if not transaction_date:
transaction_date = nowdate()
-
currency_settings = frappe.get_doc("Accounts Settings").as_dict()
allow_stale_rates = currency_settings.get("allow_stale")
@@ -74,12 +72,12 @@
["from_currency", "=", from_currency],
["to_currency", "=", to_currency]
]
- frappe.errprint(args)
+
if args == "for_buying":
filters.append(["for_buying", "=", "1"])
elif args == "for_selling":
- filters.append(["for_selling", "=", 1])
- frappe.errprint(filters)
+ filters.append(["for_selling", "=", "1"])
+
if not allow_stale_rates:
stale_days = currency_settings.get("stale_days")
checkpoint_date = add_days(transaction_date, -stale_days)