Lines 64-69
Link Here
|
64 |
<th class="string-sort">Available item types</th> |
64 |
<th class="string-sort">Available item types</th> |
65 |
<th class="string-sort">Available locations</th> |
65 |
<th class="string-sort">Available locations</th> |
66 |
<th class="title-string">Earliest hold date</th> |
66 |
<th class="title-string">Earliest hold date</th> |
|
|
67 |
<th class="string-sort">Pickup location</th> |
67 |
<th>Action</th> |
68 |
<th>Action</th> |
68 |
</tr> |
69 |
</tr> |
69 |
</thead> |
70 |
</thead> |
Lines 157-163
Link Here
|
157 |
</ul> |
158 |
</ul> |
158 |
</td> |
159 |
</td> |
159 |
<td> |
160 |
<td> |
160 |
<span title="[% hold.reservedate | html %]">[% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %]</span> |
161 |
<span title="[% hold.reservedate | html %]">[% hold.reservedate | $KohaDates %]</span> |
|
|
162 |
</td> |
163 |
<td> |
164 |
[% Branches.GetName ( hold.branchcode ) | html %] |
161 |
</td> |
165 |
</td> |
162 |
<td> |
166 |
<td> |
163 |
<form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post"> |
167 |
<form name="cancelReserve" action="/cgi-bin/koha/circ/pendingreserves.pl" method="post"> |
Lines 219-224
Link Here
|
219 |
<td id="itemtype-filter"></td> |
223 |
<td id="itemtype-filter"></td> |
220 |
<td id="locationfilter"></td> |
224 |
<td id="locationfilter"></td> |
221 |
<td></td> |
225 |
<td></td> |
|
|
226 |
<td id="pickup-location"></td> |
222 |
<td></td> |
227 |
<td></td> |
223 |
</tr> |
228 |
</tr> |
224 |
</tfoot> |
229 |
</tfoot> |
Lines 326-331
Link Here
|
326 |
holdst.fnFilter( $(this).val(), 11 ); |
331 |
holdst.fnFilter( $(this).val(), 11 ); |
327 |
}); |
332 |
}); |
328 |
}); |
333 |
}); |
|
|
334 |
$("#pickup-location").each( function () { |
335 |
$(this).html( createSelect( holdst.fnGetColumnData(13) ) ); |
336 |
$('select', this).change( function () { |
337 |
holdst.fnFilter( $(this).val(), 13 ); |
338 |
}); |
339 |
}); |
329 |
}); |
340 |
}); |
330 |
</script> |
341 |
</script> |
331 |
[% END %] |
342 |
[% END %] |
332 |
- |
|
|