@@ -, +, @@ -Apply patch and have a look at some item records. -Notice the datalastseen column -Make sure it wroks and its displaying the datelastseen correctly -Go to the column configuration tools and make sure you can properly hide this column. --- admin/columns_settings.yml | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 ++ 2 files changed, 4 insertions(+) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -289,6 +289,8 @@ modules: - columnname: holdings_dateaccessioned - + columnname: holdings_datelastborrowed + - columnname: holdings_barcode - columnname: holdings_enumchron --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -288,6 +288,7 @@ Status Last seen Date accessioned + Date last borrowed Barcode [% IF ( itemdata_uri ) %]URL[% END %] [% IF ( itemdata_copynumber ) %]Copy number[% END %] @@ -450,6 +451,7 @@ Note that permanent location is a code, and location may be an authval. [% item.datelastseen | $KohaDates %] [% item.dateaccessioned | $KohaDates %] + [% item.datelastborrowed | $KohaDates %] [% item.barcode | html %] [% IF ( itemdata_uri ) %] [% IF item.uri.split(' \| ').size > 1 %] --