Replace itemnumber by barcode in links of patron modification log
[koha.git] / labels / label-create-csv.pl
blob6e2263f5d318104467a78972ce5ce479565da8ed
1 #!/usr/bin/perl
3 # Copyright Koha development team 2011
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
21 use strict;
22 use warnings;
24 use CGI;
25 use Text::CSV_XS;
26 use Data::Dumper;
28 use C4::Debug;
29 use C4::Creators 1.000000;
30 use C4::Labels 1.000000;
32 my $cgi = new CGI;
34 my $batch_id;
35 my @label_ids;
36 my @item_numbers;
37 $batch_id = $cgi->param('batch_id') if $cgi->param('batch_id');
38 my $template_id = $cgi->param('template_id') || undef;
39 my $layout_id = $cgi->param('layout_id') || undef;
40 @label_ids = $cgi->param('label_id') if $cgi->param('label_id');
41 @item_numbers = $cgi->param('item_number') if $cgi->param('item_number');
43 my $items = undef;
45 my $csv_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
46 print $cgi->header(-type => 'application/vnd.sun.xml.calc',
47 -encoding => 'utf-8',
48 -attachment => "$csv_file.csv",
52 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
53 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
54 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
57 if (@label_ids) {
58 my $batch_items = $batch->get_attr('items');
59 grep {
60 my $label_id = $_;
61 push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
62 } @label_ids;
64 elsif (@item_numbers) {
65 grep {
66 push(@{$items}, {item_number => $_});
67 } @item_numbers;
69 else {
70 $items = $batch->get_attr('items');
73 my $csv = Text::CSV_XS->new();
75 CSV_ITEMS:
76 foreach my $item (@$items) {
77 my $label = C4::Labels::Label->new(
78 batch_id => $batch_id,
79 item_number => $item->{'item_number'},
80 format_string => $layout->get_attr('format_string'),
82 my $csv_fields = $label->csv_data();
83 if ($csv->combine(@$csv_fields)) {
84 print $csv->string() . "\n";
86 else {
87 warn sprintf('Text::CSV_XS->combine() returned the following error: %s', $csv->error_input);
88 next CSV_ITEMS;
92 exit(1);
94 =head1 NAME
96 labels/label-create-csv.pl - A script for creating a csv export of labels and label batches in Koha
98 =head1 ABSTRACT
100 This script provides the means of producing a csv of labels for items either individually, in groups, or in batches from within Koha.
102 =head1 AUTHOR
104 Chris Nighswonger <cnighswonger AT foundations DOT edu>
106 =head1 COPYRIGHT
108 Copyright 2009 Foundations Bible College.
110 =head1 LICENSE
112 This file is part of Koha.
114 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
115 Foundation; either version 2 of the License, or (at your option) any later version.
117 You should have received a copy of the GNU General Public License along with Koha; if not, write to the Free Software Foundation, Inc., 51 Franklin Street,
118 Fifth Floor, Boston, MA 02110-1301 USA.
120 =head1 DISCLAIMER OF WARRANTY
122 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
123 A PARTICULAR PURPOSE. See the GNU General Public License for more details.