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 322-328 Link Here
322
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
322
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
323
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
323
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
324
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
324
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
325
                [% IF Koha.Preference('EnableVolumes') %]<th>Volume</th>[% END %]
325
                [% IF Koha.Preference('EnableVolumes') %]
326
                    <th id="[% tab | html %]_volume" data-colname="[% tab | html %]_volume">Volume</th>
327
                [% END %]
326
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
328
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
327
                [% IF volinfo %]
329
                [% IF volinfo %]
328
                    <th id="[% tab | html %]_enumchron" data-colname="[% tab | html %]_enumchron">Serial enumeration / chronology</th>
330
                    <th id="[% tab | html %]_enumchron" data-colname="[% tab | html %]_enumchron">Serial enumeration / chronology</th>
Lines 397-403 Note that permanent location is a code, and location may be an authval. Link Here
397
                        </span>
399
                        </span>
398
                    </td>
400
                    </td>
399
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
401
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
400
                    [% IF Koha.Preference('EnableVolumes') %]<td>[% item.object.volume.description | html %]</td>[% END %]
402
                    [% IF Koha.Preference('EnableVolumes') %]<td class="volume">[% item.object.volume.description | html %]</td>[% END %]
401
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
403
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
402
                    [% IF ( volinfo ) %]
404
                    [% IF ( volinfo ) %]
403
                        <td class="enumchron" data-order="[% item.publisheddate | html %]">
405
                        <td class="enumchron" data-order="[% item.publisheddate | html %]">
404
- 

Return to bug 24857