Fixed NameError handling

This commit is contained in:
Anand Doshi 2014-04-23 13:41:28 +05:30
parent b054eb7a4f
commit f50a65294f
4 changed files with 671 additions and 671 deletions

File diff suppressed because it is too large Load Diff

View File

@ -66,7 +66,7 @@ class Customer(TransactionBase):
c.is_primary_contact = 1 c.is_primary_contact = 1
try: try:
c.save() c.save()
except NameError: except frappe.NameError:
pass pass
def on_update(self): def on_update(self):

View File

@ -151,7 +151,7 @@ def _make_customer(source_name, ignore_permissions=False):
try: try:
customer.insert() customer.insert()
return customer return customer
except NameError: except frappe.NameError:
if frappe.defaults.get_global_default('cust_master_name') == "Customer Name": if frappe.defaults.get_global_default('cust_master_name') == "Customer Name":
customer.run_method("autoname") customer.run_method("autoname")
customer.name += "-" + lead_name customer.name += "-" + lead_name

View File

@ -15,7 +15,7 @@ def install(company):
for d in docs: for d in docs:
try: try:
frappe.get_doc(d).insert() frappe.get_doc(d).insert()
except NameError: except frappe.NameError:
pass pass