Bug 29723: Add a "Configure table" button for KohaTable tables
[koha.git] / labels / label-create-xml.pl
1 #!/usr/bin/perl
2
3 # Copyright Koha development team 2011
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19 #
20
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24 use XML::Simple;
25
26 use C4::Labels;
27
28 my $cgi = CGI->new;
29
30 my $batch_id;
31 my @label_ids;
32 my @item_numbers;
33 $batch_id    = $cgi->param('batch_id') if $cgi->param('batch_id');
34 my $template_id = $cgi->param('template_id') || undef;
35 my $layout_id   = $cgi->param('layout_id') || undef;
36 @label_ids   = $cgi->multi_param('label_id') if $cgi->param('label_id');
37 @item_numbers  = $cgi->multi_param('item_number') if $cgi->param('item_number');
38
39 my $items = undef;
40
41 my $xml_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
42 print $cgi->header(-type        => 'text/xml',
43                    -encoding    => 'utf-8',
44                    -attachment  => "$xml_file.xml",
45                     );
46
47 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
48 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
49 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
50
51
52 if (@label_ids) {
53     my $batch_items = $batch->get_attr('items');
54     grep {
55         my $label_id = $_;
56         push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
57     } @label_ids;
58 }
59 elsif (@item_numbers) {
60     grep {
61         push(@{$items}, {item_number => $_});
62     } @item_numbers;
63 }
64 else {
65     $items = $batch->get_attr('items');
66 }
67
68 my $xml = XML::Simple->new();
69 my $xml_data = {'label' => []};
70
71 my $item_count = 0;
72
73 foreach my $item (@$items) {
74     push(@{$xml_data->{'label'}}, {'item_number' => $item->{'item_number'}});
75     my $label = C4::Labels::Label->new(
76                                     batch_id            => $batch_id,
77                                     item_number         => $item->{'item_number'},
78                                     format_string       => $layout->get_attr('format_string'),
79                                       );
80     my $format_string = $layout->get_attr('format_string');
81     my @data_fields = map { $_ eq 'callnumber' ? 'itemcallnumber' : $_ } # see bug 5653 
82                       split(/, /, $format_string);
83     my $csv_data = $label->csv_data();
84     for (my $i = 0; $i <= (scalar(@data_fields) - 1); $i++) {
85         push(@{$xml_data->{'label'}[$item_count]->{$data_fields[$i]}}, $$csv_data[$i]);
86     }
87     $item_count++;
88 }
89
90 #die "XML DATA:\n" . Dumper($xml_data);
91
92 my $xml_out = $xml->XMLout($xml_data);
93 #die "XML OUT:\n" . Dumper($xml_out);
94 print $xml_out;
95
96 __END__
97
98 =head1 NAME
99
100 labels/label-create-xml.pl - A script for creating a xml export of labels and label batches in Koha
101
102 =head1 ABSTRACT
103
104 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
105 a demonstration of the multitude of formats Koha labels could be exported in based on the current Label Creator API.
106
107 =head1 AUTHOR
108
109 Chris Nighswonger <cnighswonger AT foundations DOT edu>
110
111 =head1 COPYRIGHT
112
113 Copyright 2009 Foundations Bible College.
114
115 =head1 LICENSE
116
117 This file is part of Koha.
118
119 Koha is free software; you can redistribute it and/or modify it
120 under the terms of the GNU General Public License as published by
121 the Free Software Foundation; either version 3 of the License, or
122 (at your option) any later version.
123
124 Koha is distributed in the hope that it will be useful, but
125 WITHOUT ANY WARRANTY; without even the implied warranty of
126 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
127 GNU General Public License for more details.
128
129 You should have received a copy of the GNU General Public License
130 along with Koha; if not, see <http://www.gnu.org/licenses>.
131
132 =head1 DISCLAIMER OF WARRANTY
133
134 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
135 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
136
137 =cut