From: Galen Charlton Date: Mon, 15 Jun 2020 15:45:19 +0000 (-0400) Subject: LP#1879983: egCurbsideHoldsList now displays warning about new-arrived holds X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=99d29f054e966dc2a6e21a29861f28f0b7143d75;p=working%2FEvergreen.git 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 --- 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 : '=' },