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

(-)a/admin/columns_settings.yml (+6 lines)
Lines 406-411 modules: Link Here
406
              columnname: holdings_dateaccessioned
406
              columnname: holdings_dateaccessioned
407
            -
407
            -
408
              columnname: holdings_datelastborrowed
408
              columnname: holdings_datelastborrowed
409
            -
410
              columnname: holdings_booksellerid
411
              is_hidden: 1
409
            -
412
            -
410
              columnname: holdings_barcodes
413
              columnname: holdings_barcodes
411
            -
414
            -
Lines 469-474 modules: Link Here
469
              columnname: otherholdings_dateaccessioned
472
              columnname: otherholdings_dateaccessioned
470
            -
473
            -
471
              columnname: otherholdings_datelastborrowed
474
              columnname: otherholdings_datelastborrowed
475
            -
476
              columnname: otherholdings_booksellerid
477
              is_hidden: 1
472
            -
478
            -
473
              columnname: otherholdings_barcode
479
              columnname: otherholdings_barcode
474
            -
480
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc (-1 / +10 lines)
Lines 28-33 Link Here
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 %]_dateaccessioned" data-colname="[% tab | html %]_dateaccessioned">Date accessioned</th>
29
            <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>
30
            <th id="[% tab | html %]_datelastborrowed" data-colname="[% tab | html %]_datelastborrowed">Date last borrowed</th>
31
            <th id="[% tab | html %]_booksellerid" data-colname="[% tab | html %]_booksellerid">Source of acquisition</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>
32
            <th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th>
33
            <th id="[% tab | html %]_uri" data-colname="[% tab | html %]_uri">URL</th>
33
            <th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th>
34
            <th id="[% tab | html %]_copynumber" data-colname="[% tab | html %]_copynumber">Copy number</th>
Lines 596-601 Link Here
596
                    return $date(row.last_checkout_date);
597
                    return $date(row.last_checkout_date);
597
                }
598
                }
598
            },
599
            },
600
            {
601
                data: "me.acquisition_source",
602
                className: "booksellerid",
603
                searchable: true,
604
                orderable: true,
605
                render: function (data, type, row, meta) {
606
                    return escape_str(row.acquisition_source);
607
                }
608
            },
599
            {
609
            {
600
                data: "me.external_id",
610
                data: "me.external_id",
601
                className: "",
611
                className: "",
602
- 

Return to bug 36182