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