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 <nengard@bywatersolutions.com>
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
Ian Walls 2012-01-03 12:00:26 -05:00 committed by Paul Poulain
parent 9156de6384
commit 1b3e84c672

View file

@ -50,6 +50,7 @@ $(document).ready(function() {
<th class="hq-patron">Patron</th> <th class="hq-patron">Patron</th>
<th class="hq-sendto">Send To</th> <th class="hq-sendto">Send To</th>
<th class="hq-date">Date</th> <th class="hq-date">Date</th>
<th class="hq-notes">Notes</th>
</tr> </tr>
</thead> </thead>
<tbody>[% FOREACH itemsloo IN itemsloop %] <tbody>[% FOREACH itemsloo IN itemsloop %]
@ -75,6 +76,7 @@ $(document).ready(function() {
<td class="hq-patron"><p><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% itemsloo.cardnumber %]#reserves">[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])</a></p> <p>[% itemsloo.phone %]</p></td> <td class="hq-patron"><p><a href="/cgi-bin/koha/circ/circulation.pl?findborrower=[% itemsloo.cardnumber %]#reserves">[% itemsloo.surname %], [% itemsloo.firstname %] ([% itemsloo.cardnumber %])</a></p> <p>[% itemsloo.phone %]</p></td>
<td class="hq-sendto">[% itemsloo.pickbranch %]</td> <td class="hq-sendto">[% itemsloo.pickbranch %]</td>
<td class="hq-date">[% itemsloo.reservedate %]</td> <td class="hq-date">[% itemsloo.reservedate %]</td>
<td class="hq-notes">[% itemsloo.notes %]</td>
</tr> </tr>
[% END %]</tbody> [% END %]</tbody>
</table> </table>