@@ -, +, @@ summary table --- Koha/Illbackends/BLDSS | 1 + Koha/Illbackends/koha-ill-freeform | 1 + admin/itemtypes.pl | 2 ++ koha-ill-freeform | 1 + .../prog/en/modules/admin/.itemtypes.tt.swp | Bin 0 -> 40960 bytes .../intranet-tmpl/prog/en/modules/admin/itemtypes.tt | 8 +++++++- 6 files changed, 12 insertions(+), 1 deletion(-) create mode 160000 Koha/Illbackends/BLDSS create mode 160000 Koha/Illbackends/koha-ill-freeform create mode 160000 koha-ill-freeform create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/admin/.itemtypes.tt.swp --- a/Koha/Illbackends/BLDSS +++ a/Koha/Illbackends/BLDSS @@ -0,0 +1, @@ +Subproject commit 39f98e6f8028f5f152e5028582c94ae683a20f62 --- a/Koha/Illbackends/koha-ill-freeform +++ a/Koha/Illbackends/koha-ill-freeform @@ -0,0 +1, @@ +Subproject commit a52db29936a520c1f84e08b7d2a54b16cba12cc5 --- a/admin/itemtypes.pl +++ a/admin/itemtypes.pl @@ -169,8 +169,10 @@ if ( $op eq 'add_form' ) { if ( $op eq 'list' ) { my $itemtypes = Koha::ItemTypes->search; + my $searchcategory = GetAuthorisedValues("ITEMTYPECAT"); $template->param( itemtypes => $itemtypes, + searchcategory => $searchcategory, messages => \@messages, ); } --- a/koha-ill-freeform +++ a/koha-ill-freeform @@ -0,0 +1, @@ +Subproject commit a52db29936a520c1f84e08b7d2a54b16cba12cc5 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt @@ -364,7 +364,13 @@ Item types administration [% itemtype.description | html %] [% END %] - [% itemtype.searchcategory | html %] + + [% FOREACH cat IN searchcategory %] + [% IF cat.authorised_value == itemtype.searchcategory %] + [% cat.lib | html %] + [% END %] + [% END %] + [% IF ( itemtype.notforloan ) %]Yes[% ELSE %] [% END %] [% IF ( itemtype.hideinopac ) %]Yes[% ELSE %] [% END %] --