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:
Robin Sheat 2010-12-31 09:18:55 -05:00 committed by Chris Cormack
parent 980de26320
commit 7d0212cf38

View file

@ -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();
}
//]]>