[minor] naming series not set message
This commit is contained in:
parent
26c8a96b0a
commit
0718292bfa
@ -173,4 +173,6 @@ def set_by_naming_series(doctype, fieldname, naming_series, hide_name_field=True
|
|||||||
def get_default_naming_series(doctype):
|
def get_default_naming_series(doctype):
|
||||||
naming_series = frappe.get_meta(doctype).get_field("naming_series").options or ""
|
naming_series = frappe.get_meta(doctype).get_field("naming_series").options or ""
|
||||||
naming_series = naming_series.split("\n")
|
naming_series = naming_series.split("\n")
|
||||||
return naming_series[0] or naming_series[1]
|
out = naming_series[0] or (naming_series[1] if len(naming_series) > 1 else None)
|
||||||
|
if out:
|
||||||
|
frappe.throw(_("Please set Naming Series for {0} via Setup > Settings > Naming Series").format(doctype))
|
||||||
|
|||||||
@ -37,7 +37,6 @@ class Issue(Document):
|
|||||||
if values:
|
if values:
|
||||||
self.contact, self.customer = values
|
self.contact, self.customer = values
|
||||||
|
|
||||||
|
|
||||||
if not self.company:
|
if not self.company:
|
||||||
self.company = frappe.db.get_value("Lead", self.lead, "company") or \
|
self.company = frappe.db.get_value("Lead", self.lead, "company") or \
|
||||||
frappe.db.get_default("company")
|
frappe.db.get_default("company")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user