View | Details | Raw Unified | Return to bug 22284
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-11 / +10 lines)
Lines 228-237 Link Here
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
                                    [% UNLESS ( multi_hold ) %]
230
                                    [% UNLESS ( multi_hold ) %]
231
				        [% PROCESS options_for_libraries libraries => Branches.pickup_locations({ search_params => { biblio => biblionumber, patron => patron }, selected => pickup }) %]
231
                                        [% PROCESS options_for_libraries libraries => Branches.pickup_locations({ search_params => { biblio => biblionumber, patron => patron }, selected => pickup }) %]
232
				    [% ELSE %]
232
                                    [% ELSE %]
233
				        [% PROCESS options_for_libraries libraries => Branches.all({ selected => pickup, search_params => { pickup_location => 1 } }) %]
233
                                        [% PROCESS options_for_libraries libraries => Branches.all({ selected => pickup, search_params => { pickup_location => 1 } }) %]
234
				    [% END %]
234
                                    [% END %]
235
                                </select>
235
                                </select>
236
                            </li>
236
                            </li>
237
237
Lines 345-351 Link Here
345
                                                <th>Vol no.</th>
345
                                                <th>Vol no.</th>
346
                                            [% END %]
346
                                            [% END %]
347
                                            <th class="title-string">Information</th>
347
                                            <th class="title-string">Information</th>
348
					    <th class="title-string">Allowed pickup locations</th>
348
                                            <th class="title-string">Allowed pickup locations</th>
349
                                        </tr>
349
                                        </tr>
350
                                    </thead>
350
                                    </thead>
351
                                    <tbody>
351
                                    <tbody>
Lines 382-389 Link Here
382
                                                                        Not holdable
382
                                                                        Not holdable
383
                                                                    [% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %]
383
                                                                    [% ELSIF itemloo.not_holdable == 'cannotReserveFromOtherBranches' %]
384
                                                                        Patron is from different library
384
                                                                        Patron is from different library
385
								    [% ELSIF itemloo.not_holdable == 'branchNotInHoldGroup' %]
385
                                                                    [% ELSIF itemloo.not_holdable == 'branchNotInHoldGroup' %]
386
									Cannot place hold from patrons's library
386
                                                                        Cannot place hold from patron's library
387
                                                                    [% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %]
387
                                                                    [% ELSIF itemloo.not_holdable == 'itemAlreadyOnHold' %]
388
                                                                        Patron already has hold for this item
388
                                                                        Patron already has hold for this item
389
                                                                    [% ELSIF itemloo.not_holdable == 'cannotBeTransferred' %]
389
                                                                    [% ELSIF itemloo.not_holdable == 'cannotBeTransferred' %]
Lines 481-489 Link Here
481
                                                           <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>
482
                                                        [% END %]
482
                                                        [% END %]
483
                                                    </td>
483
                                                    </td>
484
						    <td>
484
                                                    <td>
485
						        [% itemloo.pickup_locations | html %]
485
                                                        [% itemloo.pickup_locations | html %]
486
						    </td>
486
                                                    </td>
487
                                                </tr>
487
                                                </tr>
488
                                            [% END # / UNLESS itemloo.hide %]
488
                                            [% END # / UNLESS itemloo.hide %]
489
                                        [% END # /FOREACH itemloo %]
489
                                        [% END # /FOREACH itemloo %]
490
- 

Return to bug 22284