Replace itemnumber by barcode in links of patron modification log
[koha.git] / labels / label-create-xml.pl
blob7b108ce32c2c616ea636fbc398fa184b303e5609
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 XML::Simple;
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 @labels_id;
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 $xml_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
46 print $cgi->header(-type => 'text/xml',
47 -encoding => 'utf-8',
48 -attachment => "$xml_file.xml",
51 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
52 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
53 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
56 if (@label_ids) {
57 my $batch_items = $batch->get_attr('items');
58 grep {
59 my $label_id = $_;
60 push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
61 } @label_ids;
63 elsif (@item_numbers) {
64 grep {
65 push(@{$items}, {item_number => $_});
66 } @item_numbers;
68 else {
69 $items = $batch->get_attr('items');
72 my $xml = XML::Simple->new();
73 my $xml_data = {'label' => []};
75 my $item_count = 0;
77 XML_ITEMS:
78 foreach my $item (@$items) {
79 push(@{$xml_data->{'label'}}, {'item_number' => $item->{'item_number'}});
80 my $label = C4::Labels::Label->new(
81 batch_id => $batch_id,
82 item_number => $item->{'item_number'},
83 format_string => $layout->get_attr('format_string'),
85 my $format_string = $layout->get_attr('format_string');
86 my @data_fields = map { $_ eq 'callnumber' ? 'itemcallnumber' : $_ } # see bug 5653
87 split(/, /, $format_string);
88 my $csv_data = $label->csv_data();
89 for (my $i = 0; $i <= (scalar(@data_fields) - 1); $i++) {
90 push(@{$xml_data->{'label'}[$item_count]->{$data_fields[$i]}}, $$csv_data[$i]);
92 $item_count++;
95 #die "XML DATA:\n" . Dumper($xml_data);
97 my $xml_out = $xml->XMLout($xml_data);
98 #die "XML OUT:\n" . Dumper($xml_out);
99 print $xml_out;
101 exit(1);
103 =head1 NAME
105 labels/label-create-xml.pl - A script for creating a xml export of labels and label batches in Koha
107 =head1 ABSTRACT
109 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
110 a demonstration of the multitude of formats Koha labels could be exported in based on the current Label Creator API.
112 =head1 AUTHOR
114 Chris Nighswonger <cnighswonger AT foundations DOT edu>
116 =head1 COPYRIGHT
118 Copyright 2009 Foundations Bible College.
120 =head1 LICENSE
122 This file is part of Koha.
124 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
125 Foundation; either version 2 of the License, or (at your option) any later version.
127 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,
128 Fifth Floor, Boston, MA 02110-1301 USA.
130 =head1 DISCLAIMER OF WARRANTY
132 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
133 A PARTICULAR PURPOSE. See the GNU General Public License for more details.