@@ -, +, @@ and location --- koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt @@ -2,6 +2,7 @@ [% USE Branches %] [% USE ColumnsSettings %] [% USE KohaDates %] +[% USE ItemTypes %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › Reports › Lost items @@ -94,9 +95,9 @@ [% item.price %] [% item.replacementprice %] [% Branches.GetName(item.homebranch) %] - [% item.effective_itemtype %] + [% ItemTypes.GetDescription(item.effective_itemtype) %] [% Branches.GetName(item.holdingbranch) %] - [% item.location %] + [% AuthorisedValues.GetByCode( 'LOC', item.location )%] [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) %] [% item.itemnotes %] --