@@ -, +, @@ on details page 1 - Apply patch, restart all 2 - View a record with items in the staff client 3 - Note issues and renewals columns not shown 4 - Click the gear to edit visible columns 5 - Issues and renewals are present and hidden 6 - Click to view columns 7 - Confirm counts show, or 0 if item has not circulated/been renewed 8 - Circulate/renew an item 9 - Verify counts increase --- admin/columns_settings.yml | 6 ++++++ koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 4 ++++ 2 files changed, 10 insertions(+) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -364,6 +364,12 @@ modules: columnname: holdings_status - columnname: holdings_lastseen + - + columnname: holdings_issues + is_hidden: 1 + - + columnname: holdings_renewals + is_hidden: 1 - columnname: holdings_dateaccessioned - --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -341,6 +341,8 @@ [% END %] Status Last seen + Checkouts + Renewals Date accessioned Date last borrowed Barcode @@ -531,6 +533,8 @@ Note that permanent location is a code, and location may be an authval. [% END %] [% item.datelastseen | $KohaDates %] + [% item.issues || 0 | html %] + [% item.renewals || 0 | html %] [% item.dateaccessioned | $KohaDates %] [% item.datelastborrowed | $KohaDates %] [% item.barcode | html %] --