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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1567-1572 modules: Link Here
1567
              columnname: current_location
1567
              columnname: current_location
1568
            -
1568
            -
1569
              columnname: shelving_location
1569
              columnname: shelving_location
1570
            -
1571
              columnname: collection
1570
            -
1572
            -
1571
              columnname: call_number
1573
              columnname: call_number
1572
            -
1574
            -
(-)a/circ/pendingreserves.pl (+1 lines)
Lines 269-274 foreach my $bibnum ( @biblionumbers ){ Link Here
269
269
270
    # get available values for each biblio
270
    # get available values for each biblio
271
    my $fields = {
271
    my $fields = {
272
        collections      => 'ccode',
272
        locations       => 'location',
273
        locations       => 'location',
273
        callnumbers     => 'itemcallnumber',
274
        callnumbers     => 'itemcallnumber',
274
        enumchrons      => 'enumchron',
275
        enumchrons      => 'enumchron',
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-1 / +9 lines)
Lines 80-85 Link Here
80
        <th>Available enumeration</th>
80
        <th>Available enumeration</th>
81
        <th class="string-sort">Available item types</th>
81
        <th class="string-sort">Available item types</th>
82
        <th class="string-sort">Available locations</th>
82
        <th class="string-sort">Available locations</th>
83
        <th class="string-sort">Available collections</th>
83
        <th>Earliest hold date</th>
84
        <th>Earliest hold date</th>
84
        <th>Hold notes</th>
85
        <th>Hold notes</th>
85
        <th class="string-sort">Pickup location</th>
86
        <th class="string-sort">Pickup location</th>
Lines 191-196 Link Here
191
            [% END %]
192
            [% END %]
192
            </ul>
193
            </ul>
193
        </td>
194
        </td>
195
        <td>
196
            <ul>
197
            [% FOREACH ccode IN hold_info.collections %]
198
                <li>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => ccode ) | html %]</li>
199
            [% END %]
200
            </ul>
201
        </td>
194
        <td data-order="[% hold.reservedate | html %]">
202
        <td data-order="[% hold.reservedate | html %]">
195
            [% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %]
203
            [% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %]
196
        </td>
204
        </td>
Lines 259-264 Link Here
259
        <td id="locationfilter"></td>
267
        <td id="locationfilter"></td>
260
        <td></td>
268
        <td></td>
261
        <td></td>
269
        <td></td>
270
        <td></td>
262
        <td id="pickup-location"></td>
271
        <td id="pickup-location"></td>
263
        <td></td>
272
        <td></td>
264
        </tr>
273
        </tr>
265
- 

Return to bug 32421