@@ -, +, @@ part_name, part_number --- circ/overdue.pl | 6 ++++++ 1 file changed, 6 insertions(+) --- a/circ/overdue.pl +++ a/circ/overdue.pl @@ -245,6 +245,9 @@ if ($noreport) { items.holdingbranch, items.location, biblio.title, + biblio.subtitle, + biblio.part_number, + biblio.part_name, biblio.author, biblio.biblionumber, items.itemcallnumber, @@ -333,6 +336,9 @@ if ($noreport) { issuedate => output_pref({ dt => dt_from_string( $data->{issuedate} ), dateonly => 1 }), biblionumber => $data->{biblionumber}, title => $data->{title}, + subtitle => $data->{subtitle}, + part_number => $data->{part_number}, + part_name => $data->{part_name}, author => $data->{author}, homebranchcode => $data->{homebranch}, holdingbranchcode => $data->{holdingbranch}, --