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

(-)a/admin/columns_settings.yml (+6 lines)
Lines 402-407 modules: Link Here
402
            -
402
            -
403
              columnname: holdings_renewals
403
              columnname: holdings_renewals
404
              is_hidden: 1
404
              is_hidden: 1
405
            -
406
              columnname: holdings_localuse
407
              is_hidden: 1
405
            -
408
            -
406
              columnname: holdings_dateaccessioned
409
              columnname: holdings_dateaccessioned
407
            -
410
            -
Lines 465-470 modules: Link Here
465
            -
468
            -
466
              columnname: otherholdings_renewals
469
              columnname: otherholdings_renewals
467
              is_hidden: 1
470
              is_hidden: 1
471
            -
472
              columnname: otherholdings_localuse
473
              is_hidden: 1
468
            -
474
            -
469
              columnname: otherholdings_dateaccessioned
475
              columnname: otherholdings_dateaccessioned
470
            -
476
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-1 / +10 lines)
Lines 26-31 Link Here
26
            <th id="[% tab | html %]_lastseen" data-colname="[% tab | html %]_lastseen">Last seen</th>
26
            <th id="[% tab | html %]_lastseen" data-colname="[% tab | html %]_lastseen">Last seen</th>
27
            <th id="[% tab | html %]_issues" data-colname="[% tab | html %]_issues">Checkouts</th>
27
            <th id="[% tab | html %]_issues" data-colname="[% tab | html %]_issues">Checkouts</th>
28
            <th id="[% tab | html %]_renewals" data-colname="[% tab | html %]_renewals">Renewals</th>
28
            <th id="[% tab | html %]_renewals" data-colname="[% tab | html %]_renewals">Renewals</th>
29
            <th id="[% tab | html %]_localuse" data-colname="[% tab | html %]_localuse">Local uses</th>
29
            <th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th>
30
            <th id="[% tab | html %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th>
30
            <th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th>
31
            <th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th>
31
            <th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th>
32
            <th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th>
Lines 576-581 Link Here
576
                    return row.renewals_count || 0;
577
                    return row.renewals_count || 0;
577
                }
578
                }
578
            },
579
            },
580
            {
581
                data: "me.localuse",
582
                className: "localuse",
583
                searchable: true,
584
                orderable: true,
585
                render: function (data, type, row, meta) {
586
                    return row.localuse || 0;
587
                }
588
            },
579
            {
589
            {
580
                data: "me.acquisition_date",
590
                data: "me.acquisition_date",
581
                type: "date",
591
                type: "date",
582
- 

Return to bug 16122