[open-ils-commits] r11432 - in trunk/Open-ILS: web/opac/locale/en-US xul/staff_client/server/patron

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Dec 5 22:32:45 EST 2008


Author: miker
Date: 2008-12-05 22:32:43 -0500 (Fri, 05 Dec 2008)
New Revision: 11432

Modified:
   trunk/Open-ILS/web/opac/locale/en-US/lang.dtd
   trunk/Open-ILS/xul/staff_client/server/patron/ue.xhtml
   trunk/Open-ILS/xul/staff_client/server/patron/ue_config.js
Log:
adding the ability to set the juvenile flag on an edited user object

Modified: trunk/Open-ILS/web/opac/locale/en-US/lang.dtd
===================================================================
--- trunk/Open-ILS/web/opac/locale/en-US/lang.dtd	2008-12-06 03:19:03 UTC (rev 11431)
+++ trunk/Open-ILS/web/opac/locale/en-US/lang.dtd	2008-12-06 03:32:43 UTC (rev 11432)
@@ -2564,6 +2564,7 @@
 <!ENTITY ev.staff.patron.ue_xhtml.net_access_level.label "Internet Access Level">
 <!ENTITY ev.staff.patron.ue_xhtml.active.label "Active">
 <!ENTITY ev.staff.patron.ue_xhtml.barred.label "Barred">
+<!ENTITY ev.staff.patron.ue_xhtml.juvenile.label "Juvenile">
 <!ENTITY ev.staff.patron.ue_xhtml.set_family_group_lead_account.label "Set as Family or Group Lead Account">
 <!ENTITY ev.staff.patron.ue_xhtml.claims_returned_count.label "Claims Returned Count">
 <!ENTITY ev.staff.patron.ue_xhtml.alert_message.label "Alert Message">

Modified: trunk/Open-ILS/xul/staff_client/server/patron/ue.xhtml
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/ue.xhtml	2008-12-06 03:19:03 UTC (rev 11431)
+++ trunk/Open-ILS/xul/staff_client/server/patron/ue.xhtml	2008-12-06 03:32:43 UTC (rev 11432)
@@ -330,6 +330,14 @@
 											</div>
 										</td>
 									</tr>
+									<tr>
+										<td><div class='wide right'>&ev.staff.patron.ue_xhtml.juvenile.label;</div></td>
+										<td>
+											<div class='wide left'>
+												<input id='ue_juvenile' type='checkbox'/>
+											</div>
+										</td>
+									</tr>
 									<tr class='required_field'>
 										<td><div class='wide right'>&ev.staff.patron.ue_xhtml.primary_id_type.label;</div></td>
 										<td><div class='wide left'>

Modified: trunk/Open-ILS/xul/staff_client/server/patron/ue_config.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/patron/ue_config.js	2008-12-06 03:19:03 UTC (rev 11431)
+++ trunk/Open-ILS/xul/staff_client/server/patron/ue_config.js	2008-12-06 03:32:43 UTC (rev 11432)
@@ -348,6 +348,15 @@
 		{
 			required : false,
 			object	: patron,
+			key		: 'juvenile',
+			widget	: {
+				id			: 'ue_juvenile',
+				type		: 'checkbox',
+			}
+		},
+		{
+			required : false,
+			object	: patron,
 			key		: 'barred',
 			widget	: {
 				id			: 'ue_barred',



More information about the open-ils-commits mailing list