@@ -, +, @@ 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 +++ 1 file changed, 3 insertions(+) --- 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; --