Bug 6050 Make calls to GetItemsInfo consistent
[koha.git] / labels / label-create-xml.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use CGI;
7 use XML::Simple;
8 use Data::Dumper;
9
10 use C4::Debug;
11 use C4::Creators 1.000000;
12 use C4::Labels 1.000000;
13
14 my $cgi = new CGI;
15
16 my $batch_id    = $cgi->param('batch_id') if $cgi->param('batch_id');
17 my $template_id = $cgi->param('template_id') || undef;
18 my $layout_id   = $cgi->param('layout_id') || undef;
19 my @label_ids   = $cgi->param('label_id') if $cgi->param('label_id');
20 my @item_numbers  = $cgi->param('item_number') if $cgi->param('item_number');
21
22 my $items = undef;
23
24 my $xml_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
25 print $cgi->header(-type        => 'text/xml',
26                    -encoding    => 'utf-8',
27                    -attachment  => "$xml_file.xml",
28                     );
29
30 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
31 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
32 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
33
34
35 if (@label_ids) {
36     my $batch_items = $batch->get_attr('items');
37     grep {
38         my $label_id = $_;
39         push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
40     } @label_ids;
41 }
42 elsif (@item_numbers) {
43     grep {
44         push(@{$items}, {item_number => $_});
45     } @item_numbers;
46 }
47 else {
48     $items = $batch->get_attr('items');
49 }
50
51 my $xml = XML::Simple->new();
52 my $xml_data = {'label' => []};
53
54 my $item_count = 0;
55
56 XML_ITEMS:
57 foreach my $item (@$items) {
58     push(@{$xml_data->{'label'}}, {'item_number' => $item->{'item_number'}});
59     my $label = C4::Labels::Label->new(
60                                     batch_id            => $batch_id,
61                                     item_number         => $item->{'item_number'},
62                                     format_string       => $layout->get_attr('format_string'),
63                                       );
64     my $format_string = $layout->get_attr('format_string');
65     my @data_fields = map { $_ eq 'callnumber' ? 'itemcallnumber' : $_ } # see bug 5653 
66                       split(/, /, $format_string);
67     my $csv_data = $label->csv_data();
68     for (my $i = 0; $i <= (scalar(@data_fields) - 1); $i++) {
69         push(@{$xml_data->{'label'}[$item_count]->{$data_fields[$i]}}, $$csv_data[$i]);
70     }
71     $item_count++;
72 }
73
74 #die "XML DATA:\n" . Dumper($xml_data);
75
76 my $xml_out = $xml->XMLout($xml_data);
77 #die "XML OUT:\n" . Dumper($xml_out);
78 print $xml_out;
79
80 exit(1);
81
82 =head1 NAME
83
84 labels/label-create-xml.pl - A script for creating a xml export of labels and label batches in Koha
85
86 =head1 ABSTRACT
87
88 This script provides the means of producing a xml of labels for items either individually, in groups, or in batches from within Koha. This particular script is provided more as
89 a demonstration of the multitude of formats Koha labels could be exported in based on the current Label Creator API.
90
91 =head1 AUTHOR
92
93 Chris Nighswonger <cnighswonger AT foundations DOT edu>
94
95 =head1 COPYRIGHT
96
97 Copyright 2009 Foundations Bible College.
98
99 =head1 LICENSE
100
101 This file is part of Koha.
102
103 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
104 Foundation; either version 2 of the License, or (at your option) any later version.
105
106 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,
107 Fifth Floor, Boston, MA 02110-1301 USA.
108
109 =head1 DISCLAIMER OF WARRANTY
110
111 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
112 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
113