Bug 16011: $VERSION - remove use vars $VERSION
[koha.git] / acqui / pdfformat / layout2pagesde.pm
blob75beb89211d45d953256390633b38f4f00ccbb69
1 #!/usr/bin/perl
3 #example script to print a basketgroup
4 #written 07/11/08 by john.soros@biblibre.com and paul.poulain@biblibre.com
6 # Copyright 2008-2009 BibLibre SARL
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 #you can use any PDF::API2 module, all you need to do is return the stringifyed pdf object from the printpdf sub.
24 package pdfformat::layout2pagesde;
25 use vars qw(@ISA @EXPORT);
26 use MIME::Base64;
27 use strict;
28 use warnings;
29 use utf8;
31 use Koha::Number::Price;
32 use Koha::DateUtils;
33 use Koha::Libraries;
35 BEGIN {
36 use Exporter ();
37 our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
38 # set the version for version checking
39 $VERSION = 1.00;
40 @ISA = qw(Exporter);
41 @EXPORT = qw(printpdf);
45 #be careful, all the sizes (height, width, etc...) are in mm, not PostScript points (the default measurment of PDF::API2).
46 #The constants exported transform that into PostScript points (/mm for milimeter, /in for inch, pt is postscript point, and as so is there only to show what is happening.
47 use constant mm => 25.4 / 72;
48 use constant in => 1 / 72;
49 use constant pt => 1;
51 use PDF::API2;
52 #A4 paper specs
53 my ($height, $width) = (297, 210);
54 use PDF::Table;
56 sub printorders {
57 my ($pdf, $basketgroup, $baskets, $orders) = @_;
59 my $cur_format = C4::Context->preference("CurrencyFormat");
61 $pdf->mediabox($height/mm, $width/mm);
62 my $page = $pdf->page();
64 my $pdftable = new PDF::Table();
66 my $abaskets;
67 my $arrbasket;
68 my @keys = ('Bestellung', 'Titel', 'Anz.', 'Preis inkl. MWSt.', 'Rabatt', 'MWSt.', 'Gesamt, exkl. MWSt.', 'Gesamt inkl. MWSt.');
69 for my $bkey (@keys) {
70 push(@$arrbasket, $bkey);
72 push(@$abaskets, $arrbasket);
74 my $titleinfo;
75 for my $basket (@$baskets){
76 for my $line (@{$orders->{$basket->{basketno}}}) {
77 $arrbasket = undef;
78 $titleinfo = "";
79 if ( C4::Context->preference("marcflavour") eq 'UNIMARC' ) {
80 $titleinfo = $line->{title} . " / " . $line->{author} .
81 ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
82 ( $line->{en} ? " EN: " . $line->{en} : '' ) .
83 ( $line->{itemtype} ? ", " . $line->{itemtype} : '' ) .
84 ( $line->{edition} ? ", " . $line->{edition} : '' ) .
85 ( $line->{publishercode} ? ' Verlag: '. $line->{publishercode} : '') .
86 ( $line->{publicationyear} ? ', '. $line->{publicationyear} : '');
88 else { # MARC21, NORMARC
89 $titleinfo = $line->{title} . " " . $line->{author} .
90 ( $line->{isbn} ? " ISBN: " . $line->{isbn} : '' ) .
91 ( $line->{en} ? " EN: " . $line->{en} : '' ) .
92 ( $line->{itemtype} ? " " . $line->{itemtype} : '' ) .
93 ( $line->{edition} ? ", " . $line->{edition} : '' ) .
94 ( $line->{publishercode} ? ' Verlag: '. $line->{publishercode} : '') .
95 ( $line->{copyrightdate} ? ' '. $line->{copyrightdate} : '');
97 push( @$arrbasket,
98 $basket->{basketno},
99 $titleinfo. ($line->{order_vendornote} ? "\n----------------\nLieferantennotiz : ". $line->{order_vendornote} : '' ), $line->{quantity},
100 $line->{quantity},
101 Koha::Number::Price->new( $line->{rrpgsti} )->format,
102 Koha::Number::Price->new( $line->{discount} )->format . '%',
103 Koha::Number::Price->new( $line->{gstrate} * 100 )->format . '%',
104 Koha::Number::Price->new( $line->{totalgste} )->format,
105 Koha::Number::Price->new( $line->{totalgsti} )->format,
107 push(@$abaskets, $arrbasket);
111 $pdftable->table($pdf, $page, $abaskets,
112 x => 10/mm,
113 w => ($width - 20)/mm,
114 start_y => 285/mm,
115 next_y => 285/mm,
116 start_h => 260/mm,
117 next_h => 260/mm,
118 padding => 5,
119 padding_right => 5,
120 background_color_odd => "lightgray",
121 font => $pdf->corefont("Times", -encoding => "utf8"),
122 font_size => 3/mm,
123 header_props => {
124 font => $pdf->corefont("Times", -encoding => "utf8"),
125 font_size => 10,
126 bg_color => 'gray',
127 repeat => 1,
129 column_props => [
130 { justify => 'left' },
131 { min_w => 90/mm },
132 { justify => 'right' },
133 { justify => 'right' },
134 { justify => 'right' },
135 { justify => 'right' },
136 { justify => 'right' },
137 { justify => 'right' },
141 $pdf->mediabox($width/mm, $height/mm);
144 sub printhead {
145 my ($pdf, $basketgroup, $bookseller) = @_;
147 # get library name
148 my $libraryname = C4::Context->preference("LibraryName");
149 my $billing_library = Koha::Libraries->find( $basketgroup->{billingplace} );
150 my $delivery_library = Koha::Libraries->find( $basketgroup->{deliveryplace} );
151 my $freedeliveryplace = $basketgroup->{freedeliveryplace};
152 # get the subject
153 my $subject;
155 # open 1st page (with the header)
156 my $page = $pdf->openpage(1);
158 # create a text
159 my $text = $page->text;
161 # print the libraryname in the header
162 $text->font( $pdf->corefont("Times", -encoding => "utf8"), 6/mm );
163 $text->translate(30/mm, ($height-28.5)/mm);
164 $text->text($libraryname);
166 # print order info, on the default PDF
167 $text->font( $pdf->corefont("Times", -encoding => "utf8"), 8/mm );
168 $text->translate(100/mm, ($height-5-48)/mm);
169 $text->text($basketgroup->{'id'});
171 # print the date
172 my $today = output_pref({ dt => dt_from_string, dateonly => 1 });
173 $text->translate(130/mm, ($height-5-48)/mm);
174 $text->text($today);
176 $text->font( $pdf->corefont("Times", -encoding => "utf8"), 4/mm );
178 # print billing infos
179 $text->translate(100/mm, ($height-86)/mm);
180 $text->text($libraryname);
181 $text->translate(100/mm, ($height-97)/mm);
182 $text->text($billing_library->branchname);
183 $text->translate(100/mm, ($height-108.5)/mm);
184 $text->text($billing_library->branchphone);
185 $text->translate(100/mm, ($height-115.5)/mm);
186 $text->text($billing_library->branchfax);
187 $text->translate(100/mm, ($height-122.5)/mm);
188 $text->text($billing_library->branchaddress1);
189 $text->translate(100/mm, ($height-127.5)/mm);
190 $text->text($billing_library->branchaddress2);
191 $text->translate(100/mm, ($height-132.5)/mm);
192 $text->text($billing_library->branchaddress3);
193 $text->translate(100/mm, ($height-137.5)/mm);
194 $text->text(join(' ', $billing_library->branchzip, $billing_library->branchcity, $billing_library->branchcountry));
195 $text->translate(100/mm, ($height-147.5)/mm);
196 $text->text($billing_library->branchemail);
198 # print subject
199 $text->translate(100/mm, ($height-145.5)/mm);
200 $text->text($subject);
202 # print bookseller infos
203 $text->translate(100/mm, ($height-180)/mm);
204 $text->text($bookseller->{name});
205 $text->translate(100/mm, ($height-185)/mm);
206 $text->text($bookseller->{postal});
207 $text->translate(100/mm, ($height-190)/mm);
208 $text->text($bookseller->{address1});
209 $text->translate(100/mm, ($height-195)/mm);
210 $text->text($bookseller->{address2});
211 $text->translate(100/mm, ($height-200)/mm);
212 $text->text($bookseller->{address3});
213 $text->translate(100/mm, ($height-205)/mm);
214 $text->text($bookseller->{accountnumber});
216 # print delivery infos
217 $text->font( $pdf->corefont("Times-Bold", -encoding => "utf8"), 4/mm );
218 $text->translate(50/mm, ($height-237)/mm);
219 if ($freedeliveryplace) {
220 my $start = 242;
221 my @fdp = split('\n', $freedeliveryplace);
222 foreach (@fdp) {
223 $text->text($_);
224 $text->translate( 50 / mm, ( $height - $start ) / mm );
225 $start += 5;
227 } else {
228 $text->text( $delivery_library->branchaddress1 );
229 $text->translate( 50 / mm, ( $height - 242 ) / mm );
230 $text->text( $delivery_library->branchaddress2 );
231 $text->translate( 50 / mm, ( $height - 247 ) / mm );
232 $text->text( $delivery_library->branchaddress3 );
233 $text->translate( 50 / mm, ( $height - 252 ) / mm );
234 $text->text( join( ' ', $delivery_library->branchzip, $delivery_library->branchcity, $delivery_library->branchcountry ) );
236 $text->translate(50/mm, ($height-262)/mm);
237 $text->text($basketgroup->{deliverycomment});
240 sub printfooters {
241 my $pdf = shift;
242 for ( 1..$pdf->pages ) {
243 my $page = $pdf->openpage($_);
244 my $text = $page->text;
245 $text->font( $pdf->corefont("Times", -encoding => "utf8"), 3/mm );
246 $text->translate(10/mm, 10/mm);
247 $text->text("Seite $_ / ".$pdf->pages);
251 sub printpdf {
252 my ($basketgroup, $bookseller, $baskets, $orders, $GST) = @_;
253 # open the default PDF that will be used for base (1st page already filled)
254 my $pdf_template = C4::Context->config('intrahtdocs') . '/' . C4::Context->preference('template') . '/pdf/layout2pagesde.pdf';
255 my $pdf = PDF::API2->open($pdf_template);
256 $pdf->pageLabel( 0, {
257 -style => 'roman',
258 } ); # start with roman numbering
259 # fill the 1st page (basketgroup information)
260 printhead($pdf, $basketgroup, $bookseller);
261 # fill other pages (orders)
262 printorders($pdf, $basketgroup, $baskets, $orders);
263 # print something on each page (usually the footer, but you could also put a header
264 printfooters($pdf);
265 return $pdf->stringify;