From 99d29f054e966dc2a6e21a29861f28f0b7143d75 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Mon, 15 Jun 2020 11:45:19 -0400 Subject: [PATCH] LP#1879983: egCurbsideHoldsList now displays warning about new-arrived holds The directive now displays a warning if a hold's shelf time occurs *after* the time that the appointment was staged. Note that this does not take the Hold Shelf Status Delay library setting into account. Signed-off-by: Galen Charlton --- Open-ILS/src/templates/staff/circ/curbside/t_holds_list.tt2 | 3 +++ Open-ILS/web/js/ui/default/staff/circ/curbside/services/core.js | 1 + 2 files changed, 4 insertions(+) diff --git a/Open-ILS/src/templates/staff/circ/curbside/t_holds_list.tt2 b/Open-ILS/src/templates/staff/circ/curbside/t_holds_list.tt2 index f7b9484426..2a334e910c 100644 --- a/Open-ILS/src/templates/staff/circ/curbside/t_holds_list.tt2 +++ b/Open-ILS/src/templates/staff/circ/curbside/t_holds_list.tt2 @@ -5,5 +5,8 @@ {{hold.current_copy().barcode()}} +
+ [% l('Check item; came in after appointment was staged.') %] +
diff --git a/Open-ILS/web/js/ui/default/staff/circ/curbside/services/core.js b/Open-ILS/web/js/ui/default/staff/circ/curbside/services/core.js index 8a4daa3228..e2b1e6c240 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/curbside/services/core.js +++ b/Open-ILS/web/js/ui/default/staff/circ/curbside/services/core.js @@ -179,6 +179,7 @@ function(egCore , orderByFilter , $q , $filter , $uibModal , ngToast , egConfirm transclude: true, templateUrl : './circ/curbside/t_holds_list', scope : { + slot : '=', holds : '=', bibData : '=' }, -- 2.11.0