@@ -, +, @@ export - add itemtype - Go to overdues page : /cgi-bin/koha/circ/overdue.pl - Find some overdues - Click on "Download file of displayed overdues" - Open generated CSV --- circ/overdue.pl | 4 ++++ 1 file changed, 4 insertions(+) --- a/circ/overdue.pl +++ a/circ/overdue.pl @@ -270,6 +270,8 @@ if ($noreport) { items.barcode, items.homebranch, items.holdingbranch, + items.itype, + biblioitems.itemtype, biblio.title, biblio.author, borrowers.borrowernumber, @@ -371,6 +373,7 @@ if ($noreport) { replacementprice => $data->{replacementprice}, enumchron => $data->{enumchron}, patron_attr_value_loop => \@patron_attr_value_loop, + itemtype => C4::Context->preference('item-level_itypes') ? $data->{itype} : $data->{itemtype}, }; } @@ -441,6 +444,7 @@ sub build_csv { duedate title author + itemtype cardnumber borrowertitle firstname --