From cf4d45d687723682b8039df1ddd4efa995b2bd48 Mon Sep 17 00:00:00 2001 From: Ian Walls Date: Tue, 3 Jan 2012 12:00:26 -0500 Subject: [PATCH] [SIGNED-OFF] Bug 7399: Holds Queue should show reserve notes The notes for a specific hold, if they existed, were being added to the tmp_holdsqueue table by build_holds_queue.pl, but they were not displayed anywhere, which seems a waste. This patch adds the Notes column to the far right of view_holdsqueue.pl. To Test: Place a hold with a note Run build_holds_queue.pl to place it in the Holds Queue View the Holds Queue; you should see the note on the far right of the table Signed-off-by: Nicole C. Engard --- .../prog/en/modules/circ/view_holdsqueue.tt | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt index e54529a..8f0d9cb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -50,6 +50,7 @@ $(document).ready(function() { Patron Send To Date + Notes [% FOREACH itemsloo IN itemsloop %] @@ -75,6 +76,7 @@ $(document).ready(function() {

[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])

[% itemsloo.phone %]

[% itemsloo.pickbranch %] [% itemsloo.reservedate %] + [% itemsloo.notes %] [% END %] -- 1.7.2.3