@@ -, +, @@ --- admin/columns_settings.yml | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt | 2 ++ 2 files changed, 4 insertions(+) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -534,6 +534,8 @@ modules: - columnname: itemtype - + columnname: collection_code + - columnname: current_location - columnname: location --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt @@ -83,6 +83,7 @@ Rep.price Library Item type + Collection code Current location Location Not for loan status @@ -112,6 +113,7 @@ [% item.replacementprice | $Price %] [% Branches.GetName(item.homebranch) | html %] [% ItemTypes.GetDescription(item.effective_itemtype) | html %] + [% AuthorisedValues.GetByCode( 'CCODE', item.ccode ) | html %] [% Branches.GetName(item.holdingbranch) | html %] [% AuthorisedValues.GetByCode( 'LOC', item.location ) | html %] [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.notforloan', authorised_value => item.notforloan ) | html %] --