[24/40] Adding single/multiple label printing to label export code and interface.
[koha.git] / labels / label-create-xml.pl
1 #!/usr/bin/perl
2 # Copyright 2009 Foundations Bible College.
3 #
4 # This file is part of Koha.
5 #
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
10 #
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA  02111-1307 USA
18
19 use strict;
20 use warnings;
21
22 use CGI;
23 use Sys::Syslog qw(syslog);
24 use XML::Simple;
25 use Data::Dumper;
26
27 use C4::Debug;
28 use C4::Labels::Batch 1.000000;
29 use C4::Labels::Template 1.000000;
30 use C4::Labels::Layout 1.000000;
31 use C4::Labels::PDF 1.000000;
32 use C4::Labels::Label 1.000000;
33
34 =head
35
36 =cut
37
38 my $cgi = new CGI;
39
40 my $batch_id    = $cgi->param('batch_id') if $cgi->param('batch_id');
41 my $template_id = $cgi->param('template_id') || undef;
42 my $layout_id   = $cgi->param('layout_id') || undef;
43 my @label_ids   = $cgi->param('label_id') if $cgi->param('label_id');
44 my @item_numbers  = $cgi->param('item_number') if $cgi->param('item_number');
45
46 my $items = undef;
47
48 my $xml_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
49 print $cgi->header(-type        => 'text/xml',
50                    -encoding    => 'utf-8',
51                    -attachment  => "$xml_file.xml",
52                     );
53
54 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
55 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
56 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
57
58
59 if (@label_ids) {
60     my $batch_items = $batch->get_attr('items');
61     grep {
62         my $label_id = $_;
63         push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
64     } @label_ids;
65 }
66 elsif (@item_numbers) {
67     grep {
68         push(@{$items}, {item_number => $_});
69     } @item_numbers;
70 }
71 else {
72     $items = $batch->get_attr('items');
73 }
74
75 my $xml = XML::Simple->new();
76 my $xml_data = {'label' => []};
77
78 my $item_count = 0;
79
80 XML_ITEMS:
81 foreach my $item (@$items) {
82     push(@{$xml_data->{'label'}}, {'item_number' => $item->{'item_number'}});
83     my $label = C4::Labels::Label->new(
84                                     batch_id            => $batch_id,
85                                     item_number         => $item->{'item_number'},
86                                     format_string       => $layout->get_attr('format_string'),
87                                       );
88     my $format_string = $layout->get_attr('format_string');
89     my @data_fields = split(/, /, $format_string);
90     my $csv_data = $label->csv_data();
91     for (my $i = 0; $i < (scalar(@data_fields) - 1); $i++) {
92         push(@{$xml_data->{'label'}[$item_count]->{$data_fields[$i]}}, $$csv_data[$i]);
93     }
94     $item_count++;
95 #    else {
96 #        syslog("LOG_ERR", "labels/label-create-csv.pl : Text::CSV_XS->combine() returned the following error: %s", $csv->error_input);
97 #        next CSV_ITEMS;
98 #    }
99 }
100
101 #die "XML DATA:\n" . Dumper($xml_data);
102
103 my $xml_out = $xml->XMLout($xml_data);
104 #die "XML OUT:\n" . Dumper($xml_out);
105 print $xml_out;
106
107 exit(1);