Bug Fixing duplicate = in labels management.
[koha.git] / labels / label-print-pdf.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use CGI;
6 use C4::Labels;
7 use C4::Auth;
8 use C4::Output;
9 use C4::Context;
10 use C4::Members;
11 use C4::Branch;
12 use HTML::Template::Pro;
13 use PDF::Reuse;
14 use PDF::Reuse::Barcode;
15 use POSIX;
16 use Data::Dumper;
17
18 my $DEBUG = 0;
19 my $DEBUG_LPT = 0;
20
21 my $htdocs_path = C4::Context->config('intrahtdocs');
22 my $cgi         = new CGI;
23 print $cgi->header( -type => 'application/pdf', -attachment => 'barcode.pdf' );
24
25 my $spine_text = "";
26
27 # get the printing settings
28 my $template    = GetActiveLabelTemplate();
29 my $conf_data   = get_label_options();
30 my $profile     = GetAssociatedProfile($template->{'tmpl_id'});
31
32 my $batch_id =   $cgi->param('batch_id');
33 my @resultsloop;
34
35 my $batch_type   = $conf_data->{'type'};
36 my $barcodetype  = $conf_data->{'barcodetype'};
37 my $printingtype = $conf_data->{'printingtype'};
38 my $guidebox     = $conf_data->{'guidebox'};
39 my $start_label  = $conf_data->{'startlabel'};
40 if ($cgi->param('startlabel')) {
41         $start_label = $cgi->param('startlabel');       # A bit of a hack to allow setting the starting label from the address bar... -fbcit
42     }
43 warn "Starting on label #$start_label" if $DEBUG;
44 my $units        = $template->{'units'};
45
46 if ($printingtype eq 'PATCRD') {
47     @resultsloop = GetPatronCardItems($batch_id);
48 } else {
49     @resultsloop = GetLabelItems($batch_id);
50 }
51
52 #warn "UNITS $units";
53 #warn "fontsize = $fontsize";
54 #warn Dumper $template;
55
56 my $unitvalue = GetUnitsValue($units);
57 my $prof_unitvalue = GetUnitsValue($profile->{'unit'});
58
59 warn "Template units: $units which converts to $unitvalue PostScript Points" if $DEBUG;
60 warn "Profile units: $profile->{'unit'} which converts to $prof_unitvalue PostScript Points" if $DEBUG;
61
62 my $tmpl_code = $template->{'tmpl_code'};
63 my $tmpl_desc = $template->{'tmpl_desc'};
64
65 my $page_height  = ( $template->{'page_height'} * $unitvalue );
66 my $page_width   = ( $template->{'page_width'} * $unitvalue );
67 my $label_height = ( $template->{'label_height'} * $unitvalue );
68 my $label_width  = ( $template->{'label_width'} * $unitvalue );
69 my $spine_width  = ( $template->{'label_width'} * $unitvalue );
70 my $circ_width   = ( $template->{'label_width'} * $unitvalue );
71 my $top_margin   = ( $template->{'topmargin'} * $unitvalue );
72 my $left_margin  = ( $template->{'leftmargin'} * $unitvalue );
73 my $colspace     = ( $template->{'colgap'} * $unitvalue );
74 my $rowspace     = ( $template->{'rowgap'} * $unitvalue );
75
76 warn "Converted dimensions are:" if $DEBUG;
77 warn "pghth=$page_height, pgwth=$page_width, lblhth=$label_height, lblwth=$label_width, spinwth=$spine_width, circwth=$circ_width, tpmar=$top_margin, lmar=$left_margin, colsp=$colspace, rowsp=$rowspace" if $DEBUG;
78
79 my $label_cols = $template->{'cols'};
80 my $label_rows = $template->{'rows'};
81
82 my $margin           = $top_margin;
83 my $left_text_margin = 3;       # FIXME: This value should not be hardcoded
84 my $str;
85
86 prInitVars();
87 $| = 1;
88 prFile();
89
90 # Some peritent notes from PDF::Reuse regarding prFont()...
91 # If a font wasn't found, Helvetica will be set.
92 # These names are always recognized: Times-Roman, Times-Bold, Times-Italic, Times-BoldItalic, Courier, Courier-Bold,
93 #   Courier-Oblique, Courier-BoldOblique, Helvetica, Helvetica-Bold, Helvetica-Oblique, Helvetica-BoldOblique
94 # They can be abbreviated: TR, TB, TI, TBI, C, CB, CO, CBO, H, HB, HO, HBO
95
96 my $fontsize    = $template->{'fontsize'};
97 my $fontname    = $template->{'font'};
98
99 my $text_wrap_cols = GetTextWrapCols( $fontname, $fontsize, $label_width, $left_text_margin );
100
101 #warn $label_cols, $label_rows;
102
103 # set the paper size
104 my $lowerLeftX  = 0;
105 my $lowerLeftY  = 0;
106 my $upperRightX = $page_width;
107 my $upperRightY = $page_height;
108
109 prMbox( $lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY );
110
111 my $codetype; # = 'Code39';
112
113 #do page border
114 # drawbox( $lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY );
115
116 # draw margin box for alignment page
117 drawbox( ($left_margin), ($top_margin), ($page_width-(2*$left_margin)), ($page_height-(2*$top_margin)) ) if $DEBUG_LPT;
118
119 # Adjustments for image position and creep -fbcit
120 # NOTE: *All* of these factor in to image position and creep. Keep this in mind when makeing adjustments.
121 # Suggested proceedure: Adjust margins until both top and left margins are correct. Then adjust the label
122 # height and width to correct label creep across and down page. Units are PostScript Points (72 per inch).
123
124 warn "Active profile: " . ($profile->{'prof_id'}?$profile->{'prof_id'}:"None") if $DEBUG;
125
126 if ( $DEBUG ) {
127     warn "-------------------------INITIAL VALUES-----------------------------";
128     warn "top margin = $top_margin points\n";
129     warn "left margin = $left_margin points\n";
130     warn "label height = $label_height points\n";
131     warn "label width = $label_width points\n";
132 }
133
134 if ( $profile->{'prof_id'} ) {
135     $top_margin = $top_margin + ($profile->{'offset_vert'} * $prof_unitvalue);    #  controls vertical offset
136     $label_height = $label_height + ($profile->{'creep_vert'} * $prof_unitvalue);    # controls vertical creep
137     $left_margin = $left_margin + ($profile->{'offset_horz'} * $prof_unitvalue);    # controls horizontal offset
138     $label_width = $label_width + ($profile->{'creep_horz'} * $prof_unitvalue);    # controls horizontal creep
139 }
140
141 if ( $DEBUG && $profile->{'prof_id'} ) {
142     warn "-------------------------ADJUSTED VALUES-----------------------------";
143     warn "top margin = $top_margin points\n";
144     warn "left margin = $left_margin points\n";
145     warn "label height = $label_height points\n";
146     warn "label width = $label_width points\n";
147 } elsif ( $DEBUG ) {
148     warn "No profile associated so no adjustment applied.";
149 }
150
151 my ( $i, $i2 );    # loop counters
152
153 #warn " $lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY";
154 #warn "$label_rows, $label_cols\n";
155 #warn "$label_height, $label_width\n";
156 #warn "$page_height, $page_width\n";
157
158 my ( $rowcount, $colcount, $x_pos, $y_pos, $rowtemp, $coltemp );
159
160 if ( $start_label eq 1 ) {
161     $rowcount = 1;
162     $colcount = 1;
163     $x_pos    = $left_margin;
164     $y_pos    = ( $page_height - $top_margin - $label_height );
165 }
166
167 else {
168     $rowcount = ceil( $start_label / $label_cols );
169     $colcount = ( $start_label - ( ( $rowcount - 1 ) * $label_cols ) );
170     $x_pos = $left_margin + ( $label_width * ( $colcount - 1 ) ) +
171       ( $colspace * ( $colcount - 1 ) );
172     $y_pos = $page_height - $top_margin - ( $label_height * $rowcount ) -
173       ( $rowspace * ( $rowcount - 1 ) );
174     warn "Start label specified: $start_label Beginning in row $rowcount, column $colcount" if $DEBUG;
175     warn "X position = $x_pos Y position = $y_pos" if $DEBUG;
176     warn "Rowspace = $rowspace Label height = $label_height" if $DEBUG;
177 }
178
179 #
180 #    main foreach loop
181 #
182
183 foreach my $item (@resultsloop) {
184     warn "Label parameters: xpos=$x_pos, ypos=$y_pos, lblwid=$label_width, lblhig=$label_height" if $DEBUG;
185     if ( $printingtype eq 'BAR' ) {
186         drawbox( $x_pos, $y_pos, $label_width, $label_height ) if $guidebox;
187         DrawBarcode( $x_pos, $y_pos, $label_height, $label_width, $item->{'barcode'},
188             $barcodetype );
189         CalcNextLabelPos();
190     }
191     elsif ( $printingtype eq 'BARBIB' ) {
192         drawbox( $x_pos, $y_pos, $label_width, $label_height ) if $guidebox;
193
194         # reposoitioning barcode up the top of label
195         my $barcode_height = ($label_height / 1.5 );    ## scaling voodoo
196         my $text_height    = $label_height / 2;
197         my $barcode_y      = $y_pos + ( $label_height / 2.5  );   ## scaling voodoo
198
199         DrawBarcode( $x_pos, $barcode_y, $barcode_height, $label_width,
200             $item->{'barcode'}, $barcodetype );
201         DrawSpineText( $x_pos, $y_pos, $label_height, $label_width, $fontname, $fontsize,
202             $left_text_margin, $text_wrap_cols, \$item, \$conf_data, $printingtype );
203
204         CalcNextLabelPos();
205
206     }    # correct
207     elsif ( $printingtype eq 'BIBBAR' ) {
208         drawbox( $x_pos, $y_pos, $label_width, $label_height ) if $guidebox;
209         my $barcode_height = $label_height / 2;
210         DrawBarcode( $x_pos, $y_pos, $barcode_height, $label_width, $item->{'barcode'},
211             $barcodetype );
212         DrawSpineText( $x_pos, $y_pos, $label_height, $label_width, $fontname, $fontsize,
213             $left_text_margin, $text_wrap_cols, \$item, \$conf_data, $printingtype );
214
215         CalcNextLabelPos();
216     }
217
218     elsif ( $printingtype eq 'ALT' ) {
219         drawbox( $x_pos, $y_pos, $label_width, $label_height ) if $guidebox;
220         DrawBarcode( $x_pos, $y_pos, $label_height, $label_width, $item->{'barcode'},
221             $barcodetype );
222         CalcNextLabelPos();
223         drawbox( $x_pos, $y_pos, $label_width, $label_height ) if $guidebox;
224         DrawSpineText( $x_pos, $y_pos, $label_height, $label_width, $fontname, $fontsize,
225             $left_text_margin, $text_wrap_cols, \$item, \$conf_data, $printingtype );
226
227         CalcNextLabelPos();
228     }
229
230
231     elsif ( $printingtype eq 'BIB' ) {
232         drawbox( $x_pos, $y_pos, $label_width, $label_height ) if $guidebox;
233         DrawSpineText( $x_pos, $y_pos, $label_height, $label_width, $fontname, $fontsize,
234             $left_text_margin, $text_wrap_cols, \$item, \$conf_data, $printingtype );
235         CalcNextLabelPos();
236     }
237
238     elsif ( $printingtype eq 'PATCRD' ) {
239         my $patron_data = $item;
240
241         #FIXME: This needs to be paramatized and passed in from the user...
242         #Each element of this hash is a separate line on the patron card. Keys are the text to print and the associated data is the point size.
243         my $text = {        
244             $patron_data->{'description'}  => $fontsize,
245             $patron_data->{'branchname'}   => ($fontsize + 3),
246         };
247
248         $DEBUG and warn "Generating patron card for cardnumber $patron_data->{'cardnumber'}";
249
250         drawbox( $x_pos, $y_pos, $label_width, $label_height ) if $guidebox;
251         my $barcode_height = $label_height / 2.75; #FIXME: Scaling barcode height; this needs to be a user parameter.
252         DrawBarcode( $x_pos, $y_pos, $barcode_height, $label_width, $patron_data->{'cardnumber'},
253             $barcodetype );
254         DrawPatronCardText( $x_pos, $y_pos, $label_height, $label_width, $fontname, $fontsize,
255             $left_text_margin, $text_wrap_cols, $text, $printingtype );
256         CalcNextLabelPos();
257     }
258 }    # end for item loop
259 prEnd();
260
261 sub CalcNextLabelPos {
262     if ( $colcount lt $label_cols ) {
263
264         #        warn "new col";
265         $x_pos = ( $x_pos + $label_width + $colspace );
266         $colcount++;
267     }
268
269     else {
270         $x_pos = $left_margin;
271         if ( $rowcount eq $label_rows ) {
272
273             #            warn "new page";
274             prPage();
275             $y_pos    = ( $page_height - $top_margin - $label_height );
276             $rowcount = 1;
277         }
278         else {
279
280             #            warn "new row";
281             $y_pos = ( $y_pos - $rowspace - $label_height );
282             $rowcount++;
283         }
284         $colcount = 1;
285     }
286 }
287