@@ -, +, @@ of checkins - Apply patch - Catalog a record with 245$a$b$n$p filled out - Check the item out to any patron - Verify that in the list of checkouts the information shows - Check out any other items with different 245 - Verify information is correct - In a new tab, return the items - Verify that in the list of checkins the information now matches the checkouts list --- circ/returns.pl | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -591,6 +591,9 @@ foreach ( sort { $a <=> $b } keys %returneditems ) { # FIXME pass $item to the template and we are done here... $ri{itembiblionumber} = $biblio->biblionumber; $ri{itemtitle} = $biblio->title; + $ri{subtitle} = $biblio->subtitle; + $ri{part_name} = $biblio->part_name; + $ri{part_number} = $biblio->part_number; $ri{itemauthor} = $biblio->author; $ri{itemcallnumber} = $item->itemcallnumber; $ri{dateaccessioned} = $item->dateaccessioned; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -788,7 +788,7 @@ - [% riloo.itemtitle | html %] + [% riloo.itemtitle | html %] [% FOREACH subt IN riloo.subtitle %] [% subt | html %] [% riloo.part_number | html %] [% riloo.part_name | html %][% END %] [% IF ( riloo.enumchron ) %]
--