Lines 227-233
Link Here
|
227 |
<li> |
227 |
<li> |
228 |
<label for="pickup">Pickup at:</label> |
228 |
<label for="pickup">Pickup at:</label> |
229 |
<select name="pickup" size="1" id="pickup"> |
229 |
<select name="pickup" size="1" id="pickup"> |
230 |
[% PROCESS options_for_libraries libraries => Branches.all({ selected => pickup, search_params => { pickup_location => 1 } }) %] |
230 |
[% UNLESS ( multi_hold ) %] |
|
|
231 |
[% PROCESS options_for_libraries libraries => Branches.pickup_locations({ search_params => { biblio => biblionumber, patron => patron }, selected => pickup }) %] |
232 |
[% ELSE %] |
233 |
[% PROCESS options_for_libraries libraries => Branches.all({ selected => pickup, search_params => { pickup_location => 1 } }) %] |
234 |
[% END %] |
231 |
</select> |
235 |
</select> |
232 |
</li> |
236 |
</li> |
233 |
|
237 |
|
Lines 341-346
Link Here
|
341 |
<th>Vol no.</th> |
345 |
<th>Vol no.</th> |
342 |
[% END %] |
346 |
[% END %] |
343 |
<th class="title-string">Information</th> |
347 |
<th class="title-string">Information</th> |
|
|
348 |
<th class="title-string">Allowed pickup locations</th> |
344 |
</tr> |
349 |
</tr> |
345 |
</thead> |
350 |
</thead> |
346 |
<tbody> |
351 |
<tbody> |
Lines 377-382
Link Here
|
377 |
Not holdable |
382 |
Not holdable |
378 |
[% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %] |
383 |
[% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %] |
379 |
Patron is from different library |
384 |
Patron is from different library |
|
|
385 |
[% ELSIF itemloo.not_holdable == 'branchNotInHoldGroup' %] |
386 |
Cannot place hold from patrons's library |
380 |
[% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %] |
387 |
[% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %] |
381 |
Patron already has hold for this item |
388 |
Patron already has hold for this item |
382 |
[% ELSIF itemloo.not_holdable == 'cannotBeTransferred' %] |
389 |
[% ELSIF itemloo.not_holdable == 'cannotBeTransferred' %] |
Lines 474-479
Link Here
|
474 |
<span class="nfl">Not for loan ([% AuthorisedValues.GetByCode( 'NOT_LOAN', itemloo.notforloan ) | html %])</span> |
481 |
<span class="nfl">Not for loan ([% AuthorisedValues.GetByCode( 'NOT_LOAN', itemloo.notforloan ) | html %])</span> |
475 |
[% END %] |
482 |
[% END %] |
476 |
</td> |
483 |
</td> |
|
|
484 |
<td> |
485 |
[% itemloo.pickup_locations | html %] |
486 |
</td> |
477 |
</tr> |
487 |
</tr> |
478 |
[% END # / UNLESS itemloo.hide %] |
488 |
[% END # / UNLESS itemloo.hide %] |
479 |
[% END # /FOREACH itemloo %] |
489 |
[% END # /FOREACH itemloo %] |