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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 308-313 modules: Link Here
308
              columnname: holdings_homebranch
308
              columnname: holdings_homebranch
309
            -
309
            -
310
              columnname: holdings_ccode
310
              columnname: holdings_ccode
311
            -
312
              columnname: holdings_volume
311
            -
313
            -
312
              columnname: holdings_itemcallnumber
314
              columnname: holdings_itemcallnumber
313
            -
315
            -
Lines 365-370 modules: Link Here
365
              columnname: otherholdings_homebranch
367
              columnname: otherholdings_homebranch
366
            -
368
            -
367
              columnname: otherholdings_ccode
369
              columnname: otherholdings_ccode
370
            -
371
              columnname: otherholdings_volume
368
            -
372
            -
369
              columnname: otherholdings_itemcallnumber
373
              columnname: otherholdings_itemcallnumber
370
            -
374
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-3 / +4 lines)
Lines 332-338 Link Here
332
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
332
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
333
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
333
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
334
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
334
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
335
                [% IF Koha.Preference('EnableVolumes') %]<th>Volume</th>[% END %]
335
                [% IF Koha.Preference('EnableVolumes') %]
336
                    <th id="[% tab | html %]_volume" data-colname="[% tab | html %]_volume">Volume</th>
337
                [% END %]
336
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
338
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
337
                [% IF volinfo %]
339
                [% IF volinfo %]
338
                    <th id="[% tab | html %]_enumchron" data-colname="[% tab | html %]_enumchron">Serial enumeration / chronology</th>
340
                    <th id="[% tab | html %]_enumchron" data-colname="[% tab | html %]_enumchron">Serial enumeration / chronology</th>
Lines 407-413 Note that permanent location is a code, and location may be an authval. Link Here
407
                        </span>
409
                        </span>
408
                    </td>
410
                    </td>
409
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
411
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
410
                    [% IF Koha.Preference('EnableVolumes') %]<td>[% item.object.volume.description | html %]</td>[% END %]
412
                    [% IF Koha.Preference('EnableVolumes') %]<td class="volume">[% item.object.volume.description | html %]</td>[% END %]
411
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
413
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
412
                    [% IF ( volinfo ) %]
414
                    [% IF ( volinfo ) %]
413
                        [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting %]
415
                        [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting %]
414
- 

Return to bug 24857