From: Kyle Tomita Date: Thu, 14 Feb 2013 22:42:10 +0000 (-0800) Subject: LP1100482 - Add max checked out indicator to patron interface X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f75e86d796a4658d9a60a9f61ddbeb0119612fa7;p=evergreen%2Fpines.git LP1100482 - Add max checked out indicator to patron interface Patron exceeds max checked out indicator is 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 Signed-off-by: Ben Shum --- diff --git a/Open-ILS/web/opac/locale/en-US/lang.dtd b/Open-ILS/web/opac/locale/en-US/lang.dtd index b700232bc7..f5880ff554 100644 --- a/Open-ILS/web/opac/locale/en-US/lang.dtd +++ b/Open-ILS/web/opac/locale/en-US/lang.dtd @@ -3222,6 +3222,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 f1a1361ee6..81fc680208 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 @@