Update customer_credit_balance.py
diff --git a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py
index 6b8b858..cd50568 100644
--- a/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py
+++ b/erpnext/selling/report/customer_credit_balance/customer_credit_balance.py
@@ -60,7 +60,7 @@
conditions = ""
if filters.get("customer"):
- conditions += " AND name = " + filters.get("customer")
+ conditions += " AND c.name = " + filters.get("customer")
return frappe.db.sql("""SELECT
c.name, c.customer_name,
@@ -71,4 +71,4 @@
c.name = ccl.parent
AND ccl.company = %s
{0}
- """.format(conditions), (filters.get("company")), as_dict=1) #nosec
\ No newline at end of file
+ """.format(conditions), (filters.get("company")), as_dict=1) #nosec