Lines 433-439
if ( defined $input->param('CSVexport') && $input->param('CSVexport') eq 'on' )
Link Here
|
433 |
my $columns = Koha::Database::Columns->columns; |
433 |
my $columns = Koha::Database::Columns->columns; |
434 |
my @translated_keys; |
434 |
my @translated_keys; |
435 |
for my $key ( |
435 |
for my $key ( |
436 |
qw / biblioitems.title biblio.author |
436 |
qw / biblio.title biblio.author |
437 |
items.barcode items.itemnumber |
437 |
items.barcode items.itemnumber |
438 |
items.homebranch items.location items.ccode |
438 |
items.homebranch items.location items.ccode |
439 |
items.itemcallnumber items.notforloan |
439 |
items.itemcallnumber items.notforloan |
440 |
- |
|
|