Browse Source

[fix] Customer de-duplication sql

develop
Anand Doshi 9 years ago
parent
commit
ddad05dab3
  1. 2
      erpnext/selling/doctype/customer/customer.py

2
erpnext/selling/doctype/customer/customer.py

@ -33,7 +33,7 @@ class Customer(TransactionBase):
def get_customer_name(self):
if frappe.db.get_value("Customer", self.customer_name):
count = frappe.db.sql("""select ifnull(max(SUBSTRING_INDEX(name, ' ', -1)), 0) from tabCustomer
where name like '%{0} - %'""".format(self.customer_name), as_list=1)[0][0]
where name like %s""", "%{0} - %".format(self.customer_name), as_list=1)[0][0]
count = cint(count) + 1
return "{0} - {1}".format(self.customer_name, cstr(count))

Loading…
Cancel
Save