From d6c428cf4af9bde8cbbacf62773e20bb9172edf3 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Wed, 12 Sep 2018 15:34:56 -0400 Subject: [PATCH] LP 1749502: Add Call Number Prefix & Suffix to pull list print template. We add the call number prefix and suffix as separate columns to the holds pull list print template. We also add the suffix to the end of the orderBy so that we also sort by the suffix. Signed-off-by: Jason Stephenson --- .../src/templates/staff/share/print_templates/t_hold_pull_list.tt2 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/staff/share/print_templates/t_hold_pull_list.tt2 b/Open-ILS/src/templates/staff/share/print_templates/t_hold_pull_list.tt2 index 5a06dde9c8..cecb3777b8 100644 --- a/Open-ILS/src/templates/staff/share/print_templates/t_hold_pull_list.tt2 +++ b/Open-ILS/src/templates/staff/share/print_templates/t_hold_pull_list.tt2 @@ -24,17 +24,21 @@ Template for printing a table of holds to pull. Fields include: [% l('Title') %] [% l('Author') %] [% l('Shelf Location') %] + [% l('Call Number Prefix') %] [% l('Call Number') %] + [% l('Call Number Suffix') %] [% l('Barcode/Part') %] - + {{hold_data.hold.hold_type}} {{hold_data.title}} {{hold_data.author}} {{hold_data.copy.location.name}} + {{hold_data.volume.prefix}} {{hold_data.volume.label}} + {{hold_data.volume.suffix}} {{hold_data.copy.barcode}} {{hold_data.part.label}} -- 2.11.0