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

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

Return to bug 24857