[hotfix] validate company name on 'The Brand' Slide instead of 'Your Organization' (#11007)

This commit is contained in:
Makarand Bauskar
2017-10-02 11:38:03 +05:30
committed by Nabin Hait
parent 4b99fe15cc
commit b1bf502119
2 changed files with 12 additions and 12 deletions

View File

@@ -86,6 +86,10 @@ erpnext.setup.slides_settings = [
});
},
validate: function() {
if ((this.values.company_name || "").toLowerCase() == "company") {
frappe.msgprint(__("Company Name cannot be Company"));
return false;
}
if (!this.values.company_abbr) {
return false;
}
@@ -135,10 +139,6 @@ erpnext.setup.slides_settings = [
frappe.msgprint(__("Please enter valid Financial Year Start and End Dates"));
return false;
}
if ((this.values.company_name || "").toLowerCase() == "company") {
frappe.msgprint(__("Company Name cannot be Company"));
return false;
}
return true;
},