[open-ils-commits] r15633 - branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/circ (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Feb 24 13:03:39 EST 2010


Author: phasefx
Date: 2010-02-24 13:03:35 -0500 (Wed, 24 Feb 2010)
New Revision: 15633

Modified:
   branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js
Log:
Don't require an ident value for offline mode patron registration, since we don't require it online

Modified: branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js
===================================================================
--- branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js	2010-02-24 18:03:30 UTC (rev 15632)
+++ branches/rel_1_6/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js	2010-02-24 18:03:35 UTC (rev 15633)
@@ -206,13 +206,13 @@
     } 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();



More information about the open-ils-commits mailing list