[fix] validate fiscal year dates and company name
This commit is contained in:
parent
625592e997
commit
5c3469a01e
@ -163,6 +163,21 @@ function load_erpnext_slides() {
|
||||
erpnext.wiz.org.set_fy_dates(slide);
|
||||
},
|
||||
|
||||
validate: function() {
|
||||
// validate fiscal year start and end dates
|
||||
if (this.values.fy_start_date=='Invalid date' || this.values.fy_end_date=='Invalid date') {
|
||||
msgprint(__("Please enter valid Financial Year Start and End Dates"));
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((this.values.company_name || "").toLowerCase() == "company") {
|
||||
msgprint(__("Company Name cannot be Company"));
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
},
|
||||
|
||||
css_class: "single-column",
|
||||
|
||||
set_fy_dates: function(slide) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user