fix(escaping): accounts_receivable.py

This commit is contained in:
Rushabh Mehta 2018-12-24 16:03:24 +05:30
parent 25fc5b879b
commit 5d11abb0a2

View File

@ -543,7 +543,7 @@ class ReceivablePayableReport(object):
ps.due_date, ps.payment_amount, ps.description
from `tabSales Invoice` si, `tabPayment Schedule` ps
where si.name = ps.parent and
si.docstatus = 1 and si.company = '%s' and
si.docstatus = 1 and si.company = %s and
si.name in (%s) order by ps.due_date
""" % (frappe.db.escape(self.filters.company), ','.join(['%s'] *len(voucher_nos))),
(tuple(voucher_nos)), as_dict = 1)