[fix] Dont set currency and exchange rate while Quotation made from Opportunity for lead
diff --git a/erpnext/crm/doctype/opportunity/opportunity.py b/erpnext/crm/doctype/opportunity/opportunity.py
index ad8eea6..0f9bdbd 100644
--- a/erpnext/crm/doctype/opportunity/opportunity.py
+++ b/erpnext/crm/doctype/opportunity/opportunity.py
@@ -191,17 +191,18 @@
def make_quotation(source_name, target_doc=None):
def set_missing_values(source, target):
quotation = frappe.get_doc(target)
+
+ if quotation.customer:
+ company_currency = frappe.db.get_value("Company", quotation.company, "default_currency")
+ party_account_currency = get_party_account_currency("Customer", quotation.customer, quotation.company)
- company_currency = frappe.db.get_value("Company", quotation.company, "default_currency")
- party_account_currency = get_party_account_currency("Customer", quotation.customer, quotation.company)
+ if company_currency == party_account_currency:
+ exchange_rate = 1
+ else:
+ exchange_rate = get_exchange_rate(party_account_currency, company_currency)
- if company_currency == party_account_currency:
- exchange_rate = 1
- else:
- exchange_rate = get_exchange_rate(party_account_currency, company_currency)
-
- quotation.currency = party_account_currency or company_currency
- quotation.conversion_rate = exchange_rate
+ quotation.currency = party_account_currency or company_currency
+ quotation.conversion_rate = exchange_rate
quotation.run_method("set_missing_values")
quotation.run_method("calculate_taxes_and_totals")
diff --git a/erpnext/setup/utils.py b/erpnext/setup/utils.py
index 8c0d1cb..eda2042 100644
--- a/erpnext/setup/utils.py
+++ b/erpnext/setup/utils.py
@@ -65,6 +65,9 @@
@frappe.whitelist()
def get_exchange_rate(from_currency, to_currency):
+ if not (from_currency and to_currency):
+ return
+
if from_currency == to_currency:
return 1