fixing unopened closed tmpl_if
[koha.git] / labels / label-create-xml.pl
bloba6c580846d63bbcd618767bc2bb16d9e0fef5c05
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 use CGI;
7 use XML::Simple;
8 use Data::Dumper;
10 use C4::Debug;
11 use C4::Creators 1.000000;
12 use C4::Labels 1.000000;
14 my $cgi = new CGI;
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');
22 my $items = undef;
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",
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);
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;
42 elsif (@item_numbers) {
43 grep {
44 push(@{$items}, {item_number => $_});
45 } @item_numbers;
47 else {
48 $items = $batch->get_attr('items');
51 my $xml = XML::Simple->new();
52 my $xml_data = {'label' => []};
54 my $item_count = 0;
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'),
64 my $format_string = $layout->get_attr('format_string');
65 my @data_fields = split(/, /, $format_string);
66 my $csv_data = $label->csv_data();
67 for (my $i = 0; $i < (scalar(@data_fields) - 1); $i++) {
68 push(@{$xml_data->{'label'}[$item_count]->{$data_fields[$i]}}, $$csv_data[$i]);
70 $item_count++;
73 #die "XML DATA:\n" . Dumper($xml_data);
75 my $xml_out = $xml->XMLout($xml_data);
76 #die "XML OUT:\n" . Dumper($xml_out);
77 print $xml_out;
79 exit(1);
81 =head1 NAME
83 labels/label-create-xml.pl - A script for creating a xml export of labels and label batches in Koha
85 =head1 ABSTRACT
87 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
88 a demonstration of the multitude of formats Koha labels could be exported in based on the current Label Creator API.
90 =head1 AUTHOR
92 Chris Nighswonger <cnighswonger AT foundations DOT edu>
94 =head1 COPYRIGHT
96 Copyright 2009 Foundations Bible College.
98 =head1 LICENSE
100 This file is part of Koha.
102 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
103 Foundation; either version 2 of the License, or (at your option) any later version.
105 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,
106 Fifth Floor, Boston, MA 02110-1301 USA.
108 =head1 DISCLAIMER OF WARRANTY
110 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
111 A PARTICULAR PURPOSE. See the GNU General Public License for more details.