From: Terran McCanna Date: Tue, 21 Sep 2021 23:11:49 +0000 (-0400) Subject: LP1724032 Permisson Group on Hold Shelf Slip Print Template X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d30f91c12f374d36c554652b40edd84cd61cee9b;p=evergreen%2Ftadl.git LP1724032 Permisson Group on Hold Shelf Slip Print Template This makes the patron permission group available to the hold shelf slip print template. Signed-off-by: Terran McCanna Signed-off-by: Susan Morrison Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/templates/staff/share/print_templates/t_hold_shelf_slip.tt2 b/Open-ILS/src/templates/staff/share/print_templates/t_hold_shelf_slip.tt2 index aca7f63fa6..95802ae068 100644 --- a/Open-ILS/src/templates/staff/share/print_templates/t_hold_shelf_slip.tt2 +++ b/Open-ILS/src/templates/staff/share/print_templates/t_hold_shelf_slip.tt2 @@ -12,6 +12,7 @@ Template for printing hold request slips. Fields include: * patron.first_given_name * patron.second_given_name * patron.card.barcode +* patron.profile.name * hold.request_time * hold.phone_notify * hold.sms_notify diff --git a/Open-ILS/web/js/ui/default/staff/circ/services/circ.js b/Open-ILS/web/js/ui/default/staff/circ/services/circ.js index 72e34ec4e4..c328cab701 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/services/circ.js +++ b/Open-ILS/web/js/ui/default/staff/circ/services/circ.js @@ -1786,7 +1786,7 @@ function($uibModal , $q , egCore , egAlertDialog , egConfirmDialog, egAddCopyAl egCore.pcrud.retrieve('au', evt.payload.hold.usr(), { flesh : 1, - flesh_fields : {'au' : ['card']} + flesh_fields : {'au' : ['card', 'profile']} } ).then(function(patron) {data.patron = patron}) );