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

(-)a/admin/columns_settings.yml (+6 lines)
Lines 448-453 modules: Link Here
448
              columnname: holdings_dateaccessioned
448
              columnname: holdings_dateaccessioned
449
            -
449
            -
450
              columnname: holdings_datelastborrowed
450
              columnname: holdings_datelastborrowed
451
            -
452
              columnname: holdings_booksellerid
453
              is_hidden: 1
451
            -
454
            -
452
              columnname: holdings_barcode
455
              columnname: holdings_barcode
453
            -
456
            -
Lines 515-520 modules: Link Here
515
              columnname: otherholdings_dateaccessioned
518
              columnname: otherholdings_dateaccessioned
516
            -
519
            -
517
              columnname: otherholdings_datelastborrowed
520
              columnname: otherholdings_datelastborrowed
521
            -
522
              columnname: otherholdings_booksellerid
523
              is_hidden: 1
518
            -
524
            -
519
              columnname: otherholdings_barcode
525
              columnname: otherholdings_barcode
520
            -
526
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-1 / +10 lines)
Lines 29-34 Link Here
29
            <th id="[% tab | html %]_localuse" data-colname="[% tab | html %]_localuse">Local uses</th>
29
            <th id="[% tab | html %]_localuse" data-colname="[% tab | html %]_localuse">Local uses</th>
30
            <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>
31
            <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>
32
            <th id="[% tab | html %]_booksellerid" data-colname="[% tab | html %]_booksellerid">Source of acquisition</th>
32
            <th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th>
33
            <th id="[% tab | html %]_barcode" data-colname="[% tab | html %]_barcode">Barcode</th>
33
            <th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th>
34
            <th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th>
34
            <th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th>
35
            <th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th>
Lines 626-631 Link Here
626
                    return $date(row.last_checkout_date);
627
                    return $date(row.last_checkout_date);
627
                }
628
                }
628
            },
629
            },
630
            {
631
                data: "me.acquisition_source",
632
                className: "booksellerid",
633
                searchable: true,
634
                orderable: true,
635
                render: function (data, type, row, meta) {
636
                    return escape_str(row.acquisition_source);
637
                }
638
            },
629
            {
639
            {
630
                data: "me.external_id",
640
                data: "me.external_id",
631
                className: "",
641
                className: "",
632
- 

Return to bug 36182