Browse Source

Bug 22372: Add available location to Holds awaiting pickup

Test plan:
 - Go to Circulation, Holds awaiting pickup (circ/waitingreserves.pl)
 - Note the additional column for available location.

Signed-off-by: Jose-Mario Monteiro-Santos <jose-mario.monteiro-santos@inLibro.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
19.05.x
Matthias Meusburger 5 years ago
committed by Nick Clemens
parent
commit
e0f83eb4b6
  1. 3
      koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc

3
koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc

@ -1,4 +1,5 @@
[% USE ItemTypes %]
[% USE AuthorisedValues %]
<table id="[% table_name | html %]">
<thead>
<tr>
@ -8,6 +9,7 @@
<th>Patron</th>
<th>Home branch</th>
<th>Current location</th>
<th>Available location</th>
<th>Call number</th>
<th>Copy number</th>
<th>Enumeration</th>
@ -37,6 +39,7 @@
</td>
<td>[% Branches.GetName( reserveloo.item.homebranch ) | html %]</td>
<td>[% Branches.GetName( reserveloo.item.holdingbranch ) | html %]</td>
<td>[% AuthorisedValues.GetByCode('LOC', reserveloo.item.location) | html %]</td>
<td>[% reserveloo.item.itemcallnumber | html %]</td>
<td>[% reserveloo.item.copynumber | html %]</td>
<td>[% reserveloo.item.enumchron | html %]</td>

Loading…
Cancel
Save