[open-ils-commits] r15632 - trunk/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:33 EST 2010


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

Modified:
   trunk/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: trunk/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js	2010-02-24 17:26:19 UTC (rev 15631)
+++ trunk/Open-ILS/xul/staff_client/chrome/content/circ/offline_register.js	2010-02-24 18:03:30 UTC (rev 15632)
@@ -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