11 use C4
::Labels
::Batch
1.000000;
12 use C4
::Labels
::Template
1.000000;
13 use C4
::Labels
::Layout
1.000000;
14 use C4
::Creators
::PDF
1.000000;
15 use C4
::Labels
::Label
1.000000;
23 my $batch_id = $cgi->param('batch_id') if $cgi->param('batch_id');
24 my $template_id = $cgi->param('template_id') || undef;
25 my $layout_id = $cgi->param('layout_id') || undef;
26 my @label_ids = $cgi->param('label_id') if $cgi->param('label_id');
27 my @item_numbers = $cgi->param('item_number') if $cgi->param('item_number');
31 my $csv_file = (@label_ids || @item_numbers ?
"label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
32 print $cgi->header(-type
=> 'application/vnd.sun.xml.calc',
34 -attachment
=> "$csv_file.csv",
38 my $batch = C4
::Labels
::Batch
->retrieve(batch_id
=> $batch_id);
39 my $template = C4
::Labels
::Template
->retrieve(template_id
=> $template_id, profile_id
=> 1);
40 my $layout = C4
::Labels
::Layout
->retrieve(layout_id
=> $layout_id);
44 my $batch_items = $batch->get_attr('items');
47 push(@
{$items}, grep{$_->{'label_id'} == $label_id;} @
{$batch_items});
50 elsif (@item_numbers) {
52 push(@
{$items}, {item_number
=> $_});
56 $items = $batch->get_attr('items');
59 my $csv = Text
::CSV_XS
->new();
62 foreach my $item (@
$items) {
63 my $label = C4
::Labels
::Label
->new(
64 batch_id
=> $batch_id,
65 item_number
=> $item->{'item_number'},
66 format_string
=> $layout->get_attr('format_string'),
68 my $csv_fields = $label->csv_data();
69 if ($csv->combine(@
$csv_fields)) {
70 print $csv->string() . "\n";
73 warn sprintf('Text::CSV_XS->combine() returned the following error: %s', $csv->error_input);
82 labels/label-create-csv.pl - A script for creating a csv export of labels and label batches in Koha
86 This script provides the means of producing a csv of labels for items either individually, in groups, or in batches from within Koha.
90 Chris Nighswonger <cnighswonger AT foundations DOT edu>
94 Copyright 2009 Foundations Bible College.
98 This file is part of Koha.
100 Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software
101 Foundation; either version 2 of the License, or (at your option) any later version.
103 You should have received a copy of the GNU General Public License along with Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
104 Suite 330, Boston, MA 02111-1307 USA
106 =head1 DISCLAIMER OF WARRANTY
108 Koha is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
109 A PARTICULAR PURPOSE. See the GNU General Public License for more details.