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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 280-285 modules: Link Here
280
              columnname: holdings_homebranch
280
              columnname: holdings_homebranch
281
            -
281
            -
282
              columnname: holdings_ccode
282
              columnname: holdings_ccode
283
            -
284
              columnname: holdings_volume
283
            -
285
            -
284
              columnname: holdings_itemcallnumber
286
              columnname: holdings_itemcallnumber
285
            -
287
            -
Lines 335-340 modules: Link Here
335
              columnname: otherholdings_homebranch
337
              columnname: otherholdings_homebranch
336
            -
338
            -
337
              columnname: otherholdings_ccode
339
              columnname: otherholdings_ccode
340
            -
341
              columnname: otherholdings_volume
338
            -
342
            -
339
              columnname: otherholdings_itemcallnumber
343
              columnname: otherholdings_itemcallnumber
340
            -
344
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-3 / +4 lines)
Lines 294-300 Link Here
294
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
294
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
295
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
295
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
296
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
296
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
297
                [% IF Koha.Preference('EnableVolumes') %]<th>Volume</th>[% END %]
297
                [% IF Koha.Preference('EnableVolumes') %]
298
                    <th id="[% tab | html %]_volume" data-colname="[% tab | html %]_volume">Volume</th>
299
                [% END %]
298
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
300
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
299
                [% IF volinfo %]
301
                [% IF volinfo %]
300
                [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting%]
302
                [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting%]
Lines 357-363 Note that permanent location is a code, and location may be an authval. Link Here
357
                        </span>
359
                        </span>
358
                    </td>
360
                    </td>
359
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
361
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
360
                    [% IF Koha.Preference('EnableVolumes') %]<td>[% item.object.volume.description | html %]</td>[% END %]
362
                    [% IF Koha.Preference('EnableVolumes') %]<td class="volume">[% item.object.volume.description | html %]</td>[% END %]
361
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
363
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
362
                    [% IF ( volinfo ) %]
364
                    [% IF ( volinfo ) %]
363
                        <td class="enumchron">
365
                        <td class="enumchron">
364
- 

Return to bug 24857