@@ -, +, @@ --- admin/columns_settings.yml | 6 ++++++ .../html_helpers/tables/items/catalogue_detail.inc | 10 ++++++++++ 2 files changed, 16 insertions(+) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -402,6 +402,9 @@ modules: - columnname: holdings_renewals is_hidden: 1 + - + columnname: holdings_localuse + is_hidden: 1 - columnname: holdings_dateaccessioned - @@ -465,6 +468,9 @@ modules: - columnname: otherholdings_renewals is_hidden: 1 + - + columnname: otherholdings_localuse + is_hidden: 1 - columnname: otherholdings_dateaccessioned - --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc @@ -26,6 +26,7 @@ Last seen Checkouts Renewals + Local uses Date accessioned Date last borrowed Barcode @@ -576,6 +577,15 @@ return row.renewals_count || 0; } }, + { + data: "me.localuse", + className: "localuse", + searchable: true, + orderable: true, + render: function (data, type, row, meta) { + return row.localuse || 0; + } + }, { data: "me.acquisition_date", type: "date", --