From: Kyle Tomita Date: Wed, 16 Jan 2013 21:44:14 +0000 (-0800) Subject: Bug 1100482 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=refs%2Fheads%2Fuser%2Fcatalystit%2F1100482_max_checked_out_indicator;p=working%2FEvergreen.git Bug 1100482 Patron exceeds max checked out indicator not being displayed on patron page. Created the indicator on the xul pages and the css to style it. The js code to hide and show indicator was there. Signed-off-by: Kyle Tomita --- diff --git a/Open-ILS/web/opac/locale/en-US/lang.dtd b/Open-ILS/web/opac/locale/en-US/lang.dtd index 70063d8ae5..d016341b79 100644 --- a/Open-ILS/web/opac/locale/en-US/lang.dtd +++ b/Open-ILS/web/opac/locale/en-US/lang.dtd @@ -3219,6 +3219,7 @@ + diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index 5e766b2906..a7055ae232 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -3748,6 +3748,7 @@ circ.util.renew_via_barcode = function ( params, async ) { case null /* custom event */ : break; case 5000 /* PERM_FAILURE */: break; case 1212 /* PATRON_EXCEEDS_OVERDUE_COUNT */ : break; + case 7002 /* PATRON_EXCEEDS_CHECKOUT_COUNT */ : break; case 1213 /* PATRON_BARRED */ : break; case 1215 /* CIRC_EXCEEDS_COPY_RANGE */ : break; case 1224 /* PATRON_ACCOUNT_EXPIRED */ : break; diff --git a/Open-ILS/xul/staff_client/server/patron/display_horiz_overlay.xul b/Open-ILS/xul/staff_client/server/patron/display_horiz_overlay.xul index 085fd5fd4d..da4a40c468 100644 --- a/Open-ILS/xul/staff_client/server/patron/display_horiz_overlay.xul +++ b/Open-ILS/xul/staff_client/server/patron/display_horiz_overlay.xul @@ -26,6 +26,7 @@