From b62068f784014ffb9717a332b2d0516106ca0d14 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Mon, 25 May 2015 14:46:12 +0530 Subject: [PATCH] removed debug --- .../sales_person_wise_transaction_summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py index 47611176ca..e102f0d768 100644 --- a/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py +++ b/erpnext/selling/report/sales_person_wise_transaction_summary/sales_person_wise_transaction_summary.py @@ -42,7 +42,7 @@ def get_entries(filters): where st.parent = dt.name and dt.name = dt_item.parent and st.parenttype = %s and dt.docstatus = 1 %s order by st.sales_person, dt.name desc""" % (date_field, filters["doc_type"], filters["doc_type"], '%s', conditions), - tuple([filters["doc_type"]] + values), as_dict=1, debug=1) + tuple([filters["doc_type"]] + values), as_dict=1) return entries