Anhebung der Versionsnummer auf 2.3.0
[kivitendo-erp.git] / SL / Form.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 # Contributors: Thomas Bayen <bayen@gmx.de>
16 #               Antti Kaihola <akaihola@siba.fi>
17 #               Moritz Bunkus (tex code)
18 #
19 # This program is free software; you can redistribute it and/or modify
20 # it under the terms of the GNU General Public License as published by
21 # the Free Software Foundation; either version 2 of the License, or
22 # (at your option) any later version.
23 #
24 # This program is distributed in the hope that it will be useful,
25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27 # GNU General Public License for more details.
28 # You should have received a copy of the GNU General Public License
29 # along with this program; if not, write to the Free Software
30 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 #======================================================================
32 # Utilities for parsing forms
33 # and supporting routines for linking account numbers
34 # used in AR, AP and IS, IR modules
35 #
36 #======================================================================
37
38 package Form;
39
40 use HTML::Template;
41
42 sub _input_to_hash {
43   $main::lxdebug->enter_sub();
44
45   my $input = $_[0];
46   my %in    = ();
47   my @pairs = split(/&/, $input);
48
49   foreach (@pairs) {
50     my ($name, $value) = split(/=/, $_, 2);
51     $in{$name} = unescape(undef, $value);
52   }
53
54   $main::lxdebug->leave_sub();
55
56   return %in;
57 }
58
59 sub _request_to_hash {
60   $main::lxdebug->enter_sub();
61
62   my ($input) = @_;
63   my ($i,        $loc,  $key,    $val);
64   my (%ATTACH,   $f,    $header, $header_body, $len, $buf);
65   my ($boundary, @list, $size,   $body, $x, $blah, $name);
66
67   if ($ENV{'CONTENT_TYPE'}
68       && ($ENV{'CONTENT_TYPE'} =~ /multipart\/form-data; boundary=(.+)$/)) {
69     $boundary = quotemeta('--' . $1);
70     @list     = split(/$boundary/, $input);
71
72     # For some reason there are always 2 extra, that are empty
73     $size = @list - 2;
74
75     for ($x = 1; $x <= $size; $x++) {
76       $header_body = $list[$x];
77       $header_body =~ /\r\n\r\n|\n\n/;
78
79       # Here we split the header and body
80       $header = $`;
81       $body   = $';    #'
82       $body =~ s/\r\n$//;
83
84       # Now we try to get the file name
85       $name = $header;
86       $name =~ /name=\"(.+)\"/;
87       ($name, $blah) = split(/\"/, $1);
88
89       # If the form name is not attach, then we need to parse this like
90       # regular form data
91       if ($name ne "attach") {
92         $body =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
93         $ATTACH{$name} = $body;
94
95         # Otherwise it is an attachment and we need to finish it up
96       } elsif ($name eq "attach") {
97         $header =~ /filename=\"(.+)\"/;
98         $ATTACH{'FILE_NAME'} = $1;
99         $ATTACH{'FILE_NAME'} =~ s/\"//g;
100         $ATTACH{'FILE_NAME'} =~ s/\s//g;
101         $ATTACH{'FILE_CONTENT'} = $body;
102
103         for ($i = $x; $list[$i]; $i++) {
104           $list[$i] =~ s/^.+name=$//;
105           $list[$i] =~ /\"(\w+)\"/;
106           $ATTACH{$1} = $';    #'
107         }
108       }
109     }
110
111     $main::lxdebug->leave_sub();
112     return %ATTACH;
113
114       } else {
115     $main::lxdebug->leave_sub();
116     return _input_to_hash($input);
117   }
118 }
119
120 sub new {
121   $main::lxdebug->enter_sub();
122
123   my $type = shift;
124
125   my $self = {};
126
127   read(STDIN, $_, $ENV{CONTENT_LENGTH});
128
129   if ($ENV{QUERY_STRING}) {
130     $_ = $ENV{QUERY_STRING};
131   }
132
133   if ($ARGV[0]) {
134     $_ = $ARGV[0];
135   }
136
137   my %parameters = _request_to_hash($_);
138   map({ $self->{$_} = $parameters{$_}; } keys(%parameters));
139
140   $self->{menubar} = 1 if $self->{path} =~ /lynx/i;
141
142   $self->{action} = lc $self->{action};
143   $self->{action} =~ s/( |-|,|#)/_/g;
144
145   $self->{version}   = "2.3.0";
146
147   $main::lxdebug->leave_sub();
148
149   bless $self, $type;
150 }
151
152 sub debug {
153   $main::lxdebug->enter_sub();
154
155   my ($self) = @_;
156
157   print "\n";
158
159   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
160
161   $main::lxdebug->leave_sub();
162 }
163
164 sub escape {
165   $main::lxdebug->enter_sub();
166
167   my ($self, $str, $beenthere) = @_;
168
169   # for Apache 2 we escape strings twice
170   #if (($ENV{SERVER_SOFTWARE} =~ /Apache\/2/) && !$beenthere) {
171   #  $str = $self->escape($str, 1);
172   #}
173
174   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
175
176   $main::lxdebug->leave_sub();
177
178   return $str;
179 }
180
181 sub unescape {
182   $main::lxdebug->enter_sub();
183
184   my ($self, $str) = @_;
185
186   $str =~ tr/+/ /;
187   $str =~ s/\\$//;
188
189   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
190
191   $main::lxdebug->leave_sub();
192
193   return $str;
194 }
195
196 sub quote {
197   my ($self, $str) = @_;
198
199   if ($str && !ref($str)) {
200     $str =~ s/\"/&quot;/g;
201   }
202
203   $str;
204
205 }
206
207 sub unquote {
208   my ($self, $str) = @_;
209
210   if ($str && !ref($str)) {
211     $str =~ s/&quot;/\"/g;
212   }
213
214   $str;
215
216 }
217
218 sub hide_form {
219   my $self = shift;
220
221   if (@_) {
222     for (@_) {
223       print qq|<input type=hidden name="$_" value="|
224         . $self->quote($self->{$_})
225         . qq|">\n|;
226     }
227   } else {
228     delete $self->{header};
229     for (sort keys %$self) {
230       print qq|<input type=hidden name="$_" value="|
231         . $self->quote($self->{$_})
232         . qq|">\n|;
233     }
234   }
235
236 }
237
238 sub error {
239   $main::lxdebug->enter_sub();
240
241   my ($self, $msg) = @_;
242
243   if ($ENV{HTTP_USER_AGENT}) {
244     $msg =~ s/\n/<br>/g;
245
246     $self->header;
247     $self->show_generic_error($msg);
248
249     die "Error: $msg\n";
250
251   } else {
252
253     if ($self->{error_function}) {
254       &{ $self->{error_function} }($msg);
255     } else {
256       die "Error: $msg\n";
257     }
258   }
259
260   $main::lxdebug->leave_sub();
261 }
262
263 sub info {
264   $main::lxdebug->enter_sub();
265
266   my ($self, $msg) = @_;
267
268   if ($ENV{HTTP_USER_AGENT}) {
269     $msg =~ s/\n/<br>/g;
270
271     if (!$self->{header}) {
272       $self->header;
273       print qq|
274       <body>|;
275     }
276
277     print qq|
278
279     <p><b>$msg</b>
280     |;
281
282   } else {
283
284     if ($self->{info_function}) {
285       &{ $self->{info_function} }($msg);
286     } else {
287       print "$msg\n";
288     }
289   }
290
291   $main::lxdebug->leave_sub();
292 }
293
294 sub numtextrows {
295   $main::lxdebug->enter_sub();
296
297   my ($self, $str, $cols, $maxrows) = @_;
298
299   my $rows = 0;
300
301   map { $rows += int(((length) - 2) / $cols) + 1 } split /\r/, $str;
302
303   $maxrows = $rows unless defined $maxrows;
304
305   $main::lxdebug->leave_sub();
306
307   return ($rows > $maxrows) ? $maxrows : $rows;
308 }
309
310 sub dberror {
311   $main::lxdebug->enter_sub();
312
313   my ($self, $msg) = @_;
314
315   $self->error("$msg\n" . $DBI::errstr);
316
317   $main::lxdebug->leave_sub();
318 }
319
320 sub isblank {
321   $main::lxdebug->enter_sub();
322
323   my ($self, $name, $msg) = @_;
324
325   if ($self->{$name} =~ /^\s*$/) {
326     $self->error($msg);
327   }
328   $main::lxdebug->leave_sub();
329 }
330
331 sub header {
332   $main::lxdebug->enter_sub();
333
334   my ($self) = @_;
335
336   if ($self->{header}) {
337     $main::lxdebug->leave_sub();
338     return;
339   }
340
341   my ($stylesheet, $favicon, $charset);
342
343   if ($ENV{HTTP_USER_AGENT}) {
344
345     if ($self->{stylesheet} && (-f "css/$self->{stylesheet}")) {
346       $stylesheet =
347         qq|<LINK REL="stylesheet" HREF="css/$self->{stylesheet}" TYPE="text/css" TITLE="Lx-Office stylesheet">
348  |;
349     }
350
351     if ($self->{favicon} && (-f "$self->{favicon}")) {
352       $favicon =
353         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
354   |;
355     }
356
357     if ($self->{charset}) {
358       $charset =
359         qq|<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=$self->{charset}">
360   |;
361     }
362     if ($self->{landscape}) {
363       $pagelayout = qq|<style type="text/css">
364                         \@page { size:landscape; }
365                         </style>|;
366     }
367     if ($self->{fokus}) {
368       $fokus = qq|<script type="text/javascript">
369 <!--
370 function fokus(){document.$self->{fokus}.focus();}
371 //-->
372 </script>|;
373     }
374
375     #Set Calendar
376     $jsscript = "";
377     if ($self->{jsscript} == 1) {
378
379       $jsscript = qq|
380         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
381         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
382         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
383         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
384         $self->{javascript}
385        |;
386     }
387
388     $self->{titlebar} =
389       ($self->{title})
390       ? "$self->{title} - $self->{titlebar}"
391       : $self->{titlebar};
392
393     print qq|Content-Type: text/html
394
395 <html>
396 <head>
397   <title>$self->{titlebar}</title>
398   $stylesheet
399   $pagelayout
400   $favicon
401   $charset
402   $jsscript
403   $fokus
404 </head>
405
406 |;
407   }
408   $self->{header} = 1;
409
410   $main::lxdebug->leave_sub();
411 }
412
413 use Data::Dumper;
414 sub parse_html_template {
415   $main::lxdebug->enter_sub();
416
417   my ($self, $file, $additional_params) = @_;
418   my $language;
419
420   if (!defined($main::myconfig) || !defined($main::myconfig{"countrycode"})) {
421     $language = $main::language;
422   } else {
423     $language = $main::myconfig{"countrycode"};
424   }
425
426   if (-f "templates/webpages/${file}_${language}.html") {
427     if ((-f ".developer") &&
428         (-f "templates/webpages/${file}_master.html") &&
429         ((stat("templates/webpages/${file}_master.html"))[9] >
430          (stat("templates/webpages/${file}_${language}.html"))[9])) {
431       my $info = "Developper information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
432         "Please re-run 'locales.pl' in 'locale/${language}'.";
433       print(qq|<pre>$info</pre>|);
434       die($info);
435     }
436
437     $file = "templates/webpages/${file}_${language}.html";
438   } elsif (-f "templates/webpages/${file}.html") {
439     $file = "templates/webpages/${file}.html";
440   } else {
441     my $info = "Web page template '${file}' not found.\n" .
442       "Please re-run 'locales.pl' in 'locale/${language}'.";
443     print(qq|<pre>$info</pre>|);
444     die($info);
445   }
446
447   my $template = HTML::Template->new("filename" => $file,
448                                      "die_on_bad_params" => 0,
449                                      "strict" => 0,
450                                      "case_sensitive" => 1,
451                                      "loop_context_vars" => 1,
452                                      "global_vars" => 1);
453
454   $additional_params = {} unless ($additional_params);
455   if ($self->{"DEBUG"}) {
456     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
457   }
458
459   if ($additional_params->{"DEBUG"}) {
460     $additional_params->{"DEBUG"} =
461       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
462   }
463
464   my @additional_param_names = keys(%{$additional_params});
465
466   foreach my $key ($template->param()) {
467     if (grep(/^${key}$/, @additional_param_names)) {
468       $template->param($key => $additional_params->{$key});
469     } else {
470       $template->param($key => $self->{$key});
471     }
472   }
473
474   my $output = $template->output();
475
476   $main::lxdebug->leave_sub();
477
478   return $output;
479 }
480
481 sub show_generic_error {
482   my ($self, $error, $title) = @_;
483
484   my $add_params = {};
485   $add_params->{"title"} = $title if ($title);
486   $self->{"label_error"} = $error;
487
488   print($self->parse_html_template("generic/error", $add_params));
489 }
490
491 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
492 # changed it to accept an arbitrary number of triggers - sschoeling
493 sub write_trigger {
494   $main::lxdebug->enter_sub();
495
496   my $self     = shift;
497   my $myconfig = shift;
498   my $qty      = shift;
499
500   # set dateform for jsscript
501   # default
502   $ifFormat = "%d.%m.%Y";
503   if ($myconfig->{dateformat} eq "dd.mm.yy") {
504     $ifFormat = "%d.%m.%Y";
505   } else {
506     if ($myconfig->{dateformat} eq "dd-mm-yy") {
507       $ifFormat = "%d-%m-%Y";
508     } else {
509       if ($myconfig->{dateformat} eq "dd/mm/yy") {
510         $ifFormat = "%d/%m/%Y";
511       } else {
512         if ($myconfig->{dateformat} eq "mm/dd/yy") {
513           $ifFormat = "%m/%d/%Y";
514         } else {
515           if ($myconfig->{dateformat} eq "mm-dd-yy") {
516             $ifFormat = "%m-%d-%Y";
517           } else {
518             if ($myconfig->{dateformat} eq "yyyy-mm-dd") {
519               $ifFormat = "%Y-%m-%d";
520             }
521           }
522         }
523       }
524     }
525   }
526
527   while ($#_ >= 2) {
528     push @triggers, qq|
529        Calendar.setup(
530       {
531       inputField : "| . (shift) . qq|",
532       ifFormat :"$ifFormat",
533       align : "| .  (shift) . qq|", 
534       button : "| . (shift) . qq|"
535       }
536       );
537        |;
538   }
539   $jsscript = qq|
540        <script type="text/javascript">
541        <!--| . join("", @triggers) . qq|//-->
542         </script>
543         |;
544
545   $main::lxdebug->leave_sub();
546
547   return $jsscript;
548 }    #end sub write_trigger
549
550 sub redirect {
551   $main::lxdebug->enter_sub();
552
553   my ($self, $msg) = @_;
554
555   if ($self->{callback}) {
556
557     ($script, $argv) = split(/\?/, $self->{callback});
558     exec("perl", "$script", $argv);
559
560   } else {
561
562     $self->info($msg);
563     exit;
564   }
565
566   $main::lxdebug->leave_sub();
567 }
568
569 # sort of columns removed - empty sub
570 sub sort_columns {
571   $main::lxdebug->enter_sub();
572
573   my ($self, @columns) = @_;
574
575   $main::lxdebug->leave_sub();
576
577   return @columns;
578 }
579
580 sub format_amount {
581   $main::lxdebug->enter_sub();
582
583   my ($self, $myconfig, $amount, $places, $dash) = @_;
584
585   #Workaround for $format_amount calls without $places
586   if (!defined $places) {
587     (my $dec) = ($amount =~ /\.(\d+)/);
588     $places = length $dec;
589   }
590
591   if ($places =~ /\d/) {
592     $amount = $self->round_amount($amount, $places);
593   }
594
595   # is the amount negative
596   my $negative = ($amount < 0);
597   my $fillup   = "";
598
599   if ($amount != 0) {
600     if ($myconfig->{numberformat} && ($myconfig->{numberformat} ne '1000.00'))
601     {
602       my ($whole, $dec) = split /\./, "$amount";
603       $whole =~ s/-//;
604       $amount = join '', reverse split //, $whole;
605       $fillup = "0" x ($places - length($dec));
606
607       if ($myconfig->{numberformat} eq '1,000.00') {
608         $amount =~ s/\d{3,}?/$&,/g;
609         $amount =~ s/,$//;
610         $amount = join '', reverse split //, $amount;
611         $amount .= "\.$dec" . $fillup if ($places ne '' && $places * 1 != 0);
612       }
613
614       if ($myconfig->{numberformat} eq '1.000,00') {
615         $amount =~ s/\d{3,}?/$&./g;
616         $amount =~ s/\.$//;
617         $amount = join '', reverse split //, $amount;
618         $amount .= ",$dec" . $fillup if ($places ne '' && $places * 1 != 0);
619       }
620
621       if ($myconfig->{numberformat} eq '1000,00') {
622         $amount = "$whole";
623         $amount .= ",$dec" . $fillup if ($places ne '' && $places * 1 != 0);
624       }
625
626       if ($dash =~ /-/) {
627         $amount = ($negative) ? "($amount)" : "$amount";
628       } elsif ($dash =~ /DRCR/) {
629         $amount = ($negative) ? "$amount DR" : "$amount CR";
630       } else {
631         $amount = ($negative) ? "-$amount" : "$amount";
632       }
633     }
634   } else {
635     if ($dash eq "0" && $places) {
636       if ($myconfig->{numberformat} eq '1.000,00') {
637         $amount = "0" . "," . "0" x $places;
638       } else {
639         $amount = "0" . "." . "0" x $places;
640       }
641     } else {
642       $amount = ($dash ne "") ? "$dash" : "0";
643     }
644   }
645
646   $main::lxdebug->leave_sub();
647
648   return $amount;
649 }
650
651 sub parse_amount {
652   $main::lxdebug->enter_sub();
653
654   my ($self, $myconfig, $amount) = @_;
655   $main::lxdebug->message(LXDebug::DEBUG2, "Start amount: $amount");
656
657   if ($myconfig->{in_numberformat} == 1) {
658
659     # Extra input number format 1000.00 or 1000,00
660     $main::lxdebug->message(LXDebug::DEBUG2,
661               "in_numberformat: " . $main::locale->text('1000,00 or 1000.00'));
662     $amount =~ s/,/\./g;
663
664     #$main::lxdebug->message(LXDebug::DEBUG2, "1.Parsed Number: $amount") if ($amount);
665     $amount = scalar reverse $amount;
666
667     #$main::lxdebug->message(LXDebug::DEBUG2, "2.Parsed Number: $amount") if ($amount);
668     $amount =~ s/\./DOT/;
669
670     #$main::lxdebug->message(LXDebug::DEBUG2, "3.Parsed Number: $amount") if ($amount);
671     $amount =~ s/\.//g;
672
673     #$main::lxdebug->message(LXDebug::DEBUG2, "4.Parsed Number: $amount") if ($amount);
674     $amount =~ s/DOT/\./;
675
676     #$main::lxdebug->message(LXDebug::DEBUG2, "5.Parsed Number:" . $amount) if ($amount);
677     $amount = scalar reverse $amount;
678     $main::lxdebug->message(LXDebug::DEBUG2,
679                             "Parsed amount:" . $amount . "\n");
680
681     return ($amount * 1);
682
683   }
684   $main::lxdebug->message(LXDebug::DEBUG2,
685               "in_numberformat: " . $main::locale->text('equal Outputformat'));
686   $main::lxdebug->message(LXDebug::DEBUG2,
687                           " = numberformat: $myconfig->{numberformat}");
688   if (   ($myconfig->{numberformat} eq '1.000,00')
689       || ($myconfig->{numberformat} eq '1000,00')) {
690     $amount =~ s/\.//g;
691     $amount =~ s/,/\./;
692   }
693
694   if ($myconfig->{numberformat} eq "1'000.00") {
695     $amount =~ s/\'//g;
696   }
697
698   $amount =~ s/,//g;
699
700   $main::lxdebug->message(LXDebug::DEBUG2, "Parsed amount:" . $amount . "\n")
701     if ($amount);
702   $main::lxdebug->leave_sub();
703
704   return ($amount * 1);
705 }
706
707 sub round_amount {
708   $main::lxdebug->enter_sub();
709
710   my ($self, $amount, $places) = @_;
711   my $round_amount;
712
713   # Rounding like "Kaufmannsrunden"
714   # Descr. http://de.wikipedia.org/wiki/Rundung
715   # Inspired by
716   # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
717   # Solves Bug: 189
718   # Udo Spallek
719   $amount = $amount * (10**($places));
720   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
721
722   $main::lxdebug->leave_sub();
723
724   return $round_amount;
725
726 }
727
728 sub parse_template {
729   $main::lxdebug->enter_sub();
730
731   my ($self, $myconfig, $userspath) = @_;
732
733   # { Moritz Bunkus
734   # Some variables used for page breaks
735   my ($chars_per_line, $lines_on_first_page, $lines_on_second_page) =
736     (0, 0, 0);
737   my ($current_page, $current_line, $current_row) = (1, 1, 0);
738   my $pagebreak = "";
739   my $sum       = 0;
740
741   # } Moritz Bunkus
742
743   # Make sure that all *notes* (intnotes, partnotes_*, notes etc) are converted to markup correctly.
744   $self->format_string(grep(/notes/, keys(%{$self})));
745
746   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
747   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
748
749   map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
750       qw(email tel fax name signature));
751
752   open(IN, "$self->{templates}/$self->{IN}")
753     or $self->error("$self->{IN} : $!");
754
755   @_ = <IN>;
756   close(IN);
757
758   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
759
760   # OUT is used for the media, screen, printer, email
761   # for postscript we store a copy in a temporary file
762   my $fileid = time;
763   $self->{tmpfile} = "$userspath/${fileid}.$self->{IN}";
764   if ($self->{format} =~ /(postscript|pdf)/ || $self->{media} eq 'email') {
765     $out = $self->{OUT};
766     $self->{OUT} = ">$self->{tmpfile}";
767   }
768
769   if ($self->{OUT}) {
770     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
771   } else {
772     open(OUT, ">-") or $self->error("STDOUT : $!");
773     $self->header;
774   }
775
776   # Do we have to run LaTeX two times? This is needed if
777   # the template contains page references.
778   $two_passes = 0;
779
780   # first we generate a tmpfile
781   # read file and replace <%variable%>
782   while ($_ = shift) {
783
784     $par = "";
785     $var = $_;
786  
787     # Switch <%analyse%> for template checking
788     # If <%analyse%> is set in the template, you'll find the 
789     # parsed output in the user Directory for analysing
790     # Latex errors
791     # <%analyse%> is a switch (allways off, on if set), not a Variable
792     # Set $form->{analysing}="" for system state: never analyse.
793     # Set $form->{analysing}="1" for system state: ever analyse.
794     $self->{analysing} = "1" if (/<%analyse%>/ && !defined $self->{analysing});    
795     
796     $two_passes = 1 if (/\\pageref/);
797
798     # { Moritz Bunkus
799     # detect pagebreak block and its parameters
800     if (/\s*<%pagebreak ([0-9]+) ([0-9]+) ([0-9]+)%>/) {
801       $chars_per_line       = $1;
802       $lines_on_first_page  = $2;
803       $lines_on_second_page = $3;
804
805       while ($_ = shift) {
806         last if (/\s*<%end pagebreak%>/);
807         $pagebreak .= $_;
808       }
809     }
810
811     # } Moritz Bunkus
812
813     if (/\s*<%foreach /) {
814
815       # this one we need for the count
816       chomp $var;
817       $var =~ s/\s*<%foreach (.+?)%>/$1/;
818       while ($_ = shift) {
819         last if (/\s*<%end /);
820
821         # store line in $par
822         $par .= $_;
823       }
824
825       # display contents of $self->{number}[] array
826       for $i (0 .. $#{ $self->{$var} }) {
827
828         # { Moritz Bunkus
829         # Try to detect whether a manual page break is necessary
830         # but only if there was a <%pagebreak ...%> block before
831
832         if ($chars_per_line) {
833           my $lines =
834             int(length($self->{"description"}[$i]) / $chars_per_line + 0.95);
835           my $lpp;
836
837           my $_description = $self->{"description"}[$i];
838           while ($_description =~ /\\newline/) {
839             $lines++;
840             $_description =~ s/\\newline//;
841           }
842           $self->{"description"}[$i] =~ s/(\\newline\s?)*$//;
843
844           if ($current_page == 1) {
845             $lpp = $lines_on_first_page;
846           } else {
847             $lpp = $lines_on_second_page;
848           }
849
850           # Yes we need a manual page break -- or the user has forced one
851           if (
852              (($current_line + $lines) > $lpp)
853              || ($self->{"_forced_pagebreaks"}
854                && grep(/^${current_row}$/, @{ $self->{"_forced_pagebreaks"} }))
855             ) {
856             my $pb = $pagebreak;
857
858             # replace the special variables <%sumcarriedforward%>
859             # and <%lastpage%>
860
861             my $psum = $self->format_amount($myconfig, $sum, 2);
862             $pb =~ s/<%sumcarriedforward%>/$psum/g;
863             $pb =~ s/<%lastpage%>/$current_page/g;
864
865             # only "normal" variables are supported here
866             # (no <%if, no <%foreach, no <%include)
867
868             $pb =~ s/<%(.+?)%>/$self->{$1}/g;
869
870             # page break block is ready to rock
871             print(OUT $pb);
872             $current_page++;
873             $current_line = 1;
874           }
875           $current_line += $lines;
876           $current_row++;
877         }
878         $sum += $self->parse_amount($myconfig, $self->{"linetotal"}[$i]);
879
880         # } Moritz Bunkus
881
882         # don't parse par, we need it for each line
883         $_ = $par;
884         s/<%(.+?)%>/$self->{$1}[$i]/mg;
885         print OUT;
886       }
887       next;
888     }
889
890     # if not comes before if!
891     if (/\s*<%if not /) {
892
893       # check if it is not set and display
894       chop;
895       s/\s*<%if not (.+?)%>/$1/;
896
897       unless ($self->{$_}) {
898         while ($_ = shift) {
899           last if (/\s*<%end /);
900
901           # store line in $par
902           $par .= $_;
903         }
904
905         $_ = $par;
906
907       } else {
908         while ($_ = shift) {
909           last if (/\s*<%end /);
910         }
911         next;
912       }
913     }
914
915     if (/\s*<%if /) {
916
917       # check if it is set and display
918       chop;
919       s/\s*<%if (.+?)%>/$1/;
920
921       if ($self->{$_}) {
922         while ($_ = shift) {
923           last if (/\s*<%end /);
924
925           # store line in $par
926           $par .= $_;
927         }
928
929         $_ = $par;
930
931       } else {
932         while ($_ = shift) {
933           last if (/\s*<%end /);
934         }
935         next;
936       }
937     }
938
939     # check for <%include filename%>
940     if (/\s*<%include /) {
941
942       # get the directory/filename
943       chomp $var;
944       $var =~ s/\s*<%include (.+?)%>/$1/;
945
946       # mangle filename on basedir
947       $var =~ s/^(\/|\.\.)//g;
948
949       # prevent the infinite loop!
950       next if ($self->{"$var"});
951
952       open(INC, "$self->{templates}/$var")
953         or $self->error($self->cleanup . "$self->{templates}/$var : $!");
954       unshift(@_, <INC>);
955       close(INC);
956
957       $self->{"$var"} = 1;
958
959       next;
960     }
961
962     s/<%(.+?)%>/$self->{$1}/g;
963     s/<nobr><\/nobr>/&nbsp;/g;
964     print OUT;
965   }
966
967   close(OUT);
968
969   # { Moritz Bunkus
970   # Convert the tex file to postscript
971   if ($self->{format} =~ /(postscript|pdf)/) {
972
973     use Cwd;
974     $self->{cwd}    = cwd();
975     $self->{tmpdir} = "$self->{cwd}/$userspath";
976
977     chdir("$userspath") or $self->error($self->cleanup . "chdir : $!");
978
979     $self->{tmpfile} =~ s/$userspath\///g;
980
981     if ($self->{format} eq 'postscript') {
982       system(
983         "latex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
984       );
985       $self->error($self->cleanup) if ($?);
986       if ($two_passes) {
987         system(
988           "latex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
989         );
990         $self->error($self->cleanup) if ($?);
991       }
992
993       $self->{tmpfile} =~ s/tex$/dvi/;
994
995       system("dvips $self->{tmpfile} -o -q > /dev/null");
996       $self->error($self->cleanup . "dvips : $!") if ($?);
997       $self->{tmpfile} =~ s/dvi$/ps/;
998     }
999     if ($self->{format} eq 'pdf') {
1000       system(
1001         "pdflatex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
1002       );
1003       $self->error($self->cleanup) if ($?);
1004       if ($two_passes) {
1005         system(
1006           "pdflatex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
1007         );
1008         $self->error($self->cleanup) if ($?);
1009       }
1010       $self->{tmpfile} =~ s/tex$/pdf/;
1011     }
1012
1013   }
1014
1015   if ($self->{format} =~ /(postscript|pdf)/ || $self->{media} eq 'email') {
1016
1017     if ($self->{media} eq 'email') {
1018
1019       use SL::Mailer;
1020
1021       my $mail = new Mailer;
1022
1023       map { $mail->{$_} = $self->{$_} }
1024         qw(cc bcc subject message version format charset);
1025       $mail->{to}     = qq|$self->{email}|;
1026       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1027       $mail->{fileid} = "$fileid.";
1028
1029       # if we send html or plain text inline
1030       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
1031         $mail->{contenttype} = "text/html";
1032
1033         $mail->{message}       =~ s/\r\n/<br>\n/g;
1034         $myconfig->{signature} =~ s/\\n/<br>\n/g;
1035         $mail->{message} .= "<br>\n--<br>\n$myconfig->{signature}\n<br>";
1036
1037         open(IN, $self->{tmpfile})
1038           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1039         while (<IN>) {
1040           $mail->{message} .= $_;
1041         }
1042
1043         close(IN);
1044
1045       } else {
1046
1047         @{ $mail->{attachments} } = ($self->{tmpfile});
1048
1049         $myconfig->{signature} =~ s/\\n/\r\n/g;
1050         $mail->{message} .= "\r\n--\r\n$myconfig->{signature}";
1051
1052       }
1053
1054       my $err = $mail->send($out);
1055       $self->error($self->cleanup . "$err") if ($err);
1056
1057     } else {
1058
1059       $self->{OUT} = $out;
1060
1061       my $numbytes = (-s $self->{tmpfile});
1062       open(IN, $self->{tmpfile})
1063         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1064
1065       $self->{copies} = 1 unless $self->{media} eq 'printer';
1066
1067       chdir("$self->{cwd}");
1068
1069       for my $i (1 .. $self->{copies}) {
1070         if ($self->{OUT}) {
1071           open(OUT, $self->{OUT})
1072             or $self->error($self->cleanup . "$self->{OUT} : $!");
1073         } else {
1074
1075           # launch application
1076           print qq|Content-Type: application/$self->{format}
1077 Content-Disposition: attachment; filename="$self->{tmpfile}"
1078 Content-Length: $numbytes
1079
1080 |;
1081
1082           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
1083
1084         }
1085
1086         while (<IN>) {
1087           print OUT $_;
1088         }
1089
1090         close(OUT);
1091
1092         seek IN, 0, 0;
1093       }
1094
1095       close(IN);
1096     }
1097
1098     $self->cleanup;
1099
1100   }
1101
1102   chdir("$self->{cwd}");
1103   $main::lxdebug->leave_sub();
1104 }
1105
1106 sub cleanup {
1107   $main::lxdebug->enter_sub();
1108
1109   my $self = shift;
1110
1111   chdir("$self->{tmpdir}");
1112
1113   my @err = ();
1114   if (-f "$self->{tmpfile}.err") {
1115     open(FH, "$self->{tmpfile}.err");
1116     @err = <FH>;
1117     close(FH);
1118   }
1119
1120   if ($self->{analysing} eq "") {
1121     if ($self->{tmpfile}) {
1122
1123       # strip extension
1124       $self->{tmpfile} =~ s/\.\w+$//g;  
1125       my $tmpfile = $self->{tmpfile};
1126       unlink(<$tmpfile.*>);
1127     }
1128   }
1129
1130   chdir("$self->{cwd}");
1131
1132   $main::lxdebug->leave_sub();
1133
1134   return "@err";
1135 }
1136
1137 sub format_string {
1138   $main::lxdebug->enter_sub();
1139
1140   my ($self, @fields) = @_;
1141   my %unique_fields;
1142
1143   %unique_fields = map({ $_ => 1 } @fields);
1144   @fields        = keys(%unique_fields);
1145
1146   foreach my $field (@fields) {
1147     next unless ($self->{$field} =~ /\<pagebreak\>/);
1148     $self->{$field} =~ s/\<pagebreak\>//g;
1149     if ($field =~ /.*_(\d+)$/) {
1150       if (!$self->{"_forced_pagebreaks"}) {
1151         $self->{"_forced_pagebreaks"} = [];
1152       }
1153       push(@{ $self->{"_forced_pagebreaks"} }, "$1");
1154     }
1155   }
1156
1157   my $format = $self->{format};
1158   if ($self->{format} =~ /(postscript|pdf)/) {
1159     $format = 'tex';
1160   }
1161
1162   my %replace = (
1163     'order' => {
1164       'html' => [
1165         '<', '>', quotemeta('\n'), '
1166 '
1167       ],
1168       'tex' => [
1169         '&', quotemeta('\n'), '
1170 ',
1171         '"', '\$', '%', '_', '#', quotemeta('^'),
1172         '{', '}',  '<', '>', '£', "\r"
1173       ]
1174     },
1175     'html' => {
1176       '<'             => '&lt;',
1177       '>'             => '&gt;',
1178       quotemeta('\n') => '<br>',
1179       '
1180 ' => '<br>'
1181     },
1182     'tex' => {
1183       '"'             => "''",
1184       '&'             => '\&',
1185       '\$'            => '\$',
1186       '%'             => '\%',
1187       '_'             => '\_',
1188       '#'             => '\#',
1189       quotemeta('^')  => '\^\\',
1190       '{'             => '\{',
1191       '}'             => '\}',
1192       '<'             => '$<$',
1193       '>'             => '$>$',
1194       quotemeta('\n') => '\newline ',
1195       '
1196 '          => '\newline ',
1197       '£'  => '\pounds ',
1198       "\r" => ""
1199     });
1200
1201   foreach my $key (@{ $replace{order}{$format} }) {
1202     map { $self->{$_} =~ s/$key/$replace{$format}{$key}/g; } @fields;
1203   }
1204
1205   # Allow some HTML markup to be converted into the output format's
1206   # corresponding markup code, e.g. bold or italic.
1207   if ('html' eq $format) {
1208     my @markup_replace = ('b', 'i', 's', 'u');
1209
1210     foreach my $key (@markup_replace) {
1211       map({ $self->{$_} =~ s/\&lt;(\/?)${key}\&gt;/<$1${key}>/g } @fields);
1212     }
1213
1214   } elsif ('tex' eq $format) {
1215     my %markup_replace = ('b' => 'textbf',
1216                           'i' => 'textit',
1217                           'u' => 'underline');
1218
1219     foreach my $field (@fields) {
1220       foreach my $key (keys(%markup_replace)) {
1221         my $new = $markup_replace{$key};
1222         $self->{$field} =~
1223           s/\$\<\$${key}\$\>\$(.*?)\$<\$\/${key}\$>\$/\\${new}\{$1\}/gi;
1224       }
1225     }
1226   }
1227
1228   $main::lxdebug->leave_sub();
1229 }
1230
1231 sub datetonum {
1232   $main::lxdebug->enter_sub();
1233
1234   my ($self, $date, $myconfig) = @_;
1235
1236   if ($date && $date =~ /\D/) {
1237
1238     if ($myconfig->{dateformat} =~ /^yy/) {
1239       ($yy, $mm, $dd) = split /\D/, $date;
1240     }
1241     if ($myconfig->{dateformat} =~ /^mm/) {
1242       ($mm, $dd, $yy) = split /\D/, $date;
1243     }
1244     if ($myconfig->{dateformat} =~ /^dd/) {
1245       ($dd, $mm, $yy) = split /\D/, $date;
1246     }
1247
1248     $dd *= 1;
1249     $mm *= 1;
1250     $yy = ($yy < 70) ? $yy + 2000 : $yy;
1251     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1252
1253     $dd = "0$dd" if ($dd < 10);
1254     $mm = "0$mm" if ($mm < 10);
1255
1256     $date = "$yy$mm$dd";
1257   }
1258
1259   $main::lxdebug->leave_sub();
1260
1261   return $date;
1262 }
1263
1264 # Database routines used throughout
1265
1266 sub dbconnect {
1267   $main::lxdebug->enter_sub();
1268
1269   my ($self, $myconfig) = @_;
1270
1271   # connect to database
1272   my $dbh =
1273     DBI->connect($myconfig->{dbconnect},
1274                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
1275     or $self->dberror;
1276
1277   # set db options
1278   if ($myconfig->{dboptions}) {
1279     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1280   }
1281
1282   $main::lxdebug->leave_sub();
1283
1284   return $dbh;
1285 }
1286
1287 sub dbconnect_noauto {
1288   $main::lxdebug->enter_sub();
1289
1290   my ($self, $myconfig) = @_;
1291
1292   # connect to database
1293   $dbh =
1294     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
1295                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
1296     or $self->dberror;
1297
1298   # set db options
1299   if ($myconfig->{dboptions}) {
1300     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1301   }
1302
1303   $main::lxdebug->leave_sub();
1304
1305   return $dbh;
1306 }
1307
1308 sub update_balance {
1309   $main::lxdebug->enter_sub();
1310
1311   my ($self, $dbh, $table, $field, $where, $value) = @_;
1312
1313   # if we have a value, go do it
1314   if ($value != 0) {
1315
1316     # retrieve balance from table
1317     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1318     my $sth   = $dbh->prepare($query);
1319
1320     $sth->execute || $self->dberror($query);
1321     my ($balance) = $sth->fetchrow_array;
1322     $sth->finish;
1323
1324     $balance += $value;
1325
1326     # update balance
1327     $query = "UPDATE $table SET $field = $balance WHERE $where";
1328     $dbh->do($query) || $self->dberror($query);
1329   }
1330   $main::lxdebug->leave_sub();
1331 }
1332
1333 sub update_exchangerate {
1334   $main::lxdebug->enter_sub();
1335
1336   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1337
1338   # some sanity check for currency
1339   if ($curr eq '') {
1340     $main::lxdebug->leave_sub();
1341     return;
1342   }
1343
1344   my $query = qq|SELECT e.curr FROM exchangerate e
1345                  WHERE e.curr = '$curr'
1346                  AND e.transdate = '$transdate'
1347                  FOR UPDATE|;
1348   my $sth = $dbh->prepare($query);
1349   $sth->execute || $self->dberror($query);
1350
1351   my $set;
1352   if ($buy != 0 && $sell != 0) {
1353     $set = "buy = $buy, sell = $sell";
1354   } elsif ($buy != 0) {
1355     $set = "buy = $buy";
1356   } elsif ($sell != 0) {
1357     $set = "sell = $sell";
1358   }
1359
1360   if ($sth->fetchrow_array) {
1361     $query = qq|UPDATE exchangerate
1362                 SET $set
1363                 WHERE curr = '$curr'
1364                 AND transdate = '$transdate'|;
1365   } else {
1366     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1367                 VALUES ('$curr', $buy, $sell, '$transdate')|;
1368   }
1369   $sth->finish;
1370   $dbh->do($query) || $self->dberror($query);
1371
1372   $main::lxdebug->leave_sub();
1373 }
1374
1375 sub save_exchangerate {
1376   $main::lxdebug->enter_sub();
1377
1378   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1379
1380   my $dbh = $self->dbconnect($myconfig);
1381
1382   my ($buy, $sell) = (0, 0);
1383   $buy  = $rate if $fld eq 'buy';
1384   $sell = $rate if $fld eq 'sell';
1385
1386   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1387
1388   $dbh->disconnect;
1389
1390   $main::lxdebug->leave_sub();
1391 }
1392
1393 sub get_exchangerate {
1394   $main::lxdebug->enter_sub();
1395
1396   my ($self, $dbh, $curr, $transdate, $fld) = @_;
1397
1398   unless ($transdate) {
1399     $main::lxdebug->leave_sub();
1400     return "";
1401   }
1402
1403   my $query = qq|SELECT e.$fld FROM exchangerate e
1404                  WHERE e.curr = '$curr'
1405                  AND e.transdate = '$transdate'|;
1406   my $sth = $dbh->prepare($query);
1407   $sth->execute || $self->dberror($query);
1408
1409   my ($exchangerate) = $sth->fetchrow_array;
1410   $sth->finish;
1411
1412   $main::lxdebug->leave_sub();
1413
1414   return $exchangerate;
1415 }
1416
1417 sub check_exchangerate {
1418   $main::lxdebug->enter_sub();
1419
1420   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1421
1422   unless ($transdate) {
1423     $main::lxdebug->leave_sub();
1424     return "";
1425   }
1426
1427   my $dbh = $self->dbconnect($myconfig);
1428
1429   my $query = qq|SELECT e.$fld FROM exchangerate e
1430                  WHERE e.curr = '$currency'
1431                  AND e.transdate = '$transdate'|;
1432   my $sth = $dbh->prepare($query);
1433   $sth->execute || $self->dberror($query);
1434
1435   my ($exchangerate) = $sth->fetchrow_array;
1436   $sth->finish;
1437   $dbh->disconnect;
1438
1439   $main::lxdebug->leave_sub();
1440
1441   return $exchangerate;
1442 }
1443
1444 sub add_shipto {
1445   $main::lxdebug->enter_sub();
1446
1447   my ($self, $dbh, $id) = @_;
1448 ##LINET
1449   my $shipto;
1450   foreach my $item (
1451     qw(name department_1 department_2 street zipcode city country contact phone fax email)
1452     ) {
1453     if ($self->{"shipto$item"}) {
1454       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1455     }
1456     $self->{"shipto$item"} =~ s/\'/\'\'/g;
1457   }
1458
1459   if ($shipto) {
1460     my $query =
1461       qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2, shiptostreet,
1462                    shiptozipcode, shiptocity, shiptocountry, shiptocontact,
1463                    shiptophone, shiptofax, shiptoemail) VALUES ($id,
1464                    '$self->{shiptoname}', '$self->{shiptodepartment_1}', '$self->{shiptodepartment_2}', '$self->{shiptostreet}',
1465                    '$self->{shiptozipcode}', '$self->{shiptocity}',
1466                    '$self->{shiptocountry}', '$self->{shiptocontact}',
1467                    '$self->{shiptophone}', '$self->{shiptofax}',
1468                    '$self->{shiptoemail}')|;
1469     $dbh->do($query) || $self->dberror($query);
1470   }
1471 ##/LINET
1472   $main::lxdebug->leave_sub();
1473 }
1474
1475 sub get_employee {
1476   $main::lxdebug->enter_sub();
1477
1478   my ($self, $dbh) = @_;
1479
1480   my $query = qq|SELECT e.id, e.name FROM employee e
1481                  WHERE e.login = '$self->{login}'|;
1482   my $sth = $dbh->prepare($query);
1483   $sth->execute || $self->dberror($query);
1484
1485   ($self->{employee_id}, $self->{employee}) = $sth->fetchrow_array;
1486   $self->{employee_id} *= 1;
1487
1488   $sth->finish;
1489
1490   $main::lxdebug->leave_sub();
1491 }
1492
1493 # get other contact for transaction and form - html/tex
1494 sub get_contact {
1495   $main::lxdebug->enter_sub();
1496
1497   my ($self, $dbh, $id) = @_;
1498
1499   my $query = qq|SELECT c.*
1500               FROM contacts c
1501               WHERE cp_id=$id|;
1502   $sth = $dbh->prepare($query);
1503   $sth->execute || $self->dberror($query);
1504
1505   $ref = $sth->fetchrow_hashref(NAME_lc);
1506
1507   push @{ $self->{$_} }, $ref;
1508
1509   $sth->finish;
1510   $main::lxdebug->leave_sub();
1511 }
1512
1513 # get contacts for id, if no contact return {"","","","",""}
1514 sub get_contacts {
1515   $main::lxdebug->enter_sub();
1516
1517   my ($self, $dbh, $id) = @_;
1518
1519   my $query = qq|SELECT c.cp_id, c.cp_cv_id, c.cp_name, c.cp_givenname
1520               FROM contacts c
1521               WHERE cp_cv_id=$id|;
1522   my $sth = $dbh->prepare($query);
1523   $sth->execute || $self->dberror($query);
1524
1525   my $i = 0;
1526   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1527     push @{ $self->{all_contacts} }, $ref;
1528     $i++;
1529   }
1530
1531   if ($i == 0) {
1532     push @{ $self->{all_contacts} }, { { "", "", "", "", "" } };
1533   }
1534   $sth->finish;
1535   $main::lxdebug->leave_sub();
1536 }
1537
1538 # this sub gets the id and name from $table
1539 sub get_name {
1540   $main::lxdebug->enter_sub();
1541
1542   my ($self, $myconfig, $table) = @_;
1543
1544   # connect to database
1545   my $dbh = $self->dbconnect($myconfig);
1546
1547   my $name           = $self->like(lc $self->{$table});
1548   my $customernumber = $self->like(lc $self->{customernumber});
1549
1550   if ($self->{customernumber} ne "") {
1551     $query = qq~SELECT c.id, c.name,
1552                   c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
1553                   FROM $table c
1554                   WHERE (lower(c.customernumber) LIKE '$customernumber') AND (not c.obsolete)
1555                   ORDER BY c.name~;
1556   } else {
1557     $query = qq~SELECT c.id, c.name,
1558                  c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
1559                  FROM $table c
1560                  WHERE (lower(c.name) LIKE '$name') AND (not c.obsolete)
1561                  ORDER BY c.name~;
1562   }
1563
1564   if ($self->{openinvoices}) {
1565     $query = qq~SELECT DISTINCT c.id, c.name,
1566                 c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
1567                 FROM $self->{arap} a
1568                 JOIN $table c ON (a.${table}_id = c.id)
1569                 WHERE NOT a.amount = a.paid
1570                 AND lower(c.name) LIKE '$name'
1571                 ORDER BY c.name~;
1572   }
1573   my $sth = $dbh->prepare($query);
1574
1575   $sth->execute || $self->dberror($query);
1576
1577   my $i = 0;
1578   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1579     push(@{ $self->{name_list} }, $ref);
1580     $i++;
1581   }
1582   $sth->finish;
1583   $dbh->disconnect;
1584
1585   $main::lxdebug->leave_sub();
1586
1587   return $i;
1588 }
1589
1590 # the selection sub is used in the AR, AP, IS, IR and OE module
1591 #
1592 sub all_vc {
1593   $main::lxdebug->enter_sub();
1594
1595   my ($self, $myconfig, $table, $module) = @_;
1596
1597   my $ref;
1598   my $dbh = $self->dbconnect($myconfig);
1599
1600   my $query = qq|SELECT count(*) FROM $table|;
1601   my $sth   = $dbh->prepare($query);
1602   $sth->execute || $self->dberror($query);
1603   my ($count) = $sth->fetchrow_array;
1604   $sth->finish;
1605
1606   # build selection list
1607   if ($count < $myconfig->{vclimit}) {
1608     $query = qq|SELECT id, name
1609                 FROM $table WHERE not obsolete
1610                 ORDER BY name|;
1611     $sth = $dbh->prepare($query);
1612     $sth->execute || $self->dberror($query);
1613
1614     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1615       push @{ $self->{"all_$table"} }, $ref;
1616     }
1617
1618     $sth->finish;
1619
1620   }
1621
1622   # get self
1623   $self->get_employee($dbh);
1624
1625   # setup sales contacts
1626   $query = qq|SELECT e.id, e.name
1627               FROM employee e
1628               WHERE e.sales = '1'
1629               AND NOT e.id = $self->{employee_id}|;
1630   $sth = $dbh->prepare($query);
1631   $sth->execute || $self->dberror($query);
1632
1633   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1634     push @{ $self->{all_employees} }, $ref;
1635   }
1636   $sth->finish;
1637
1638   # this is for self
1639   push @{ $self->{all_employees} },
1640     { id   => $self->{employee_id},
1641       name => $self->{employee} };
1642
1643   # sort the whole thing
1644   @{ $self->{all_employees} } =
1645     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
1646
1647   if ($module eq 'AR') {
1648
1649     # prepare query for departments
1650     $query = qq|SELECT d.id, d.description
1651                 FROM department d
1652                 WHERE d.role = 'P'
1653                 ORDER BY 2|;
1654
1655   } else {
1656     $query = qq|SELECT d.id, d.description
1657                 FROM department d
1658                 ORDER BY 2|;
1659   }
1660
1661   $sth = $dbh->prepare($query);
1662   $sth->execute || $self->dberror($query);
1663
1664   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1665     push @{ $self->{all_departments} }, $ref;
1666   }
1667   $sth->finish;
1668
1669   $dbh->disconnect;
1670   $main::lxdebug->leave_sub();
1671 }
1672
1673 # this is only used for reports
1674 sub all_departments {
1675   $main::lxdebug->enter_sub();
1676
1677   my ($self, $myconfig, $table) = @_;
1678
1679   my $dbh   = $self->dbconnect($myconfig);
1680   my $where = "1 = 1";
1681
1682   if (defined $table) {
1683     if ($table eq 'customer') {
1684       $where = " d.role = 'P'";
1685     }
1686   }
1687
1688   my $query = qq|SELECT d.id, d.description
1689                  FROM department d
1690                  WHERE $where
1691                  ORDER BY 2|;
1692   my $sth = $dbh->prepare($query);
1693   $sth->execute || $self->dberror($query);
1694
1695   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1696     push @{ $self->{all_departments} }, $ref;
1697   }
1698   $sth->finish;
1699
1700   $dbh->disconnect;
1701
1702   $main::lxdebug->leave_sub();
1703 }
1704
1705 sub create_links {
1706   $main::lxdebug->enter_sub();
1707
1708   my ($self, $module, $myconfig, $table) = @_;
1709
1710   $self->all_vc($myconfig, $table, $module);
1711
1712   # get last customers or vendors
1713   my ($query, $sth);
1714
1715   my $dbh = $self->dbconnect($myconfig);
1716
1717   my %xkeyref = ();
1718
1719   # now get the account numbers
1720   $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id
1721               FROM chart c
1722               WHERE c.link LIKE '%$module%'
1723               ORDER BY c.accno|;
1724
1725   $sth = $dbh->prepare($query);
1726   $sth->execute || $self->dberror($query);
1727
1728   $self->{accounts} = "";
1729   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1730
1731     foreach my $key (split /:/, $ref->{link}) {
1732       if ($key =~ /$module/) {
1733
1734         # cross reference for keys
1735         $xkeyref{ $ref->{accno} } = $key;
1736
1737         push @{ $self->{"${module}_links"}{$key} },
1738           { accno       => $ref->{accno},
1739             description => $ref->{description},
1740             taxkey      => $ref->{taxkey_id} };
1741
1742         $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
1743       }
1744     }
1745   }
1746   $sth->finish;
1747
1748   if (($module eq "AP") || ($module eq "AR")) {
1749
1750     # get tax rates and description
1751     $query = qq| SELECT * FROM tax t|;
1752     $sth   = $dbh->prepare($query);
1753     $sth->execute || $self->dberror($query);
1754     $form->{TAX} = ();
1755     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1756       push @{ $self->{TAX} }, $ref;
1757     }
1758     $sth->finish;
1759   }
1760
1761   if ($self->{id}) {
1762     my $arap = ($table eq 'customer') ? 'ar' : 'ap';
1763
1764     $query = qq|SELECT a.cp_id, a.invnumber, a.transdate,
1765                 a.${table}_id, a.datepaid, a.duedate, a.ordnumber,
1766                 a.taxincluded, a.curr AS currency, a.notes, a.intnotes,
1767                 c.name AS $table, a.department_id, d.description AS department,
1768                 a.amount AS oldinvtotal, a.paid AS oldtotalpaid,
1769                 a.employee_id, e.name AS employee, a.gldate
1770                 FROM $arap a
1771                 JOIN $table c ON (a.${table}_id = c.id)
1772                 LEFT JOIN employee e ON (e.id = a.employee_id)
1773                 LEFT JOIN department d ON (d.id = a.department_id)
1774                 WHERE a.id = $self->{id}|;
1775     $sth = $dbh->prepare($query);
1776     $sth->execute || $self->dberror($query);
1777
1778     $ref = $sth->fetchrow_hashref(NAME_lc);
1779     foreach $key (keys %$ref) {
1780       $self->{$key} = $ref->{$key};
1781     }
1782     $sth->finish;
1783
1784     # get amounts from individual entries
1785     $query = qq|SELECT c.accno, c.description, a.source, a.amount, a.memo,
1786                 a.transdate, a.cleared, a.project_id, p.projectnumber, a.taxkey, t.rate
1787                 FROM acc_trans a
1788                 JOIN chart c ON (c.id = a.chart_id)
1789                 LEFT JOIN project p ON (p.id = a.project_id)
1790                 LEFT Join tax t ON (a.taxkey = t.taxkey)
1791                 WHERE a.trans_id = $self->{id}
1792                 AND a.fx_transaction = '0'
1793                 ORDER BY a.oid,a.transdate|;
1794     $sth = $dbh->prepare($query);
1795     $sth->execute || $self->dberror($query);
1796
1797     my $fld = ($table eq 'customer') ? 'buy' : 'sell';
1798
1799     # get exchangerate for currency
1800     $self->{exchangerate} =
1801       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
1802                               $fld);
1803     my $index = 0;
1804
1805     # store amounts in {acc_trans}{$key} for multiple accounts
1806     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1807       $ref->{exchangerate} =
1808         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate},
1809                                 $fld);
1810       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
1811         $index++;
1812       }
1813       $ref->{index} = $index;
1814
1815       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
1816     }
1817     $sth->finish;
1818
1819     $query = qq|SELECT d.curr AS currencies, d.closedto, d.revtrans,
1820                   (SELECT c.accno FROM chart c
1821                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
1822                   (SELECT c.accno FROM chart c
1823                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
1824                 FROM defaults d|;
1825     $sth = $dbh->prepare($query);
1826     $sth->execute || $self->dberror($query);
1827
1828     $ref = $sth->fetchrow_hashref(NAME_lc);
1829     map { $self->{$_} = $ref->{$_} } keys %$ref;
1830     $sth->finish;
1831
1832   } else {
1833
1834     # get date
1835     $query = qq|SELECT current_date AS transdate,
1836                 d.curr AS currencies, d.closedto, d.revtrans,
1837                   (SELECT c.accno FROM chart c
1838                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
1839                   (SELECT c.accno FROM chart c
1840                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
1841                 FROM defaults d|;
1842     $sth = $dbh->prepare($query);
1843     $sth->execute || $self->dberror($query);
1844
1845     $ref = $sth->fetchrow_hashref(NAME_lc);
1846     map { $self->{$_} = $ref->{$_} } keys %$ref;
1847     $sth->finish;
1848
1849     if ($self->{"$self->{vc}_id"}) {
1850
1851       # only setup currency
1852       ($self->{currency}) = split /:/, $self->{currencies};
1853
1854     } else {
1855
1856       $self->lastname_used($dbh, $myconfig, $table, $module);
1857
1858       my $fld = ($table eq 'customer') ? 'buy' : 'sell';
1859
1860       # get exchangerate for currency
1861       $self->{exchangerate} =
1862         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
1863                                 $fld);
1864
1865     }
1866
1867   }
1868
1869   $dbh->disconnect;
1870
1871   $main::lxdebug->leave_sub();
1872 }
1873
1874 sub lastname_used {
1875   $main::lxdebug->enter_sub();
1876
1877   my ($self, $dbh, $myconfig, $table, $module) = @_;
1878
1879   my $arap  = ($table eq 'customer') ? "ar" : "ap";
1880   my $where = "1 = 1";
1881
1882   if ($self->{type} =~ /_order/) {
1883     $arap  = 'oe';
1884     $where = "quotation = '0'";
1885   }
1886   if ($self->{type} =~ /_quotation/) {
1887     $arap  = 'oe';
1888     $where = "quotation = '1'";
1889   }
1890
1891   my $query = qq|SELECT MAX(id) FROM $arap
1892                               WHERE $where
1893                               AND ${table}_id > 0|;
1894   my $sth = $dbh->prepare($query);
1895   $sth->execute || $self->dberror($query);
1896
1897   my ($trans_id) = $sth->fetchrow_array;
1898   $sth->finish;
1899
1900   $trans_id *= 1;
1901   $query = qq|SELECT ct.name, a.curr, a.${table}_id,
1902               current_date + ct.terms AS duedate, a.department_id,
1903               d.description AS department
1904               FROM $arap a
1905               JOIN $table ct ON (a.${table}_id = ct.id)
1906               LEFT JOIN department d ON (a.department_id = d.id)
1907               WHERE a.id = $trans_id|;
1908   $sth = $dbh->prepare($query);
1909   $sth->execute || $self->dberror($query);
1910
1911   ($self->{$table},  $self->{currency},      $self->{"${table}_id"},
1912    $self->{duedate}, $self->{department_id}, $self->{department})
1913     = $sth->fetchrow_array;
1914   $sth->finish;
1915
1916   $main::lxdebug->leave_sub();
1917 }
1918
1919 sub current_date {
1920   $main::lxdebug->enter_sub();
1921
1922   my ($self, $myconfig, $thisdate, $days) = @_;
1923
1924   my $dbh = $self->dbconnect($myconfig);
1925   my ($sth, $query);
1926
1927   $days *= 1;
1928   if ($thisdate) {
1929     my $dateformat = $myconfig->{dateformat};
1930     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
1931
1932     $query = qq|SELECT to_date('$thisdate', '$dateformat') + $days AS thisdate
1933                 FROM defaults|;
1934     $sth = $dbh->prepare($query);
1935     $sth->execute || $self->dberror($query);
1936   } else {
1937     $query = qq|SELECT current_date AS thisdate
1938                 FROM defaults|;
1939     $sth = $dbh->prepare($query);
1940     $sth->execute || $self->dberror($query);
1941   }
1942
1943   ($thisdate) = $sth->fetchrow_array;
1944   $sth->finish;
1945
1946   $dbh->disconnect;
1947
1948   $main::lxdebug->leave_sub();
1949
1950   return $thisdate;
1951 }
1952
1953 sub like {
1954   $main::lxdebug->enter_sub();
1955
1956   my ($self, $string) = @_;
1957
1958   if ($string !~ /%/) {
1959     $string = "%$string%";
1960   }
1961
1962   $string =~ s/\'/\'\'/g;
1963
1964   $main::lxdebug->leave_sub();
1965
1966   return $string;
1967 }
1968
1969 sub redo_rows {
1970   $main::lxdebug->enter_sub();
1971
1972   my ($self, $flds, $new, $count, $numrows) = @_;
1973
1974   my @ndx = ();
1975
1976   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } }
1977     (1 .. $count);
1978
1979   my $i = 0;
1980
1981   # fill rows
1982   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
1983     $i++;
1984     $j = $item->{ndx} - 1;
1985     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
1986   }
1987
1988   # delete empty rows
1989   for $i ($count + 1 .. $numrows) {
1990     map { delete $self->{"${_}_$i"} } @{$flds};
1991   }
1992
1993   $main::lxdebug->leave_sub();
1994 }
1995
1996 sub update_status {
1997   $main::lxdebug->enter_sub();
1998
1999   my ($self, $myconfig) = @_;
2000
2001   my ($i, $id);
2002
2003   my $dbh = $self->dbconnect_noauto($myconfig);
2004
2005   my $query = qq|DELETE FROM status
2006                  WHERE formname = '$self->{formname}'
2007                  AND trans_id = ?|;
2008   my $sth = $dbh->prepare($query) || $self->dberror($query);
2009
2010   if ($self->{formname} =~ /(check|receipt)/) {
2011     for $i (1 .. $self->{rowcount}) {
2012       $sth->execute($self->{"id_$i"} * 1) || $self->dberror($query);
2013       $sth->finish;
2014     }
2015   } else {
2016     $sth->execute($self->{id}) || $self->dberror($query);
2017     $sth->finish;
2018   }
2019
2020   my $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
2021   my $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
2022
2023   my %queued = split / /, $self->{queued};
2024
2025   if ($self->{formname} =~ /(check|receipt)/) {
2026
2027     # this is a check or receipt, add one entry for each lineitem
2028     my ($accno) = split /--/, $self->{account};
2029     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname,
2030                 chart_id) VALUES (?, '$printed',
2031                 '$queued{$self->{formname}}', '$self->{prinform}',
2032                 (SELECT c.id FROM chart c WHERE c.accno = '$accno'))|;
2033     $sth = $dbh->prepare($query) || $self->dberror($query);
2034
2035     for $i (1 .. $self->{rowcount}) {
2036       if ($self->{"checked_$i"}) {
2037         $sth->execute($self->{"id_$i"}) || $self->dberror($query);
2038         $sth->finish;
2039       }
2040     }
2041   } else {
2042     $query = qq|INSERT INTO status (trans_id, printed, emailed,
2043                 spoolfile, formname)
2044                 VALUES ($self->{id}, '$printed', '$emailed',
2045                 '$queued{$self->{formname}}', '$self->{formname}')|;
2046     $dbh->do($query) || $self->dberror($query);
2047   }
2048
2049   $dbh->commit;
2050   $dbh->disconnect;
2051
2052   $main::lxdebug->leave_sub();
2053 }
2054
2055 sub save_status {
2056   $main::lxdebug->enter_sub();
2057
2058   my ($self, $dbh) = @_;
2059
2060   my ($query, $printed, $emailed);
2061
2062   my $formnames  = $self->{printed};
2063   my $emailforms = $self->{emailed};
2064
2065   my $query = qq|DELETE FROM status
2066                  WHERE formname = '$self->{formname}'
2067                  AND trans_id = $self->{id}|;
2068   $dbh->do($query) || $self->dberror($query);
2069
2070   # this only applies to the forms
2071   # checks and receipts are posted when printed or queued
2072
2073   if ($self->{queued}) {
2074     my %queued = split / /, $self->{queued};
2075
2076     foreach my $formname (keys %queued) {
2077       $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
2078       $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
2079
2080       $query = qq|INSERT INTO status (trans_id, printed, emailed,
2081                   spoolfile, formname)
2082                   VALUES ($self->{id}, '$printed', '$emailed',
2083                   '$queued{$formname}', '$formname')|;
2084       $dbh->do($query) || $self->dberror($query);
2085
2086       $formnames  =~ s/$self->{formname}//;
2087       $emailforms =~ s/$self->{formname}//;
2088
2089     }
2090   }
2091
2092   # save printed, emailed info
2093   $formnames  =~ s/^ +//g;
2094   $emailforms =~ s/^ +//g;
2095
2096   my %status = ();
2097   map { $status{$_}{printed} = 1 } split / +/, $formnames;
2098   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
2099
2100   foreach my $formname (keys %status) {
2101     $printed = ($formnames  =~ /$self->{formname}/) ? "1" : "0";
2102     $emailed = ($emailforms =~ /$self->{formname}/) ? "1" : "0";
2103
2104     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
2105                 VALUES ($self->{id}, '$printed', '$emailed', '$formname')|;
2106     $dbh->do($query) || $self->dberror($query);
2107   }
2108
2109   $main::lxdebug->leave_sub();
2110 }
2111
2112 sub update_defaults {
2113   $main::lxdebug->enter_sub();
2114
2115   my ($self, $myconfig, $fld) = @_;
2116
2117   my $dbh   = $self->dbconnect_noauto($myconfig);
2118   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
2119   my $sth   = $dbh->prepare($query);
2120
2121   $sth->execute || $self->dberror($query);
2122   my ($var) = $sth->fetchrow_array;
2123   $sth->finish;
2124
2125   $var++;
2126
2127   $query = qq|UPDATE defaults
2128               SET $fld = '$var'|;
2129   $dbh->do($query) || $form->dberror($query);
2130
2131   $dbh->commit;
2132   $dbh->disconnect;
2133
2134   $main::lxdebug->leave_sub();
2135
2136   return $var;
2137 }
2138
2139 sub update_business {
2140   $main::lxdebug->enter_sub();
2141
2142   my ($self, $myconfig, $business_id) = @_;
2143
2144   my $dbh   = $self->dbconnect_noauto($myconfig);
2145   my $query =
2146     qq|SELECT customernumberinit FROM business  WHERE id=$business_id FOR UPDATE|;
2147   my $sth = $dbh->prepare($query);
2148
2149   $sth->execute || $self->dberror($query);
2150   my ($var) = $sth->fetchrow_array;
2151   $sth->finish;
2152   if ($var ne "") {
2153     $var++;
2154   }
2155   $query = qq|UPDATE business
2156               SET customernumberinit = '$var' WHERE id=$business_id|;
2157   $dbh->do($query) || $form->dberror($query);
2158
2159   $dbh->commit;
2160   $dbh->disconnect;
2161
2162   $main::lxdebug->leave_sub();
2163
2164   return $var;
2165 }
2166
2167 sub get_salesman {
2168   $main::lxdebug->enter_sub();
2169
2170   my ($self, $myconfig, $salesman) = @_;
2171
2172   my $dbh   = $self->dbconnect($myconfig);
2173   my $query =
2174     qq|SELECT id, name FROM customer  WHERE (customernumber ilike '%$salesman%' OR name ilike '%$salesman%') AND business_id in (SELECT id from business WHERE salesman)|;
2175   my $sth = $dbh->prepare($query);
2176   $sth->execute || $self->dberror($query);
2177
2178   my $i = 0;
2179   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2180     push(@{ $self->{salesman_list} }, $ref);
2181     $i++;
2182   }
2183   $dbh->commit;
2184   $main::lxdebug->leave_sub();
2185
2186   return $i;
2187 }
2188
2189 sub get_partsgroup {
2190   $main::lxdebug->enter_sub();
2191
2192   my ($self, $myconfig, $p) = @_;
2193
2194   my $dbh = $self->dbconnect($myconfig);
2195
2196   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
2197                  FROM partsgroup pg
2198                  JOIN parts p ON (p.partsgroup_id = pg.id)|;
2199
2200   if ($p->{searchitems} eq 'part') {
2201     $query .= qq|
2202                  WHERE p.inventory_accno_id > 0|;
2203   }
2204   if ($p->{searchitems} eq 'service') {
2205     $query .= qq|
2206                  WHERE p.inventory_accno_id IS NULL|;
2207   }
2208   if ($p->{searchitems} eq 'assembly') {
2209     $query .= qq|
2210                  WHERE p.assembly = '1'|;
2211   }
2212   if ($p->{searchitems} eq 'labor') {
2213     $query .= qq|
2214                  WHERE p.inventory_accno_id > 0 AND p.income_accno_id IS NULL|;
2215   }
2216
2217   $query .= qq|
2218                  ORDER BY partsgroup|;
2219
2220   if ($p->{all}) {
2221     $query = qq|SELECT id, partsgroup FROM partsgroup
2222                 ORDER BY partsgroup|;
2223   }
2224
2225   if ($p->{language_code}) {
2226     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
2227                 t.description AS translation
2228                 FROM partsgroup pg
2229                 JOIN parts p ON (p.partsgroup_id = pg.id)
2230                 LEFT JOIN translation t ON (t.trans_id = pg.id AND t.language_code = '$p->{language_code}')
2231                 ORDER BY translation|;
2232   }
2233
2234   my $sth = $dbh->prepare($query);
2235   $sth->execute || $self->dberror($query);
2236
2237   $self->{all_partsgroup} = ();
2238   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2239     push @{ $self->{all_partsgroup} }, $ref;
2240   }
2241   $sth->finish;
2242   $dbh->disconnect;
2243   $main::lxdebug->leave_sub();
2244 }
2245
2246 sub get_pricegroup {
2247   $main::lxdebug->enter_sub();
2248
2249   my ($self, $myconfig, $p) = @_;
2250
2251   my $dbh = $self->dbconnect($myconfig);
2252
2253   my $query = qq|SELECT p.id, p.pricegroup
2254                  FROM pricegroup p|;
2255
2256   $query .= qq|
2257                  ORDER BY pricegroup|;
2258
2259   if ($p->{all}) {
2260     $query = qq|SELECT id, pricegroup FROM pricegroup
2261                 ORDER BY pricegroup|;
2262   }
2263
2264   my $sth = $dbh->prepare($query);
2265   $sth->execute || $self->dberror($query);
2266
2267   $self->{all_pricegroup} = ();
2268   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2269     push @{ $self->{all_pricegroup} }, $ref;
2270   }
2271   $sth->finish;
2272   $dbh->disconnect;
2273
2274   $main::lxdebug->leave_sub();
2275 }
2276
2277 sub audittrail {
2278   my ($self, $dbh, $myconfig, $audittrail) = @_;
2279
2280   # table, $reference, $formname, $action, $id, $transdate) = @_;
2281
2282   my $query;
2283   my $rv;
2284   my $disconnect;
2285
2286   if (!$dbh) {
2287     $dbh        = $self->dbconnect($myconfig);
2288     $disconnect = 1;
2289   }
2290
2291   # if we have an id add audittrail, otherwise get a new timestamp
2292
2293   if ($audittrail->{id}) {
2294
2295     $query = qq|SELECT audittrail FROM defaults|;
2296
2297     if ($dbh->selectrow_array($query)) {
2298       my ($null, $employee_id) = $self->get_employee($dbh);
2299
2300       if ($self->{audittrail} && !$myconfig) {
2301         chop $self->{audittrail};
2302
2303         my @a = split /\|/, $self->{audittrail};
2304         my %newtrail = ();
2305         my $key;
2306         my $i;
2307         my @flds = qw(tablename reference formname action transdate);
2308
2309         # put into hash and remove dups
2310         while (@a) {
2311           $key = "$a[2]$a[3]";
2312           $i   = 0;
2313           $newtrail{$key} = { map { $_ => $a[$i++] } @flds };
2314           splice @a, 0, 5;
2315         }
2316
2317         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
2318                     formname, action, employee_id, transdate)
2319                     VALUES ($audittrail->{id}, ?, ?,
2320                     ?, ?, $employee_id, ?)|;
2321         my $sth = $dbh->prepare($query) || $self->dberror($query);
2322
2323         foreach $key (
2324           sort {
2325             $newtrail{$a}{transdate} cmp $newtrail{$b}{transdate}
2326           } keys %newtrail
2327           ) {
2328           $i = 1;
2329           for (@flds) { $sth->bind_param($i++, $newtrail{$key}{$_}) }
2330
2331           $sth->execute || $self->dberror;
2332           $sth->finish;
2333         }
2334       }
2335
2336       if ($audittrail->{transdate}) {
2337         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
2338                     formname, action, employee_id, transdate) VALUES (
2339                     $audittrail->{id}, '$audittrail->{tablename}', |
2340           . $dbh->quote($audittrail->{reference}) . qq|,
2341                     '$audittrail->{formname}', '$audittrail->{action}',
2342                     $employee_id, '$audittrail->{transdate}')|;
2343       } else {
2344         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
2345                     formname, action, employee_id) VALUES ($audittrail->{id},
2346                     '$audittrail->{tablename}', |
2347           . $dbh->quote($audittrail->{reference}) . qq|,
2348                     '$audittrail->{formname}', '$audittrail->{action}',
2349                     $employee_id)|;
2350       }
2351       $dbh->do($query);
2352     }
2353   } else {
2354
2355     $query = qq|SELECT current_timestamp FROM defaults|;
2356     my ($timestamp) = $dbh->selectrow_array($query);
2357
2358     $rv =
2359       "$audittrail->{tablename}|$audittrail->{reference}|$audittrail->{formname}|$audittrail->{action}|$timestamp|";
2360   }
2361
2362   $dbh->disconnect if $disconnect;
2363
2364   $rv;
2365
2366 }
2367
2368 package Locale;
2369
2370 sub new {
2371   $main::lxdebug->enter_sub();
2372
2373   my ($type, $country, $NLS_file) = @_;
2374   my $self = {};
2375
2376   %self = ();
2377   if ($country && -d "locale/$country") {
2378     $self->{countrycode} = $country;
2379     eval { require "locale/$country/$NLS_file"; };
2380   }
2381
2382   $self->{NLS_file} = $NLS_file;
2383
2384   push @{ $self->{LONG_MONTH} },
2385     ("January",   "February", "March",    "April",
2386      "May ",      "June",     "July",     "August",
2387      "September", "October",  "November", "December");
2388   push @{ $self->{SHORT_MONTH} },
2389     (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
2390
2391   $main::lxdebug->leave_sub();
2392
2393   bless $self, $type;
2394 }
2395
2396 sub text {
2397   my ($self, $text) = @_;
2398
2399   return (exists $self{texts}{$text}) ? $self{texts}{$text} : $text;
2400 }
2401
2402 sub findsub {
2403   $main::lxdebug->enter_sub();
2404
2405   my ($self, $text) = @_;
2406
2407   if (exists $self{subs}{$text}) {
2408     $text = $self{subs}{$text};
2409   } else {
2410     if ($self->{countrycode} && $self->{NLS_file}) {
2411       Form->error(
2412          "$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
2413     }
2414   }
2415
2416   $main::lxdebug->leave_sub();
2417
2418   return $text;
2419 }
2420
2421 sub date {
2422   $main::lxdebug->enter_sub();
2423
2424   my ($self, $myconfig, $date, $longformat) = @_;
2425
2426   my $longdate  = "";
2427   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
2428
2429   if ($date) {
2430
2431     # get separator
2432     $spc = $myconfig->{dateformat};
2433     $spc =~ s/\w//g;
2434     $spc = substr($spc, 1, 1);
2435
2436     if ($date =~ /\D/) {
2437       if ($myconfig->{dateformat} =~ /^yy/) {
2438         ($yy, $mm, $dd) = split /\D/, $date;
2439       }
2440       if ($myconfig->{dateformat} =~ /^mm/) {
2441         ($mm, $dd, $yy) = split /\D/, $date;
2442       }
2443       if ($myconfig->{dateformat} =~ /^dd/) {
2444         ($dd, $mm, $yy) = split /\D/, $date;
2445       }
2446     } else {
2447       $date = substr($date, 2);
2448       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
2449     }
2450
2451     $dd *= 1;
2452     $mm--;
2453     $yy = ($yy < 70) ? $yy + 2000 : $yy;
2454     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
2455
2456     if ($myconfig->{dateformat} =~ /^dd/) {
2457       if (defined $longformat && $longformat == 0) {
2458         $mm++;
2459         $dd = "0$dd" if ($dd < 10);
2460         $mm = "0$mm" if ($mm < 10);
2461         $longdate = "$dd$spc$mm$spc$yy";
2462       } else {
2463         $longdate = "$dd";
2464         $longdate .= ($spc eq '.') ? ". " : " ";
2465         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
2466       }
2467     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
2468
2469       # Use German syntax with the ISO date style "yyyy-mm-dd" because
2470       # Lx-Office is mainly used in Germany or German speaking countries.
2471       if (defined $longformat && $longformat == 0) {
2472         $mm++;
2473         $dd = "0$dd" if ($dd < 10);
2474         $mm = "0$mm" if ($mm < 10);
2475         $longdate = "$yy-$mm-$dd";
2476       } else {
2477         $longdate = "$dd. ";
2478         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
2479       }
2480     } else {
2481       if (defined $longformat && $longformat == 0) {
2482         $mm++;
2483         $dd = "0$dd" if ($dd < 10);
2484         $mm = "0$mm" if ($mm < 10);
2485         $longdate = "$mm$spc$dd$spc$yy";
2486       } else {
2487         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
2488       }
2489     }
2490
2491   }
2492
2493   $main::lxdebug->leave_sub();
2494
2495   return $longdate;
2496 }
2497
2498 sub parse_date {
2499   $main::lxdebug->enter_sub();
2500
2501   my ($self, $myconfig, $date, $longformat) = @_;
2502
2503   unless ($date) {
2504     $main::lxdebug->leave_sub();
2505     return ();
2506   }
2507
2508   # get separator
2509   $spc = $myconfig->{dateformat};
2510   $spc =~ s/\w//g;
2511   $spc = substr($spc, 1, 1);
2512
2513   if ($date =~ /\D/) {
2514     if ($myconfig->{dateformat} =~ /^yy/) {
2515       ($yy, $mm, $dd) = split /\D/, $date;
2516     } elsif ($myconfig->{dateformat} =~ /^mm/) {
2517       ($mm, $dd, $yy) = split /\D/, $date;
2518     } elsif ($myconfig->{dateformat} =~ /^dd/) {
2519       ($dd, $mm, $yy) = split /\D/, $date;
2520     }
2521   } else {
2522     $date = substr($date, 2);
2523     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
2524   }
2525
2526   $dd *= 1;
2527   $mm *= 1;
2528   $yy = ($yy < 70) ? $yy + 2000 : $yy;
2529   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
2530
2531   $main::lxdebug->leave_sub();
2532   return ($yy, $mm, $dd);
2533 }
2534
2535 1;