commit | 92015a1268ca29dca10c685d2b817c962c44a9a4 | [log] [tgz] |
---|---|---|
author | Rushabh Mehta <rmehta@gmail.com> | Mon May 11 18:08:37 2015 +0530 |
committer | Rushabh Mehta <rmehta@gmail.com> | Tue May 12 11:32:25 2015 +0530 |
tree | e54fb654966431e902a7b495cdbf317a14bb5b16 | |
parent | 4f1a7e5aa8c12fc74e8090dd87e6e0c4213edefe [diff] |
[fix] [minor] escape in report
diff --git a/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py b/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py index dc33051..2b2c550 100644 --- a/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py +++ b/erpnext/selling/report/customers_not_buying_since_long_time/customers_not_buying_since_long_time.py
@@ -44,7 +44,7 @@ def get_last_so_amt(customer): res = frappe.db.sql("""select base_net_total from `tabSales Order` where customer ='%(customer)s' and docstatus = 1 order by transaction_date desc - limit 1""" % {'customer':customer}) + limit 1""" % {'customer': frappe.db.escape(customer)}) return res and res[0][0] or 0