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
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.
32 my ( undef, $loggedinuser, $cookie ) = get_template_and_user
({
33 template_name
=> "labels/label-home.tt",
37 flagsrequired
=> { tools
=> 'label_creator' },
44 $batch_id = $cgi->param('batch_id') if $cgi->param('batch_id');
45 my $template_id = $cgi->param('template_id') || undef;
46 my $layout_id = $cgi->param('layout_id') || undef;
47 my $start_label = $cgi->param('start_label') || 1;
48 @label_ids = $cgi->param('label_id') if $cgi->param('label_id');
49 @item_numbers = $cgi->param('item_number') if $cgi->param('item_number');
55 my $pdf_file = (@label_ids || @item_numbers ?
"label_single_" . scalar(@label_ids || @item_numbers) : "label_batch_$batch_id");
56 print $cgi->header( -type
=> 'application/pdf',
58 -attachment
=> "$pdf_file.pdf",
61 our $pdf = C4
::Creators
::PDF
->new(InitVars
=> 0);
62 my $batch = C4
::Labels
::Batch
->retrieve(batch_id
=> $batch_id);
63 our $template = C4
::Labels
::Template
->retrieve(template_id
=> $template_id, profile_id
=> 1);
64 my $layout = C4
::Labels
::Layout
->retrieve(layout_id
=> $layout_id);
66 sub _calc_next_label_pos
{
67 my ($row_count, $col_count, $llx, $lly) = @_;
68 if ($col_count < $template->get_attr('cols')) {
69 $llx = ($llx + $template->get_attr('label_width') + $template->get_attr('col_gap'));
73 $llx = $template->get_attr('left_margin');
74 if ($row_count == $template->get_attr('rows')) {
76 $lly = ($template->get_attr('page_height') - $template->get_attr('top_margin') - $template->get_attr('label_height'));
80 $lly = ($lly - $template->get_attr('row_gap') - $template->get_attr('label_height'));
85 return ($row_count, $col_count, $llx, $lly);
89 my $label_text = shift;
90 foreach my $text_line (@
$label_text) {
91 $pdf->Font($text_line->{'font'});
92 $pdf->FontSize( $text_line->{'font_size'} );
93 $pdf->Text( $text_line->{'text_llx'}, $text_line->{'text_lly'}, $text_line->{'line'} );
102 my $upperRightX = $template->get_attr('page_width');
103 my $upperRightY = $template->get_attr('page_height');
106 $pdf->Mbox($lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY);
108 my ($row_count, $col_count, $llx, $lly) = $template->get_label_position($start_label);
111 my $batch_items = $batch->get_attr('items');
114 push(@
{$items}, grep{$_->{'label_id'} == $label_id;} @
{$batch_items});
117 elsif (@item_numbers) {
119 push(@
{$items}, {item_number
=> $_});
123 $items = $batch->get_attr('items');
127 foreach my $item (@
{$items}) {
128 my ($barcode_llx, $barcode_lly, $barcode_width, $barcode_y_scale_factor) = 0,0,0,0;
129 if ($layout->get_attr('printing_type') eq 'ALT') { # we process the ALT style printing type here because it is not an atomic printing type
130 my $label_a = C4
::Labels
::Label
->new(
131 batch_id
=> $batch_id,
132 item_number
=> $item->{'item_number'},
135 width
=> $template->get_attr('label_width'),
136 height
=> $template->get_attr('label_height'),
137 top_text_margin
=> $template->get_attr('top_text_margin'),
138 left_text_margin
=> $template->get_attr('left_text_margin'),
139 barcode_type
=> $layout->get_attr('barcode_type'),
140 printing_type
=> 'BIB',
141 guidebox
=> $layout->get_attr('guidebox'),
142 font
=> $layout->get_attr('font'),
143 font_size
=> $layout->get_attr('font_size'),
144 callnum_split
=> $layout->get_attr('callnum_split'),
145 justify
=> $layout->get_attr('text_justify'),
146 format_string
=> $layout->get_attr('format_string'),
147 text_wrap_cols
=> $layout->get_text_wrap_cols(label_width
=> $template->get_attr('label_width'), left_text_margin
=> $template->get_attr('left_text_margin')),
149 $pdf->Add($label_a->draw_guide_box) if $layout->get_attr('guidebox');
150 my $label_a_text = $label_a->create_label();
151 _print_text
($label_a_text);
152 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos
($row_count, $col_count, $llx, $lly);
153 my $label_b = C4
::Labels
::Label
->new(
154 batch_id
=> $batch_id,
155 item_number
=> $item->{'item_number'},
158 width
=> $template->get_attr('label_width'),
159 height
=> $template->get_attr('label_height'),
160 top_text_margin
=> $template->get_attr('top_text_margin'),
161 left_text_margin
=> $template->get_attr('left_text_margin'),
162 barcode_type
=> $layout->get_attr('barcode_type'),
163 printing_type
=> 'BAR',
164 guidebox
=> $layout->get_attr('guidebox'),
165 font
=> $layout->get_attr('font'),
166 font_size
=> $layout->get_attr('font_size'),
167 callnum_split
=> $layout->get_attr('callnum_split'),
168 justify
=> $layout->get_attr('text_justify'),
169 format_string
=> $layout->get_attr('format_string'),
170 text_wrap_cols
=> $layout->get_text_wrap_cols(label_width
=> $template->get_attr('label_width'), left_text_margin
=> $template->get_attr('left_text_margin')),
172 $pdf->Add($label_b->draw_guide_box) if $layout->get_attr('guidebox');
173 my $label_b_text = $label_b->create_label();
174 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos
($row_count, $col_count, $llx, $lly);
179 my $label = C4
::Labels
::Label
->new(
180 batch_id
=> $batch_id,
181 item_number
=> $item->{'item_number'},
184 width
=> $template->get_attr('label_width'),
185 height
=> $template->get_attr('label_height'),
186 top_text_margin
=> $template->get_attr('top_text_margin'),
187 left_text_margin
=> $template->get_attr('left_text_margin'),
188 barcode_type
=> $layout->get_attr('barcode_type'),
189 printing_type
=> $layout->get_attr('printing_type'),
190 guidebox
=> $layout->get_attr('guidebox'),
191 font
=> $layout->get_attr('font'),
192 font_size
=> $layout->get_attr('font_size'),
193 callnum_split
=> $layout->get_attr('callnum_split'),
194 justify
=> $layout->get_attr('text_justify'),
195 format_string
=> $layout->get_attr('format_string'),
196 text_wrap_cols
=> $layout->get_text_wrap_cols(label_width
=> $template->get_attr('label_width'), left_text_margin
=> $template->get_attr('left_text_margin')),
198 $pdf->Add($label->draw_guide_box) if $layout->get_attr('guidebox');
199 my $label_text = $label->create_label();
200 _print_text
($label_text) if $label_text;
201 ($row_count, $col_count, $llx, $lly) = _calc_next_label_pos
($row_count, $col_count, $llx, $lly);
211 labels/label-create-pdf.pl - A script for creating a pdf export of labels and label batches in Koha
215 This script provides the means of producing a pdf of labels for items either individually, in groups, or in batches from within Koha.
219 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
220 parameters and two "multiple" parameters as follows:
222 C<batch_id> A single valid batch id to export.
223 C<template_id> A single valid template id to be applied to the current export. This parameter is manditory.
224 C<layout_id> A single valid layout id to be applied to the current export. This parameter is manditory.
225 C<start_label> The number of the label on which to begin the export. This parameter is optional.
226 C<lable_ids> A single valid label id to export. Multiple label ids may be submitted to export multiple labels.
227 C<item_numbers> A single valid item number to export. Multiple item numbers may be submitted to export multiple items.
229 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.
232 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
236 Chris Nighswonger <cnighswonger AT foundations DOT edu>
240 Copyright 2009 Foundations Bible College.
244 This file is part of Koha.
246 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
247 Foundation; either version 2 of the License, or (at your option) any later version.
249 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,
250 Fifth Floor, Boston, MA 02110-1301 USA.
252 =head1 DISCLAIMER OF WARRANTY
254 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
255 A PARTICULAR PURPOSE. See the GNU General Public License for more details.