Lines 79-84
Link Here
|
79 |
<th class="string-sort">Available locations</th> |
79 |
<th class="string-sort">Available locations</th> |
80 |
<th>Earliest hold date</th> |
80 |
<th>Earliest hold date</th> |
81 |
<th>Reserve notes</th> |
81 |
<th>Reserve notes</th> |
|
|
82 |
<th class="string-sort">Pickup location</th> |
82 |
<th>Action</th> |
83 |
<th>Action</th> |
83 |
</tr> |
84 |
</tr> |
84 |
</thead> |
85 |
</thead> |
Lines 179-184
Link Here
|
179 |
[% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %] |
180 |
[% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %] |
180 |
</td> |
181 |
</td> |
181 |
<td>[% hold.reservenotes | html %]</td> |
182 |
<td>[% hold.reservenotes | html %]</td> |
|
|
183 |
<td> |
184 |
[% Branches.GetName ( hold.branchcode ) | html %] |
185 |
</td> |
182 |
<td> |
186 |
<td> |
183 |
<form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post"> |
187 |
<form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post"> |
184 |
<input type="hidden" name="op" value="cancel_reserve" /> |
188 |
<input type="hidden" name="op" value="cancel_reserve" /> |
Lines 239-244
Link Here
|
239 |
<td id="itemtype-filter"></td> |
243 |
<td id="itemtype-filter"></td> |
240 |
<td id="locationfilter"></td> |
244 |
<td id="locationfilter"></td> |
241 |
<td></td> |
245 |
<td></td> |
|
|
246 |
<td id="pickup-location"></td> |
242 |
<td></td> |
247 |
<td></td> |
243 |
<td></td> |
248 |
<td></td> |
244 |
</tr> |
249 |
</tr> |
Lines 347-352
Link Here
|
347 |
holdst.fnFilter( $(this).val(), 11 ); |
352 |
holdst.fnFilter( $(this).val(), 11 ); |
348 |
}); |
353 |
}); |
349 |
}); |
354 |
}); |
|
|
355 |
$("#pickup-location").each( function () { |
356 |
$(this).html( createSelect( holdst.fnGetColumnData(13) ) ); |
357 |
$('select', this).change( function () { |
358 |
holdst.fnFilter( $(this).val(), 13 ); |
359 |
}); |
360 |
}); |
350 |
}); |
361 |
}); |
351 |
</script> |
362 |
</script> |
352 |
[% END %] |
363 |
[% END %] |
353 |
- |
|
|