From 75cd291e3d7c4ab86f99ecee28596c8c78cac456 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 21 Sep 2016 23:09:55 +0000 Subject: [PATCH] Bug 17331 - Show holding branch in holds awaiting pickup report This patch adds a holdingbranch column to waitingreseves.tt and separates 'Location' into Home branch and callnumber columns To test: 1 - Have some holds waiting and holds over 2 - View the report before the patch 3 - Note that location contains homebranch and call number 4 - View the report after the patch 5 - Note the new columns 6 - Ensure data is correct and no info has been lost --- .../prog/en/modules/circ/waitingreserves.tt | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt index a3966f1..81bad98 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt @@ -85,7 +85,9 @@ Available since Title Patron - Location + Home branch + Current Location + Call number Copy number Enumeration Action @@ -104,7 +106,9 @@ [% IF ( reserveloo.borrowermail ) %]
[% reserveloo.borrowermail %][% END %] - [% Branches.GetName( reserveloo.homebranch ) %]
[% reserveloo.itemcallnumber %] + [% Branches.GetName( reserveloo.homebranch ) %] + [% Branches.GetName( reserveloo.holdingbranch ) %] + [% reserveloo.itemcallnumber %] [% reserveloo.copynumber %] [% reserveloo.enumchron %] @@ -147,7 +151,9 @@ Available since Title Patron - Location + Home branch + Current Location + Call number Copy number Enumeration Action @@ -165,7 +171,9 @@ [% IF ( overloo.borrowermail ) %] [% overloo.borrowermail %][% END %] - [% Branches.GetName( overloo.homebranch ) %] [% overloo.itemcallnumber %] + [% Branches.GetName( overloo.homebranch ) %] + [% Branches.GetName( overloo.holdingbranch ) %] + [% overloo.itemcallnumber %] [% overloo.copynumber %] [% overloo.enumchron %]
-- 2.1.4