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

(-)a/admin/columns_settings.yml (+4 lines)
Lines 286-291 modules: Link Here
286
              columnname: holdings_homebranch
286
              columnname: holdings_homebranch
287
            -
287
            -
288
              columnname: holdings_ccode
288
              columnname: holdings_ccode
289
            -
290
              columnname: holdings_volume
289
            -
291
            -
290
              columnname: holdings_itemcallnumber
292
              columnname: holdings_itemcallnumber
291
            -
293
            -
Lines 343-348 modules: Link Here
343
              columnname: otherholdings_homebranch
345
              columnname: otherholdings_homebranch
344
            -
346
            -
345
              columnname: otherholdings_ccode
347
              columnname: otherholdings_ccode
348
            -
349
              columnname: otherholdings_volume
346
            -
350
            -
347
              columnname: otherholdings_itemcallnumber
351
              columnname: otherholdings_itemcallnumber
348
            -
352
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-3 / +4 lines)
Lines 296-302 Link Here
296
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
296
                <th id="[% tab | html %]_holdingbranch" data-colname="[% tab | html %]_holdingbranch">Current library</th>
297
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
297
                <th id="[% tab | html %]_homebranch" data-colname="[% tab | html %]_homebranch">Home library</th>
298
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
298
                [% IF ( itemdata_ccode ) %]<th id="[% tab | html %]_ccode" data-colname="[% tab | html %]_ccode">Collection</th>[% END %]
299
                [% IF Koha.Preference('EnableVolumes') %]<th>Volume</th>[% END %]
299
                [% IF Koha.Preference('EnableVolumes') %]
300
                    <th id="[% tab | html %]_volume" data-colname="[% tab | html %]_volume">Volume</th>
301
                [% END %]
300
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
302
                <th id="[% tab | html %]_itemcallnumber" data-colname="[% tab | html %]_itemcallnumber">Call number</th>
301
                [% IF volinfo %]
303
                [% IF volinfo %]
302
                [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting%]
304
                [% IF itemdata_publisheddate #If there is at least one published date, use it for sorting%]
Lines 375-381 Note that permanent location is a code, and location may be an authval. Link Here
375
                        </span>
377
                        </span>
376
                    </td>
378
                    </td>
377
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
379
                    [% IF ( itemdata_ccode ) %]<td>[% item.ccode | html %]</td>[% END %]
378
                    [% IF Koha.Preference('EnableVolumes') %]<td>[% item.object.volume.description | html %]</td>[% END %]
380
                    [% IF Koha.Preference('EnableVolumes') %]<td class="volume">[% item.object.volume.description | html %]</td>[% END %]
379
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
381
                    <td class="itemcallnumber">[% IF ( item.itemcallnumber ) %] [% item.itemcallnumber | html %][% END %]</td>
380
                    [% IF ( volinfo ) %]
382
                    [% IF ( volinfo ) %]
381
                        <td class="enumchron">
383
                        <td class="enumchron">
382
- 

Return to bug 24857