Lines 211-217
Link Here
|
211 |
<li> |
211 |
<li> |
212 |
<label for="pickup">Pickup at:</label> |
212 |
<label for="pickup">Pickup at:</label> |
213 |
<select name="pickup" size="1" id="pickup"> |
213 |
<select name="pickup" size="1" id="pickup"> |
214 |
[% PROCESS options_for_libraries libraries => Branches.all({ selected => pickup, search_params => { pickup_location => 1 } }) %] |
214 |
[% UNLESS ( multi_hold ) %] |
|
|
215 |
[% PROCESS options_for_libraries libraries => Branches.pickup_locations({ search_params => { biblio => biblionumber, patron => patron }, selected => pickup }) %] |
216 |
[% ELSE %] |
217 |
[% PROCESS options_for_libraries libraries => Branches.all({ selected => pickup, search_params => { pickup_location => 1 } }) %] |
218 |
[% END %] |
215 |
</select> |
219 |
</select> |
216 |
</li> |
220 |
</li> |
217 |
|
221 |
|
Lines 314-319
Link Here
|
314 |
<th>Vol no.</th> |
318 |
<th>Vol no.</th> |
315 |
[% END %] |
319 |
[% END %] |
316 |
<th class="title-string">Information</th> |
320 |
<th class="title-string">Information</th> |
|
|
321 |
<th class="title-string">Allowed pickup locations</th> |
317 |
</tr> |
322 |
</tr> |
318 |
</thead> |
323 |
</thead> |
319 |
<tbody> |
324 |
<tbody> |
Lines 350-355
Link Here
|
350 |
Not holdable |
355 |
Not holdable |
351 |
[% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %] |
356 |
[% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %] |
352 |
Patron is from different library |
357 |
Patron is from different library |
|
|
358 |
[% ELSIF itemloo.not_holdable == 'branchNotInHoldGroup' %] |
359 |
Cannot place hold from patrons's library |
353 |
[% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %] |
360 |
[% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %] |
354 |
Patron already has hold for this item |
361 |
Patron already has hold for this item |
355 |
[% ELSIF itemloo.not_holdable == 'cannotBeTransferred' %] |
362 |
[% ELSIF itemloo.not_holdable == 'cannotBeTransferred' %] |
Lines 438-443
Link Here
|
438 |
<span class="nfl">Not for loan ([% AuthorisedValues.GetByCode( 'NOT_LOAN', itemloo.notforloan ) | html %])</span> |
445 |
<span class="nfl">Not for loan ([% AuthorisedValues.GetByCode( 'NOT_LOAN', itemloo.notforloan ) | html %])</span> |
439 |
[% END %] |
446 |
[% END %] |
440 |
</td> |
447 |
</td> |
|
|
448 |
<td> |
449 |
[% itemloo.pickup_locations | html %] |
450 |
</td> |
441 |
</tr> |
451 |
</tr> |
442 |
[% END %] <!--UNLESS item hide--> |
452 |
[% END %] <!--UNLESS item hide--> |
443 |
[% END %] <!-- itemloop --> |
453 |
[% END %] <!-- itemloop --> |