bug 4942 - add validation to patron administration
This validation requires an enrollment period or a date to be provided before the form will save, which will prevent invalid dates getting into the system. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
980de26320
commit
7d0212cf38
1 changed files with 8 additions and 4 deletions
|
@ -68,16 +68,20 @@
|
|||
_alertString += _("- upperagelimit is not a number") + "\n";
|
||||
|
||||
}
|
||||
if(!(ff.enrolmentperioddate.value || ff.enrolmentperiod.value)) {
|
||||
ok=1;
|
||||
_alertString += _("- either Enrollment period or Until date must be provided") + "\n";
|
||||
}
|
||||
if(ff.enrolmentperioddate.value && ff.enrolmentperiod.value){
|
||||
document.getElementById('enrolmentmessage').className = "error";
|
||||
return false;
|
||||
}
|
||||
|
||||
if (ok) { // if there is a problem
|
||||
alert(_alertString);
|
||||
return false;
|
||||
}
|
||||
// if all is good
|
||||
alert(_alertString);
|
||||
return false;
|
||||
}
|
||||
// if all is good
|
||||
ff.submit();
|
||||
}
|
||||
//]]>
|
||||
|
|
Loading…
Reference in a new issue