From bbc3d015a3894c8811053ebe82cdaf97617bd005 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 18 Sep 2014 14:09:20 +0530 Subject: [PATCH] Update authorization_control.py --- .../doctype/authorization_control/authorization_control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/setup/doctype/authorization_control/authorization_control.py b/erpnext/setup/doctype/authorization_control/authorization_control.py index fa708b5991..be97964861 100644 --- a/erpnext/setup/doctype/authorization_control/authorization_control.py +++ b/erpnext/setup/doctype/authorization_control/authorization_control.py @@ -40,7 +40,7 @@ class AuthorizationControl(TransactionBase): chk = 1 add_cond1,add_cond2 = '','' if based_on == 'Itemwise Discount': - add_cond1 += " and master_name = '"+cstr(item.replace("'", "\'"))+"'" + add_cond1 += " and master_name = '"+cstr(item).replace("'", "\'")+"'" itemwise_exists = frappe.db.sql("""select value from `tabAuthorization Rule` where transaction = %s and value <= %s and based_on = %s and company = %s and docstatus != 2 %s %s""" %