Bug 6992 - add missing tab chars to history.txt
[koha.git] / labels / label-create-pdf.pl
blobd45b5615cd7469006d5f0138aad89adaed097143
1 #!/usr/bin/perl
3 # Copyright Chris Nighswonger 2009
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use strict;
22 use warnings;
24 use CGI;
25 use C4::Auth;
26 use C4::Debug;
27 use C4::Creators 1.000000;
28 use C4::Labels 1.000000;
30 my $cgi = new CGI;
32 my ( $template, $loggedinuser, $cookie ) = get_template_and_user({
33 template_name => "labels/label-home.tt",
34 query => $cgi,
35 type => "intranet",
36 authnotrequired => 0,
37 flagsrequired => { tools => 'label_creator' },
38 debug => 1,
39 });
42 my $batch_id = $cgi->param('batch_id') if $cgi->param('batch_id');
43 my $template_id = $cgi->param('template_id') || undef;
44 my $layout_id = $cgi->param('layout_id') || undef;
45 my $start_label = $cgi->param('start_label') || 1;
46 my @label_ids = $cgi->param('label_id') if $cgi->param('label_id');
47 my @item_numbers = $cgi->param('item_number') if $cgi->param('item_number');
49 my $items = undef;
53 my $pdf_file = (@label_ids || @item_numbers ? "label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
54 print $cgi->header( -type => 'application/pdf',
55 -encoding => 'utf-8',
56 -attachment => "$pdf_file.pdf",
59 my $pdf = C4::Creators::PDF->new(InitVars => 0);
60 my $batch = C4::Labels::Batch->retrieve(batch_id => $batch_id);
61 my $template = C4::Labels::Template->retrieve(template_id => $template_id, profile_id => 1);
62 my $layout = C4::Labels::Layout->retrieve(layout_id => $layout_id);
64 sub _calc_next_label_pos {
65 my ($row_count, $col_count, $llx, $lly) = @_;
66 if ($col_count < $template->get_attr('cols')) {
67 $llx = ($llx + $template->get_attr('label_width') + $template->get_attr('col_gap'));
68 $col_count++;
70 else {
71 $llx = $template->get_attr('left_margin');
72 if ($row_count == $template->get_attr('rows')) {
73 $pdf->Page();
74 $lly = ($template->get_attr('page_height') - $template->get_attr('top_margin') - $template->get_attr('label_height'));
75 $row_count = 1;
77 else {
78 $lly = ($lly - $template->get_attr('row_gap') - $template->get_attr('label_height'));
79 $row_count++;
81 $col_count = 1;
83 return ($row_count, $col_count, $llx, $lly);
86 sub _print_text {
87 my $label_text = shift;
88 foreach my $text_line (@$label_text) {
89 my $pdf_font = $pdf->Font($text_line->{'font'});
90 my $line = "BT /$pdf_font $text_line->{'font_size'} Tf $text_line->{'text_llx'} $text_line->{'text_lly'} Td ($text_line->{'line'}) Tj ET";
91 $pdf->Add($line);
95 $| = 1;
97 # set the paper size
98 my $lowerLeftX = 0;
99 my $lowerLeftY = 0;
100 my $upperRightX = $template->get_attr('page_width');
101 my $upperRightY = $template->get_attr('page_height');
103 $pdf->Compress(1);
104 $pdf->Mbox($lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY);
106 my ($row_count, $col_count, $llx, $lly) = $template->get_label_position($start_label);
108 if (@label_ids) {
109 my $batch_items = $batch->get_attr('items');
110 grep {
111 my $label_id = $_;
112 push(@{$items}, grep{$_->{'label_id'} == $label_id;} @{$batch_items});
113 } @label_ids;
115 elsif (@item_numbers) {
116 grep {
117 push(@{$items}, {item_number => $_});
118 } @item_numbers;
120 else {
121 $items = $batch->get_attr('items');
124 LABEL_ITEMS:
125 foreach my $item (@{$items}) {
126 my ($barcode_llx, $barcode_lly, $barcode_width, $barcode_y_scale_factor) = 0,0,0,0;
127 if ($layout->get_attr('printing_type') eq 'ALT') { # we process the ALT style printing type here because it is not an atomic printing type
128 my $label_a = C4::Labels::Label->new(
129 batch_id => $batch_id,
130 item_number => $item->{'item_number'},
131 llx => $llx,
132 lly => $lly,
133 width => $template->get_attr('label_width'),
134 height => $template->get_attr('label_height'),
135 top_text_margin => $template->get_attr('top_text_margin'),
136 left_text_margin => $template->get_attr('left_text_margin'),
137 barcode_type => $layout->get_attr('barcode_type'),
138 printing_type => 'BIB',
139 guidebox => $layout->get_attr('guidebox'),
140 font => $layout->get_attr('font'),
141 font_size => $layout->get_attr('font_size'),
142 callnum_split => $layout->get_attr('callnum_split'),
143 justify => $layout->get_attr('text_justify'),
144 format_string => $layout->get_attr('format_string'),
145 text_wrap_cols => $layout->get_text_wrap_cols(label_width => $template->get_attr('label_width'), left_text_margin => $template->get_attr('left_text_margin')),
147 $pdf->Add($label_a->draw_guide_box) if $layout->get_attr('guidebox');
148 my $label_a_text = $label_a->create_label();
149 _print_text($label_a_text);
150 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos($row_count, $col_count, $llx, $lly);
151 my $label_b = C4::Labels::Label->new(
152 batch_id => $batch_id,
153 item_number => $item->{'item_number'},
154 llx => $llx,
155 lly => $lly,
156 width => $template->get_attr('label_width'),
157 height => $template->get_attr('label_height'),
158 top_text_margin => $template->get_attr('top_text_margin'),
159 left_text_margin => $template->get_attr('left_text_margin'),
160 barcode_type => $layout->get_attr('barcode_type'),
161 printing_type => 'BAR',
162 guidebox => $layout->get_attr('guidebox'),
163 font => $layout->get_attr('font'),
164 font_size => $layout->get_attr('font_size'),
165 callnum_split => $layout->get_attr('callnum_split'),
166 justify => $layout->get_attr('text_justify'),
167 format_string => $layout->get_attr('format_string'),
168 text_wrap_cols => $layout->get_text_wrap_cols(label_width => $template->get_attr('label_width'), left_text_margin => $template->get_attr('left_text_margin')),
170 $pdf->Add($label_b->draw_guide_box) if $layout->get_attr('guidebox');
171 my $label_b_text = $label_b->create_label();
172 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos($row_count, $col_count, $llx, $lly);
173 next LABEL_ITEMS;
175 else {
177 my $label = C4::Labels::Label->new(
178 batch_id => $batch_id,
179 item_number => $item->{'item_number'},
180 llx => $llx,
181 lly => $lly,
182 width => $template->get_attr('label_width'),
183 height => $template->get_attr('label_height'),
184 top_text_margin => $template->get_attr('top_text_margin'),
185 left_text_margin => $template->get_attr('left_text_margin'),
186 barcode_type => $layout->get_attr('barcode_type'),
187 printing_type => $layout->get_attr('printing_type'),
188 guidebox => $layout->get_attr('guidebox'),
189 font => $layout->get_attr('font'),
190 font_size => $layout->get_attr('font_size'),
191 callnum_split => $layout->get_attr('callnum_split'),
192 justify => $layout->get_attr('text_justify'),
193 format_string => $layout->get_attr('format_string'),
194 text_wrap_cols => $layout->get_text_wrap_cols(label_width => $template->get_attr('label_width'), left_text_margin => $template->get_attr('left_text_margin')),
196 $pdf->Add($label->draw_guide_box) if $layout->get_attr('guidebox');
197 my $label_text = $label->create_label();
198 _print_text($label_text) if $label_text;
199 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos($row_count, $col_count, $llx, $lly);
200 next LABEL_ITEMS;
203 $pdf->End();
205 exit(1);
207 =head1 NAME
209 labels/label-create-pdf.pl - A script for creating a pdf export of labels and label batches in Koha
211 =head1 ABSTRACT
213 This script provides the means of producing a pdf of labels for items either individually, in groups, or in batches from within Koha.
215 =head1 USAGE
217 This script is intended to be called as a cgi script although it could be easily modified to accept command line parameters. The script accepts four single
218 parameters and two "multiple" parameters as follows:
220 C<batch_id> A single valid batch id to export.
221 C<template_id> A single valid template id to be applied to the current export. This parameter is manditory.
222 C<layout_id> A single valid layout id to be applied to the current export. This parameter is manditory.
223 C<start_label> The number of the label on which to begin the export. This parameter is optional.
224 C<lable_ids> A single valid label id to export. Multiple label ids may be submitted to export multiple labels.
225 C<item_numbers> A single valid item number to export. Multiple item numbers may be submitted to export multiple items.
227 B<NOTE:> One of the C<batch_id>, C<label_ids>, or C<item_number> parameters is manditory. However, do not pass a combination of them or bad things might result.
229 example:
230 http://staff-client.kohadev.org/cgi-bin/koha/labels/label-create-pdf.pl?batch_id=1&template_id=1&layout_id=5&start_label=1
232 =head1 AUTHOR
234 Chris Nighswonger <cnighswonger AT foundations DOT edu>
236 =head1 COPYRIGHT
238 Copyright 2009 Foundations Bible College.
240 =head1 LICENSE
242 This file is part of Koha.
244 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
245 Foundation; either version 2 of the License, or (at your option) any later version.
247 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,
248 Fifth Floor, Boston, MA 02110-1301 USA.
250 =head1 DISCLAIMER OF WARRANTY
252 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
253 A PARTICULAR PURPOSE. See the GNU General Public License for more details.
255 =cut