From: phasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4> Date: Wed, 24 Feb 2010 18:03:30 +0000 (+0000) Subject: Don't require an ident value for offline mode patron registration, since we don't... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=34012c8fbadaf0f6d7025a00bcc62fc183554b43;p=evergreen%2Fmasslnc.git Don't require an ident value for offline mode patron registration, since we don't require it online git-svn-id: svn://svn.open-ils.org/ILS/trunk@15632 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js b/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js index 68d0a985a9..80ee2ac8fc 100644 --- a/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js +++ b/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js @@ -206,13 +206,13 @@ function check_patron(obj) { } else { $('street1').parentNode.setAttribute('style',''); } - if (! obj.user.ident_value ) { + /*if (! obj.user.ident_value ) { errors += offlineStrings.getString('circ.offline_register.missing.ident_value') + "\n"; $('ident_value').focus(); $('ident_value').parentNode.setAttribute('style','background-color: red'); } else { $('ident_value').parentNode.setAttribute('style',''); - } + }*/ if (! obj.user.ident_type ) { errors += offlineStrings.getString('circ.offline_register.missing.ident_type') + "\n"; $('ident_type').focus();