From 217df1761db35493bfc99810560da24d673156fe Mon Sep 17 00:00:00 2001 From: deepeshgarg007 Date: Wed, 29 May 2019 08:10:07 +0530 Subject: [PATCH] fix: Styling fixes --- erpnext/crm/report/campaign_efficiency/campaign_efficiency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py b/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py index 4451579327a..ec498837f5e 100644 --- a/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py +++ b/erpnext/crm/report/campaign_efficiency/campaign_efficiency.py @@ -115,7 +115,7 @@ def get_filter_conditions(filters): def get_lead_quotation_count(leads): return frappe.db.sql("""select count(name) from `tabQuotation` - where quotation_to = 'Lead' and party_name in (%s)""" % ', '.join(["%s"]*len(leads)), tuple(leads))[0][0] + where quotation_to = 'Lead' and party_name in (%s)""" % ', '.join(["%s"]*len(leads)), tuple(leads))[0][0] #nosec def get_lead_opp_count(leads): return frappe.db.sql("""select count(name) from `tabOpportunity`