From: Martha Driscoll Date: Mon, 22 Feb 2016 20:34:15 +0000 (-0500) Subject: LP1229757 - Distinct images for holds, reserves, transits X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=041a23b488b92120e17200d53d95f8735f5356ba;p=Evergreen.git LP1229757 - Distinct images for holds, reserves, transits This commit changes the references to turtle.gif to three new images holdshelf.png, reserve.png, and transit.png. When checking in a copy that needs to go on the hold shelf, on the reservation shelf, or in transit, a distinct image will show in the pop-up window. Signed-off-by: Martha Driscoll --- diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index d2db606b7d..b725e7ccda 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -3111,7 +3111,7 @@ circ.util.checkin_via_barcode2 = function(session,params,backdate,auto_print,che document.getElementById('circStrings').getString('staff.circ.utils.hold_slip.print.no'), null, document.getElementById('circStrings').getString('staff.circ.confirm.msg'), - '/xul/server/skin/media/images/turtle.gif' + '/xul/server/skin/media/images/holdshelf.png' ); } else { if (suppress_popups && !no_print_prompting) { @@ -3265,7 +3265,7 @@ circ.util.checkin_via_barcode2 = function(session,params,backdate,auto_print,che document.getElementById('circStrings').getString('staff.circ.utils.reservation_slip.print.no'), null, document.getElementById('circStrings').getString('staff.circ.confirm.msg'), - '/xul/server/skin/media/images/turtle.gif' + '/xul/server/skin/media/images/reserve.png' ); } if (rv == 0) { @@ -3540,7 +3540,7 @@ circ.util.checkin_via_barcode2 = function(session,params,backdate,auto_print,che document.getElementById('circStrings').getString('staff.circ.utils.transit_slip.print.no'), null, document.getElementById('circStrings').getString('staff.circ.confirm.msg'), - '/xul/server/skin/media/images/turtle.gif' + '/xul/server/skin/media/images/transit.png' ); } else { if (suppress_popups && !no_print_prompting) { diff --git a/Open-ILS/xul/staff_client/server/skin/media/images/holdshelf.png b/Open-ILS/xul/staff_client/server/skin/media/images/holdshelf.png new file mode 100644 index 0000000000..0d0414243d Binary files /dev/null and b/Open-ILS/xul/staff_client/server/skin/media/images/holdshelf.png differ diff --git a/Open-ILS/xul/staff_client/server/skin/media/images/reserve.png b/Open-ILS/xul/staff_client/server/skin/media/images/reserve.png new file mode 100644 index 0000000000..e3f4266d5d Binary files /dev/null and b/Open-ILS/xul/staff_client/server/skin/media/images/reserve.png differ diff --git a/Open-ILS/xul/staff_client/server/skin/media/images/transit.png b/Open-ILS/xul/staff_client/server/skin/media/images/transit.png new file mode 100644 index 0000000000..6c57f72d26 Binary files /dev/null and b/Open-ILS/xul/staff_client/server/skin/media/images/transit.png differ