978a01596a90e835eebe9b0f9a76ad5796e3e3da
[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 use Data::Dumper;
40
41 use Cwd;
42 use HTML::Template;
43 use Template;
44 use SL::Template;
45 use CGI::Ajax;
46 use SL::DBUtils;
47 use SL::Mailer;
48 use SL::Menu;
49 use SL::User;
50 use SL::Common;
51 use CGI;
52
53 my $standard_dbh;
54
55 sub DESTROY {
56   if ($standard_dbh) {
57     $standard_dbh->disconnect();
58     undef $standard_dbh;
59   }
60 }
61
62 sub _input_to_hash {
63   $main::lxdebug->enter_sub(2);
64
65   my $input = $_[0];
66   my %in    = ();
67   my @pairs = split(/&/, $input);
68
69   foreach (@pairs) {
70     my ($name, $value) = split(/=/, $_, 2);
71     $in{$name} = unescape(undef, $value);
72   }
73
74   $main::lxdebug->leave_sub(2);
75
76   return %in;
77 }
78
79 sub _request_to_hash {
80   $main::lxdebug->enter_sub(2);
81
82   my ($input) = @_;
83
84   if (!$ENV{'CONTENT_TYPE'}
85       || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
86     $main::lxdebug->leave_sub(2);
87     return _input_to_hash($input);
88   }
89
90   my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr);
91   my %params;
92
93   my $boundary = '--' . $1;
94
95   foreach my $line (split m/\n/, $input) {
96     last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
97
98     if (($line eq $boundary) || ($line eq "$boundary\r")) {
99       $params{$name} =~ s|\r?\n$|| if $name;
100
101       undef $name, $filename;
102
103       $headers_done   = 0;
104       $content_type   = "text/plain";
105       $boundary_found = 1;
106       $need_cr        = 0;
107
108       next;
109     }
110
111     next unless $boundary_found;
112
113     if (!$headers_done) {
114       $line =~ s/[\r\n]*$//;
115
116       if (!$line) {
117         $headers_done = 1;
118         next;
119       }
120
121       if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
122         if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
123           $filename = $1;
124           substr $line, $-[0], $+[0] - $-[0], "";
125         }
126
127         if ($line =~ m|name\s*=\s*"(.*?)"|i) {
128           $name = $1;
129           substr $line, $-[0], $+[0] - $-[0], "";
130         }
131
132         $params{$name}    = "";
133         $params{FILENAME} = $filename if ($filename);
134
135         next;
136       }
137
138       if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
139         $content_type = $1;
140       }
141
142       next;
143     }
144
145     next unless $name;
146
147     $params{$name} .= "${line}\n";
148   }
149
150   $params{$name} =~ s|\r?\n$|| if $name;
151
152   $main::lxdebug->leave_sub(2);
153   return %params;
154 }
155
156 sub new {
157   $main::lxdebug->enter_sub();
158
159   my $type = shift;
160
161   my $self = {};
162
163   if ($LXDebug::watch_form) {
164     require SL::Watchdog;
165     tie %{ $self }, 'SL::Watchdog';
166   }
167
168   read(STDIN, $_, $ENV{CONTENT_LENGTH});
169
170   if ($ENV{QUERY_STRING}) {
171     $_ = $ENV{QUERY_STRING};
172   }
173
174   if ($ARGV[0]) {
175     $_ = $ARGV[0];
176   }
177
178   my %parameters = _request_to_hash($_);
179   map({ $self->{$_} = $parameters{$_}; } keys(%parameters));
180
181   $self->{action} = lc $self->{action};
182   $self->{action} =~ s/( |-|,|\#)/_/g;
183
184   $self->{version}   = "2.4.3";
185
186   $main::lxdebug->leave_sub();
187
188   bless $self, $type;
189 }
190
191 sub debug {
192   $main::lxdebug->enter_sub();
193
194   my ($self) = @_;
195
196   print "\n";
197
198   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
199
200   $main::lxdebug->leave_sub();
201 }
202
203 sub escape {
204   $main::lxdebug->enter_sub(2);
205
206   my ($self, $str) = @_;
207
208   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
209
210   $main::lxdebug->leave_sub(2);
211
212   return $str;
213 }
214
215 sub unescape {
216   $main::lxdebug->enter_sub(2);
217
218   my ($self, $str) = @_;
219
220   $str =~ tr/+/ /;
221   $str =~ s/\\$//;
222
223   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
224
225   $main::lxdebug->leave_sub(2);
226
227   return $str;
228 }
229
230 sub quote {
231   my ($self, $str) = @_;
232
233   if ($str && !ref($str)) {
234     $str =~ s/\"/&quot;/g;
235   }
236
237   $str;
238
239 }
240
241 sub unquote {
242   my ($self, $str) = @_;
243
244   if ($str && !ref($str)) {
245     $str =~ s/&quot;/\"/g;
246   }
247
248   $str;
249
250 }
251
252 sub quote_html {
253   $main::lxdebug->enter_sub(2);
254
255   my ($self, $str) = @_;
256
257   my %replace =
258     ('order' => ['"', '<', '>'],
259      '<'             => '&lt;',
260      '>'             => '&gt;',
261      '"'             => '&quot;',
262     );
263
264   map({ $str =~ s/$_/$replace{$_}/g; } @{ $replace{"order"} });
265
266   $main::lxdebug->leave_sub(2);
267
268   return $str;
269 }
270
271 sub hide_form {
272   my $self = shift;
273
274   if (@_) {
275     map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
276   } else {
277     for (sort keys %$self) {
278       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
279       print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
280     }
281   }
282
283 }
284
285 sub error {
286   $main::lxdebug->enter_sub();
287
288   $main::lxdebug->show_backtrace();
289
290   my ($self, $msg) = @_;
291   if ($ENV{HTTP_USER_AGENT}) {
292     $msg =~ s/\n/<br>/g;
293     $self->show_generic_error($msg);
294
295   } else {
296
297     if ($self->{error_function}) {
298       &{ $self->{error_function} }($msg);
299     } else {
300       die "Error: $msg\n";
301     }
302   }
303
304   $main::lxdebug->leave_sub();
305 }
306
307 sub info {
308   $main::lxdebug->enter_sub();
309
310   my ($self, $msg) = @_;
311
312   if ($ENV{HTTP_USER_AGENT}) {
313     $msg =~ s/\n/<br>/g;
314
315     if (!$self->{header}) {
316       $self->header;
317       print qq|
318       <body>|;
319     }
320
321     print qq|
322
323     <p><b>$msg</b>
324     |;
325
326   } else {
327
328     if ($self->{info_function}) {
329       &{ $self->{info_function} }($msg);
330     } else {
331       print "$msg\n";
332     }
333   }
334
335   $main::lxdebug->leave_sub();
336 }
337
338 sub numtextrows {
339   $main::lxdebug->enter_sub();
340
341   my ($self, $str, $cols, $maxrows) = @_;
342
343   my $rows = 0;
344
345   map { $rows += int(((length) - 2) / $cols) + 1 } split /\r/, $str;
346
347   $maxrows = $rows unless defined $maxrows;
348
349   $main::lxdebug->leave_sub();
350
351   return ($rows > $maxrows) ? $maxrows : $rows;
352 }
353
354 sub dberror {
355   $main::lxdebug->enter_sub();
356
357   my ($self, $msg) = @_;
358
359   $self->error("$msg\n" . $DBI::errstr);
360
361   $main::lxdebug->leave_sub();
362 }
363
364 sub isblank {
365   $main::lxdebug->enter_sub();
366
367   my ($self, $name, $msg) = @_;
368
369   if ($self->{$name} =~ /^\s*$/) {
370     $self->error($msg);
371   }
372   $main::lxdebug->leave_sub();
373 }
374
375 sub header {
376   $main::lxdebug->enter_sub();
377
378   my ($self, $extra_code) = @_;
379
380   if ($self->{header}) {
381     $main::lxdebug->leave_sub();
382     return;
383   }
384
385   my ($stylesheet, $favicon);
386
387   if ($ENV{HTTP_USER_AGENT}) {
388
389     if ($self->{stylesheet} && (-f "css/$self->{stylesheet}")) {
390       $stylesheet =
391         qq|<LINK REL="stylesheet" HREF="css/$self->{stylesheet}" TYPE="text/css" TITLE="Lx-Office stylesheet">
392  |;
393     }
394
395     $self->{favicon}    = "favicon.ico" unless $self->{favicon};
396
397     if ($self->{favicon} && (-f "$self->{favicon}")) {
398       $favicon =
399         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
400   |;
401     }
402
403     my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
404
405     if ($self->{landscape}) {
406       $pagelayout = qq|<style type="text/css">
407                         \@page { size:landscape; }
408                         </style>|;
409     }
410
411     my $fokus = qq|  document.$self->{fokus}.focus();| if ($self->{"fokus"});
412
413     #Set Calendar
414     my $jsscript = "";
415     if ($self->{jsscript} == 1) {
416
417       $jsscript = qq|
418         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
419         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
420         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
421         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
422         $self->{javascript}
423        |;
424     }
425
426     $self->{titlebar} =
427       ($self->{title})
428       ? "$self->{title} - $self->{titlebar}"
429       : $self->{titlebar};
430     my $ajax = "";
431     foreach $item (@ { $self->{AJAX} }) {
432       $ajax .= $item->show_javascript();
433     }
434     print qq|Content-Type: text/html; charset=${db_charset};
435
436 <html>
437 <head>
438   <title>$self->{titlebar}</title>
439   $stylesheet
440   $pagelayout
441   $favicon
442   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
443   $jsscript
444   $ajax
445
446   <script type="text/javascript">
447   <!--
448     function fokus() {
449       $fokus
450     }
451   //-->
452   </script>
453
454   <meta name="robots" content="noindex,nofollow" />
455   <script type="text/javascript" src="js/highlight_input.js"></script>
456   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
457
458   <script type="text/javascript" src="js/tabcontent.js">
459
460   /***********************************************
461   * Tab Content script- Dynamic Drive DHTML code library (www.dynamicdrive.com)
462   * This notice MUST stay intact for legal use
463   * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
464   ***********************************************/
465
466   </script>
467
468   $extra_code
469 </head>
470
471 |;
472   }
473   $self->{header} = 1;
474
475   $main::lxdebug->leave_sub();
476 }
477
478 sub _prepare_html_template {
479   $main::lxdebug->enter_sub();
480
481   my ($self, $file, $additional_params) = @_;
482   my $language;
483
484   if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
485     $language = $main::language;
486   } else {
487     $language = $main::myconfig{"countrycode"};
488   }
489   $language = "de" unless ($language);
490
491   if (-f "templates/webpages/${file}_${language}.html") {
492     if ((-f ".developer") &&
493         (-f "templates/webpages/${file}_master.html") &&
494         ((stat("templates/webpages/${file}_master.html"))[9] >
495          (stat("templates/webpages/${file}_${language}.html"))[9])) {
496       my $info = "Developer information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
497         "Please re-run 'locales.pl' in 'locale/${language}'.";
498       print(qq|<pre>$info</pre>|);
499       die($info);
500     }
501
502     $file = "templates/webpages/${file}_${language}.html";
503   } elsif (-f "templates/webpages/${file}.html") {
504     $file = "templates/webpages/${file}.html";
505   } else {
506     my $info = "Web page template '${file}' not found.\n" .
507       "Please re-run 'locales.pl' in 'locale/${language}'.";
508     print(qq|<pre>$info</pre>|);
509     die($info);
510   }
511
512   if ($self->{"DEBUG"}) {
513     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
514   }
515
516   if ($additional_params->{"DEBUG"}) {
517     $additional_params->{"DEBUG"} =
518       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
519   }
520
521   if (%main::myconfig) {
522     map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
523     my $jsc_dateformat = $main::myconfig{"dateformat"};
524     $jsc_dateformat =~ s/d+/\%d/gi;
525     $jsc_dateformat =~ s/m+/\%m/gi;
526     $jsc_dateformat =~ s/y+/\%Y/gi;
527     $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
528   }
529
530   $additional_params->{"conf_webdav"}                 = $main::webdav;
531   $additional_params->{"conf_lizenzen"}               = $main::lizenzen;
532   $additional_params->{"conf_latex_templates"}        = $main::latex;
533   $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
534
535   if (%main::debug_options) {
536     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
537   }
538
539   $main::lxdebug->leave_sub();
540
541   return $file;
542 }
543
544 sub parse_html_template {
545   $main::lxdebug->enter_sub();
546
547   my ($self, $file, $additional_params) = @_;
548
549   $additional_params ||= { };
550
551   $file = $self->_prepare_html_template($file, $additional_params);
552
553   my $template = HTML::Template->new("filename" => $file,
554                                      "die_on_bad_params" => 0,
555                                      "strict" => 0,
556                                      "case_sensitive" => 1,
557                                      "loop_context_vars" => 1,
558                                      "global_vars" => 1);
559
560   foreach my $key ($template->param()) {
561     my $param = $additional_params->{$key} || $self->{$key};
562     $param = [] if (($template->query("name" => $key) eq "LOOP") && (ref($param) ne "ARRAY"));
563     $template->param($key => $param);
564   }
565
566   my $output = $template->output();
567
568   $output = $main::locale->{iconv}->convert($output) if ($main::locale);
569
570   $main::lxdebug->leave_sub();
571
572   return $output;
573 }
574
575 sub parse_html_template2 {
576   $main::lxdebug->enter_sub();
577
578   my ($self, $file, $additional_params) = @_;
579
580   $additional_params ||= { };
581
582   $file = $self->_prepare_html_template($file, $additional_params);
583
584   my $template = Template->new({ 'INTERPOLATE' => 0,
585                                  'EVAL_PERL'   => 0,
586                                  'ABSOLUTE'    => 1,
587                                  'CACHE_SIZE'  => 0,
588                                }) || die;
589
590   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
591
592   my $output;
593   $template->process($file, $additional_params, \$output);
594
595   $output = $main::locale->{iconv}->convert($output) if ($main::locale);
596
597   $main::lxdebug->leave_sub();
598
599   return $output;
600 }
601
602 sub show_generic_error {
603   my ($self, $error, $title, $action) = @_;
604
605   my $add_params = {};
606   $add_params->{"title"} = $title if ($title);
607   $self->{"label_error"} = $error;
608
609   my @vars;
610   if ($action) {
611     map({ delete($self->{$_}); } qw(action));
612     map({ push(@vars, { "name" => $_, "value" => $self->{$_} })
613             if (!ref($self->{$_})); }
614         keys(%{$self}));
615     $add_params->{"SHOW_BUTTON"} = 1;
616     $add_params->{"BUTTON_LABEL"} = $action;
617   }
618   $add_params->{"VARIABLES"} = \@vars;
619
620   $self->header();
621   print($self->parse_html_template("generic/error", $add_params));
622
623   die("Error: $error\n");
624 }
625
626 sub show_generic_information {
627   my ($self, $error, $title) = @_;
628
629   my $add_params = {};
630   $add_params->{"title"} = $title if ($title);
631   $self->{"label_information"} = $error;
632
633   $self->header();
634   print($self->parse_html_template("generic/information", $add_params));
635
636   die("Information: $error\n");
637 }
638
639 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
640 # changed it to accept an arbitrary number of triggers - sschoeling
641 sub write_trigger {
642   $main::lxdebug->enter_sub();
643
644   my $self     = shift;
645   my $myconfig = shift;
646   my $qty      = shift;
647
648   # set dateform for jsscript
649   # default
650   my %dateformats = (
651     "dd.mm.yy" => "%d.%m.%Y",
652     "dd-mm-yy" => "%d-%m-%Y",
653     "dd/mm/yy" => "%d/%m/%Y",
654     "mm/dd/yy" => "%m/%d/%Y",
655     "mm-dd-yy" => "%m-%d-%Y",
656     "yyyy-mm-dd" => "%Y-%m-%d",
657     );
658
659   my $ifFormat = defined($dateformats{$myconfig{"dateformat"}}) ?
660     $dateformats{$myconfig{"dateformat"}} : "%d.%m.%Y";
661
662   my @triggers;
663   while ($#_ >= 2) {
664     push @triggers, qq|
665        Calendar.setup(
666       {
667       inputField : "| . (shift) . qq|",
668       ifFormat :"$ifFormat",
669       align : "| .  (shift) . qq|",
670       button : "| . (shift) . qq|"
671       }
672       );
673        |;
674   }
675   my $jsscript = qq|
676        <script type="text/javascript">
677        <!--| . join("", @triggers) . qq|//-->
678         </script>
679         |;
680
681   $main::lxdebug->leave_sub();
682
683   return $jsscript;
684 }    #end sub write_trigger
685
686 sub redirect {
687   $main::lxdebug->enter_sub();
688
689   my ($self, $msg) = @_;
690
691   if ($self->{callback}) {
692
693     ($script, $argv) = split(/\?/, $self->{callback}, 2);
694     $script =~ s|.*/||;
695     $script =~ s|[^a-zA-Z_\.]||g;
696     exec("perl", "$script", $argv);
697
698   } else {
699
700     $self->info($msg);
701     exit;
702   }
703
704   $main::lxdebug->leave_sub();
705 }
706
707 # sort of columns removed - empty sub
708 sub sort_columns {
709   $main::lxdebug->enter_sub();
710
711   my ($self, @columns) = @_;
712
713   $main::lxdebug->leave_sub();
714
715   return @columns;
716 }
717 #
718 sub format_amount {
719   $main::lxdebug->enter_sub(2);
720
721   my ($self, $myconfig, $amount, $places, $dash) = @_;
722
723   if ($amount eq "") {
724     $amount = 0;
725   }
726   my $neg = ($amount =~ s/-//);
727
728   if (defined($places) && ($places ne '')) {
729     if ($places < 0) {
730       $amount *= 1;
731       $places *= -1;
732
733       my ($actual_places) = ($amount =~ /\.(\d+)/);
734       $actual_places = length($actual_places);
735       $places = $actual_places > $places ? $actual_places : $places;
736     }
737
738     $amount = $self->round_amount($amount, $places);
739   }
740
741   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
742   my @p = split(/\./, $amount); # split amount at decimal point
743
744   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
745
746   $amount = $p[0];
747   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
748
749   $amount = do {
750     ($dash =~ /-/)    ? ($neg ? "($amount)"  : "$amount" )    :
751     ($dash =~ /DRCR/) ? ($neg ? "$amount DR" : "$amount CR" ) :
752                         ($neg ? "-$amount"   : "$amount" )    ;
753   };
754
755
756   $main::lxdebug->leave_sub(2);
757   return $amount;
758 }
759 #
760 sub parse_amount {
761   $main::lxdebug->enter_sub(2);
762
763   my ($self, $myconfig, $amount) = @_;
764
765   if (   ($myconfig->{numberformat} eq '1.000,00')
766       || ($myconfig->{numberformat} eq '1000,00')) {
767     $amount =~ s/\.//g;
768     $amount =~ s/,/\./;
769   }
770
771   if ($myconfig->{numberformat} eq "1'000.00") {
772     $amount =~ s/\'//g;
773   }
774
775   $amount =~ s/,//g;
776
777   $main::lxdebug->leave_sub(2);
778
779   return ($amount * 1);
780 }
781
782 sub round_amount {
783   $main::lxdebug->enter_sub(2);
784
785   my ($self, $amount, $places) = @_;
786   my $round_amount;
787
788   # Rounding like "Kaufmannsrunden"
789   # Descr. http://de.wikipedia.org/wiki/Rundung
790   # Inspired by
791   # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
792   # Solves Bug: 189
793   # Udo Spallek
794   $amount = $amount * (10**($places));
795   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
796
797   $main::lxdebug->leave_sub(2);
798
799   return $round_amount;
800
801 }
802
803 sub parse_template {
804   $main::lxdebug->enter_sub();
805
806   my ($self, $myconfig, $userspath) = @_;
807   my ($template, $out);
808
809   local (*IN, *OUT);
810
811   $self->{"cwd"} = getcwd();
812   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
813
814   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
815     $template = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
816   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
817     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
818     $template = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
819   } elsif (($self->{"format"} =~ /html/i) ||
820            (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
821     $template = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
822   } elsif (($self->{"format"} =~ /xml/i) ||
823              (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
824     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
825   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
826     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
827   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
828     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
829   } elsif ( defined $self->{'format'}) {
830     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
831   } elsif ( $self->{'format'} eq '' ) {
832     $self->error("No Outputformat given: $self->{'format'}");
833   } else { #Catch the rest
834     $self->error("Outputformat not defined: $self->{'format'}");
835   }
836
837   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
838   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
839
840   map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
841       qw(email tel fax name signature company address businessnumber
842          co_ustid taxnumber duns));
843   map({ $self->{"employee_${_}"} =~ s/\\n/\n/g; }
844       qw(company address signature));
845   map({ $self->{$_} =~ s/\\n/\n/g; } qw(company address signature));
846
847   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
848
849   # OUT is used for the media, screen, printer, email
850   # for postscript we store a copy in a temporary file
851   my $fileid = time;
852   my $prepend_userspath;
853
854   if (!$self->{tmpfile}) {
855     $self->{tmpfile}   = "${fileid}.$self->{IN}";
856     $prepend_userspath = 1;
857   }
858
859   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
860
861   $self->{tmpfile} =~ s|.*/||;
862   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
863   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
864
865   if ($template->uses_temp_file() || $self->{media} eq 'email') {
866     $out = $self->{OUT};
867     $self->{OUT} = ">$self->{tmpfile}";
868   }
869
870   if ($self->{OUT}) {
871     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
872   } else {
873     open(OUT, ">-") or $self->error("STDOUT : $!");
874     $self->header;
875   }
876
877   if (!$template->parse(*OUT)) {
878     $self->cleanup();
879     $self->error("$self->{IN} : " . $template->get_error());
880   }
881
882   close(OUT);
883
884   if ($template->uses_temp_file() || $self->{media} eq 'email') {
885
886     if ($self->{media} eq 'email') {
887
888       my $mail = new Mailer;
889
890       map { $mail->{$_} = $self->{$_} }
891         qw(cc bcc subject message version format);
892       $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
893       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
894       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
895       $mail->{fileid} = "$fileid.";
896       $myconfig->{signature} =~ s/\\r\\n/\\n/g;
897
898       # if we send html or plain text inline
899       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
900         $mail->{contenttype} = "text/html";
901
902         $mail->{message}       =~ s/\r\n/<br>\n/g;
903         $myconfig->{signature} =~ s/\\n/<br>\n/g;
904         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
905
906         open(IN, $self->{tmpfile})
907           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
908         while (<IN>) {
909           $mail->{message} .= $_;
910         }
911
912         close(IN);
913
914       } else {
915
916         if (!$self->{"do_not_attach"}) {
917           @{ $mail->{attachments} } =
918             ({ "filename" => $self->{"tmpfile"},
919                "name" => $self->{"attachment_filename"} ?
920                  $self->{"attachment_filename"} : $self->{"tmpfile"} });
921         }
922
923         $mail->{message}       =~ s/\r\n/\n/g;
924         $myconfig->{signature} =~ s/\\n/\n/g;
925         $mail->{message} .= "\n-- \n$myconfig->{signature}";
926
927       }
928
929       my $err = $mail->send();
930       $self->error($self->cleanup . "$err") if ($err);
931
932     } else {
933
934       $self->{OUT} = $out;
935
936       my $numbytes = (-s $self->{tmpfile});
937       open(IN, $self->{tmpfile})
938         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
939
940       $self->{copies} = 1 unless $self->{media} eq 'printer';
941
942       chdir("$self->{cwd}");
943       #print(STDERR "Kopien $self->{copies}\n");
944       #print(STDERR "OUT $self->{OUT}\n");
945       for my $i (1 .. $self->{copies}) {
946         if ($self->{OUT}) {
947           open(OUT, $self->{OUT})
948             or $self->error($self->cleanup . "$self->{OUT} : $!");
949         } else {
950           $self->{attachment_filename} = ($self->{attachment_filename}) 
951                                        ? $self->{attachment_filename}
952                                        : $self->generate_attachment_filename();
953
954           # launch application
955           print qq|Content-Type: | . $template->get_mime_type() . qq|
956 Content-Disposition: attachment; filename="$self->{attachment_filename}"
957 Content-Length: $numbytes
958
959 |;
960
961           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
962
963         }
964
965         while (<IN>) {
966           print OUT $_;
967         }
968
969         close(OUT);
970
971         seek IN, 0, 0;
972       }
973
974       close(IN);
975     }
976
977   }
978
979   $self->cleanup;
980
981   chdir("$self->{cwd}");
982   $main::lxdebug->leave_sub();
983 }
984
985 sub generate_attachment_filename {
986   my ($self) = @_;
987
988   my %formname_translations = (
989      bin_list            => $main::locale->text('Bin List'),
990      credit_note         => $main::locale->text('Credit Note'),
991      invoice             => $main::locale->text('Invoice'),
992      packing_list        => $main::locale->text('Packing List'),
993      pick_list           => $main::locale->text('Pick List'),
994      proforma            => $main::locale->text('Proforma Invoice'),
995      purchase_order      => $main::locale->text('Purchase Order'),
996      request_quotation   => $main::locale->text('RFQ'),
997      sales_order         => $main::locale->text('Confirmation'),
998      sales_quotation     => $main::locale->text('Quotation'),
999      storno_invoice      => $main::locale->text('Storno Invoice'),
1000      storno_packing_list => $main::locale->text('Storno Packing List'),
1001   );
1002
1003   my $attachment_filename = $formname_translations{$self->{"formname"}};
1004   my $prefix = 
1005       (grep { $self->{"type"} eq $_ } qw(invoice credit_note)) ? "inv"
1006     : ($self->{"type"} =~ /_quotation$/)                       ? "quo"
1007     :                                                            "ord";
1008
1009   if ($attachment_filename && $self->{"${prefix}number"}) {
1010     $attachment_filename .= "_" . $self->{"${prefix}number"}
1011                             . (  $self->{format} =~ /pdf/i          ? ".pdf"
1012                                : $self->{format} =~ /postscript/i   ? ".ps"
1013                                : $self->{format} =~ /opendocument/i ? ".odt"
1014                                : $self->{format} =~ /html/i         ? ".html"
1015                                :                                      "");
1016     $attachment_filename =~ s/ /_/g;
1017     my %umlaute = ( "ä" => "ae", "ö" => "oe", "ü" => "ue", 
1018                     "Ä" => "Ae", "Ö" => "Oe", "Ãœ" => "Ue", "ß" => "ss");
1019     map { $attachment_filename =~ s/$_/$umlaute{$_}/g } keys %umlaute;
1020   } else {
1021     $attachment_filename = "";
1022   }
1023
1024   return $attachment_filename;
1025 }
1026
1027 sub cleanup {
1028   $main::lxdebug->enter_sub();
1029
1030   my $self = shift;
1031
1032   chdir("$self->{tmpdir}");
1033
1034   my @err = ();
1035   if (-f "$self->{tmpfile}.err") {
1036     open(FH, "$self->{tmpfile}.err");
1037     @err = <FH>;
1038     close(FH);
1039   }
1040
1041   if ($self->{tmpfile}) {
1042     $self->{tmpfile} =~ s|.*/||g;
1043     # strip extension
1044     $self->{tmpfile} =~ s/\.\w+$//g;
1045     my $tmpfile = $self->{tmpfile};
1046     unlink(<$tmpfile.*>);
1047   }
1048
1049   chdir("$self->{cwd}");
1050
1051   $main::lxdebug->leave_sub();
1052
1053   return "@err";
1054 }
1055
1056 sub datetonum {
1057   $main::lxdebug->enter_sub();
1058
1059   my ($self, $date, $myconfig) = @_;
1060
1061   if ($date && $date =~ /\D/) {
1062
1063     if ($myconfig->{dateformat} =~ /^yy/) {
1064       ($yy, $mm, $dd) = split /\D/, $date;
1065     }
1066     if ($myconfig->{dateformat} =~ /^mm/) {
1067       ($mm, $dd, $yy) = split /\D/, $date;
1068     }
1069     if ($myconfig->{dateformat} =~ /^dd/) {
1070       ($dd, $mm, $yy) = split /\D/, $date;
1071     }
1072
1073     $dd *= 1;
1074     $mm *= 1;
1075     $yy = ($yy < 70) ? $yy + 2000 : $yy;
1076     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1077
1078     $dd = "0$dd" if ($dd < 10);
1079     $mm = "0$mm" if ($mm < 10);
1080
1081     $date = "$yy$mm$dd";
1082   }
1083
1084   $main::lxdebug->leave_sub();
1085
1086   return $date;
1087 }
1088
1089 # Database routines used throughout
1090
1091 sub dbconnect {
1092   $main::lxdebug->enter_sub(2);
1093
1094   my ($self, $myconfig) = @_;
1095
1096   # connect to database
1097   my $dbh =
1098     DBI->connect($myconfig->{dbconnect},
1099                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
1100     or $self->dberror;
1101
1102   # set db options
1103   if ($myconfig->{dboptions}) {
1104     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1105   }
1106
1107   $main::lxdebug->leave_sub(2);
1108
1109   return $dbh;
1110 }
1111
1112 sub dbconnect_noauto {
1113   $main::lxdebug->enter_sub();
1114
1115   my ($self, $myconfig) = @_;
1116   
1117   # connect to database
1118   $dbh =
1119     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
1120                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
1121     or $self->dberror;
1122
1123   # set db options
1124   if ($myconfig->{dboptions}) {
1125     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1126   }
1127
1128   $main::lxdebug->leave_sub();
1129
1130   return $dbh;
1131 }
1132
1133 sub get_standard_dbh {
1134   $main::lxdebug->enter_sub(2);
1135
1136   my ($self, $myconfig) = @_;
1137
1138   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
1139
1140   $main::lxdebug->leave_sub(2);
1141
1142   return $standard_dbh;
1143 }
1144
1145 sub update_balance {
1146   $main::lxdebug->enter_sub();
1147
1148   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1149
1150   # if we have a value, go do it
1151   if ($value != 0) {
1152
1153     # retrieve balance from table
1154     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1155     my $sth = prepare_execute_query($self, $dbh, $query, @values);
1156     my ($balance) = $sth->fetchrow_array;
1157     $sth->finish;
1158
1159     $balance += $value;
1160
1161     # update balance
1162     $query = "UPDATE $table SET $field = $balance WHERE $where";
1163     do_query($self, $dbh, $query, @values);
1164   }
1165   $main::lxdebug->leave_sub();
1166 }
1167
1168 sub update_exchangerate {
1169   $main::lxdebug->enter_sub();
1170
1171   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1172
1173   # some sanity check for currency
1174   if ($curr eq '') {
1175     $main::lxdebug->leave_sub();
1176     return;
1177   }  
1178   my $query = qq|SELECT curr FROM defaults|;
1179
1180   my ($currency) = selectrow_query($self, $dbh, $query);
1181   my ($defaultcurrency) = split m/:/, $currency;
1182
1183
1184   if ($curr eq $defaultcurrency) {
1185     $main::lxdebug->leave_sub();
1186     return;
1187   }
1188
1189   my $query = qq|SELECT e.curr FROM exchangerate e
1190                  WHERE e.curr = ? AND e.transdate = ?
1191                  FOR UPDATE|;
1192   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1193
1194   if ($buy == 0) {
1195     $buy = "";
1196   }
1197   if ($sell == 0) {
1198     $sell = "";
1199   }
1200
1201   $buy = conv_i($buy, "NULL");
1202   $sell = conv_i($sell, "NULL");
1203
1204   my $set;
1205   if ($buy != 0 && $sell != 0) {
1206     $set = "buy = $buy, sell = $sell";
1207   } elsif ($buy != 0) {
1208     $set = "buy = $buy";
1209   } elsif ($sell != 0) {
1210     $set = "sell = $sell";
1211   }
1212
1213   if ($sth->fetchrow_array) {
1214     $query = qq|UPDATE exchangerate
1215                 SET $set
1216                 WHERE curr = ?
1217                 AND transdate = ?|;
1218     
1219   } else {
1220     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1221                 VALUES (?, $buy, $sell, ?)|;
1222   }
1223   $sth->finish;
1224   do_query($self, $dbh, $query, $curr, $transdate);
1225
1226   $main::lxdebug->leave_sub();
1227 }
1228
1229 sub save_exchangerate {
1230   $main::lxdebug->enter_sub();
1231
1232   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1233
1234   my $dbh = $self->dbconnect($myconfig);
1235
1236   my ($buy, $sell);
1237
1238   $buy  = $rate if $fld eq 'buy';
1239   $sell = $rate if $fld eq 'sell';
1240
1241
1242   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1243
1244
1245   $dbh->disconnect;
1246
1247   $main::lxdebug->leave_sub();
1248 }
1249
1250 sub get_exchangerate {
1251   $main::lxdebug->enter_sub();
1252
1253   my ($self, $dbh, $curr, $transdate, $fld) = @_;
1254
1255   unless ($transdate) {
1256     $main::lxdebug->leave_sub();
1257     return 1;
1258   }
1259
1260   my $query = qq|SELECT curr FROM defaults|;
1261
1262   my ($currency) = selectrow_query($self, $dbh, $query);
1263   my ($defaultcurrency) = split m/:/, $currency;
1264
1265   if ($currency eq $defaultcurrency) {
1266     $main::lxdebug->leave_sub();
1267     return 1;
1268   }
1269
1270   my $query = qq|SELECT e.$fld FROM exchangerate e
1271                  WHERE e.curr = ? AND e.transdate = ?|;
1272   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1273
1274
1275
1276   $main::lxdebug->leave_sub();
1277
1278   return $exchangerate;
1279 }
1280
1281 sub check_exchangerate {
1282   $main::lxdebug->enter_sub();
1283
1284   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1285
1286   unless ($transdate) {
1287     $main::lxdebug->leave_sub();
1288     return "";
1289   }
1290
1291   my ($defaultcurrency) = $self->get_default_currency($myconfig);
1292
1293   if ($currency eq $defaultcurrency) {
1294     $main::lxdebug->leave_sub();
1295     return 1;
1296   }
1297
1298   my $dbh   = $self->get_standard_dbh($myconfig);
1299   my $query = qq|SELECT e.$fld FROM exchangerate e
1300                  WHERE e.curr = ? AND e.transdate = ?|;
1301
1302   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1303
1304   $exchangerate = 1 if ($exchangerate eq "");
1305
1306   $main::lxdebug->leave_sub();
1307
1308   return $exchangerate;
1309 }
1310
1311 sub get_default_currency {
1312   $main::lxdebug->enter_sub();
1313
1314   my ($self, $myconfig) = @_;
1315   my $dbh = $self->get_standard_dbh($myconfig);
1316
1317   my $query = qq|SELECT curr FROM defaults|;
1318
1319   my ($curr)            = selectrow_query($self, $dbh, $query);
1320   my ($defaultcurrency) = split m/:/, $curr;
1321
1322   $main::lxdebug->leave_sub();
1323
1324   return $defaultcurrency;
1325 }
1326
1327
1328 sub set_payment_options {
1329   $main::lxdebug->enter_sub();
1330
1331   my ($self, $myconfig, $transdate) = @_;
1332
1333   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
1334
1335   my $dbh = $self->get_standard_dbh($myconfig);
1336
1337   my $query =
1338     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
1339     qq|FROM payment_terms p | .
1340     qq|WHERE p.id = ?|;
1341
1342   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
1343    $self->{payment_terms}) =
1344      selectrow_query($self, $dbh, $query, $self->{payment_id});
1345
1346   if ($transdate eq "") {
1347     if ($self->{invdate}) {
1348       $transdate = $self->{invdate};
1349     } else {
1350       $transdate = $self->{transdate};
1351     }
1352   }
1353
1354   $query =
1355     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
1356     qq|FROM payment_terms|;
1357   ($self->{netto_date}, $self->{skonto_date}) =
1358     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
1359
1360   my $total = ($self->{invtotal}) ? $self->{invtotal} : $self->{ordtotal};
1361   my $skonto_amount = $self->parse_amount($myconfig, $total) *
1362     $self->{percent_skonto};
1363
1364   $self->{skonto_amount} =
1365     $self->format_amount($myconfig, $skonto_amount, 2);
1366
1367   if ($self->{"language_id"}) {
1368     $query =
1369       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1370       qq|FROM translation_payment_terms t | .
1371       qq|LEFT JOIN language l ON t.language_id = l.id | .
1372       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
1373     my ($description_long, $output_numberformat, $output_dateformat,
1374       $output_longdates) =
1375       selectrow_query($self, $dbh, $query,
1376                       $self->{"language_id"}, $self->{"payment_id"});
1377
1378     $self->{payment_terms} = $description_long if ($description_long);
1379
1380     if ($output_dateformat) {
1381       foreach my $key (qw(netto_date skonto_date)) {
1382         $self->{$key} =
1383           $main::locale->reformat_date($myconfig, $self->{$key},
1384                                        $output_dateformat,
1385                                        $output_longdates);
1386       }
1387     }
1388
1389     if ($output_numberformat &&
1390         ($output_numberformat ne $myconfig->{"numberformat"})) {
1391       my $saved_numberformat = $myconfig->{"numberformat"};
1392       $myconfig->{"numberformat"} = $output_numberformat;
1393       $self->{skonto_amount} =
1394         $self->format_amount($myconfig, $skonto_amount, 2);
1395       $myconfig->{"numberformat"} = $saved_numberformat;
1396     }
1397   }
1398
1399   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1400   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1401   $self->{payment_terms} =~ s/<%skonto_amount%>/$self->{skonto_amount}/g;
1402   $self->{payment_terms} =~ s/<%total%>/$self->{total}/g;
1403   $self->{payment_terms} =~ s/<%invtotal%>/$self->{invtotal}/g;
1404   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1405   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1406   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1407   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1408   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1409
1410   $main::lxdebug->leave_sub();
1411
1412 }
1413
1414 sub get_template_language {
1415   $main::lxdebug->enter_sub();
1416
1417   my ($self, $myconfig) = @_;
1418
1419   my $template_code = "";
1420
1421   if ($self->{language_id}) {
1422     my $dbh = $self->get_standard_dbh($myconfig);
1423     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1424     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1425   }
1426
1427   $main::lxdebug->leave_sub();
1428
1429   return $template_code;
1430 }
1431
1432 sub get_printer_code {
1433   $main::lxdebug->enter_sub();
1434
1435   my ($self, $myconfig) = @_;
1436
1437   my $template_code = "";
1438
1439   if ($self->{printer_id}) {
1440     my $dbh = $self->get_standard_dbh($myconfig);
1441     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1442     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1443   }
1444
1445   $main::lxdebug->leave_sub();
1446
1447   return $template_code;
1448 }
1449
1450 sub get_shipto {
1451   $main::lxdebug->enter_sub();
1452
1453   my ($self, $myconfig) = @_;
1454
1455   my $template_code = "";
1456
1457   if ($self->{shipto_id}) {
1458     my $dbh = $self->get_standard_dbh($myconfig);
1459     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1460     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1461     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1462   }
1463
1464   $main::lxdebug->leave_sub();
1465 }
1466
1467 sub add_shipto {
1468   $main::lxdebug->enter_sub();
1469
1470   my ($self, $dbh, $id, $module) = @_;
1471
1472   my $shipto;
1473   my @values;
1474
1475   foreach my $item (qw(name department_1 department_2 street zipcode city country
1476                        contact phone fax email)) {
1477     if ($self->{"shipto$item"}) {
1478       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1479     }
1480     push(@values, $self->{"shipto${item}"});
1481   }
1482
1483   if ($shipto) {
1484     if ($self->{shipto_id}) {
1485       my $query = qq|UPDATE shipto set
1486                        shiptoname = ?,
1487                        shiptodepartment_1 = ?,
1488                        shiptodepartment_2 = ?,
1489                        shiptostreet = ?,
1490                        shiptozipcode = ?,
1491                        shiptocity = ?,
1492                        shiptocountry = ?,
1493                        shiptocontact = ?,
1494                        shiptophone = ?,
1495                        shiptofax = ?,
1496                        shiptoemail = ?
1497                      WHERE shipto_id = ?|;
1498       do_query($self, $dbh, $query, @values, $self->{shipto_id});
1499     } else {
1500       my $query = qq|SELECT * FROM shipto
1501                      WHERE shiptoname = ? AND
1502                        shiptodepartment_1 = ? AND
1503                        shiptodepartment_2 = ? AND
1504                        shiptostreet = ? AND
1505                        shiptozipcode = ? AND
1506                        shiptocity = ? AND
1507                        shiptocountry = ? AND
1508                        shiptocontact = ? AND
1509                        shiptophone = ? AND
1510                        shiptofax = ? AND
1511                        shiptoemail = ? AND
1512                        module = ? AND 
1513                        trans_id = ?|;
1514       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
1515       if(!$insert_check){
1516         $query =
1517           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
1518                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
1519                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
1520              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1521         do_query($self, $dbh, $query, $id, @values, $module);
1522       }
1523     }
1524   }
1525
1526   $main::lxdebug->leave_sub();
1527 }
1528
1529 sub get_employee {
1530   $main::lxdebug->enter_sub();
1531
1532   my ($self, $dbh) = @_;
1533
1534   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
1535   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
1536   $self->{"employee_id"} *= 1;
1537
1538   $main::lxdebug->leave_sub();
1539 }
1540
1541 sub get_salesman {
1542   $main::lxdebug->enter_sub();
1543
1544   my ($self, $myconfig, $salesman_id) = @_;
1545
1546   $main::lxdebug->leave_sub() and return unless $salesman_id;
1547
1548   my $dbh = $self->get_standard_dbh($myconfig);
1549
1550   my ($login) =
1551     selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|,
1552                     $salesman_id);
1553
1554   if ($login) {
1555     my $user = new User($main::memberfile, $login);
1556     map({ $self->{"salesman_$_"} = $user->{$_}; }
1557         qw(address businessnumber co_ustid company duns email fax name
1558            taxnumber tel));
1559     $self->{salesman_login} = $login;
1560
1561     $self->{salesman_name} = $login
1562       if ($self->{salesman_name} eq "");
1563
1564     map({ $self->{"salesman_$_"} =~ s/\\n/\n/g; } qw(address company));
1565   }
1566
1567   $main::lxdebug->leave_sub();
1568 }
1569
1570 sub get_duedate {
1571   $main::lxdebug->enter_sub();
1572
1573   my ($self, $myconfig) = @_;
1574
1575   my $dbh = $self->get_standard_dbh($myconfig);
1576   my $query = qq|SELECT current_date + terms_netto FROM payment_terms WHERE id = ?|;
1577   ($self->{duedate}) = selectrow_query($self, $dbh, $query, $self->{payment_id});
1578
1579   $main::lxdebug->leave_sub();
1580 }
1581
1582 sub _get_contacts {
1583   $main::lxdebug->enter_sub();
1584
1585   my ($self, $dbh, $id, $key) = @_;
1586
1587   $key = "all_contacts" unless ($key);
1588
1589   my $query =
1590     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
1591     qq|FROM contacts | .
1592     qq|WHERE cp_cv_id = ? | .
1593     qq|ORDER BY lower(cp_name)|;
1594
1595   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
1596
1597   $main::lxdebug->leave_sub();
1598 }
1599
1600 sub _get_projects {
1601   $main::lxdebug->enter_sub();
1602
1603   my ($self, $dbh, $key) = @_;
1604
1605   my ($all, $old_id, $where, @values);
1606
1607   if (ref($key) eq "HASH") {
1608     my $params = $key;
1609
1610     $key = "ALL_PROJECTS";
1611
1612     foreach my $p (keys(%{$params})) {
1613       if ($p eq "all") {
1614         $all = $params->{$p};
1615       } elsif ($p eq "old_id") {
1616         $old_id = $params->{$p};
1617       } elsif ($p eq "key") {
1618         $key = $params->{$p};
1619       }
1620     }
1621   }
1622
1623   if (!$all) {
1624     $where = "WHERE active ";
1625     if ($old_id) {
1626       if (ref($old_id) eq "ARRAY") {
1627         my @ids = grep({ $_ } @{$old_id});
1628         if (@ids) {
1629           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
1630           push(@values, @ids);
1631         }
1632       } else {
1633         $where .= " OR (id = ?) ";
1634         push(@values, $old_id);
1635       }
1636     }
1637   }
1638
1639   my $query =
1640     qq|SELECT id, projectnumber, description, active | .
1641     qq|FROM project | .
1642     $where .
1643     qq|ORDER BY lower(projectnumber)|;
1644
1645   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
1646
1647   $main::lxdebug->leave_sub();
1648 }
1649
1650 sub _get_shipto {
1651   $main::lxdebug->enter_sub();
1652
1653   my ($self, $dbh, $vc_id, $key) = @_;
1654
1655   $key = "all_shipto" unless ($key);
1656
1657   # get shipping addresses
1658   my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
1659
1660   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
1661
1662   $main::lxdebug->leave_sub();
1663 }
1664
1665 sub _get_printers {
1666   $main::lxdebug->enter_sub();
1667
1668   my ($self, $dbh, $key) = @_;
1669
1670   $key = "all_printers" unless ($key);
1671
1672   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
1673
1674   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1675
1676   $main::lxdebug->leave_sub();
1677 }
1678
1679 sub _get_charts {
1680   $main::lxdebug->enter_sub();
1681
1682   my ($self, $dbh, $params) = @_;
1683
1684   $key = $params->{key};
1685   $key = "all_charts" unless ($key);
1686
1687   my $transdate = quote_db_date($params->{transdate});
1688
1689   my $query =
1690     qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
1691     qq|FROM chart c | .
1692     qq|LEFT JOIN taxkeys tk ON | .
1693     qq|(tk.id = (SELECT id FROM taxkeys | .
1694     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
1695     qq|          ORDER BY startdate DESC LIMIT 1)) | .
1696     qq|ORDER BY c.accno|;
1697
1698   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1699
1700   $main::lxdebug->leave_sub();
1701 }
1702
1703 sub _get_taxcharts {
1704   $main::lxdebug->enter_sub();
1705
1706   my ($self, $dbh, $key) = @_;
1707
1708   $key = "all_taxcharts" unless ($key);
1709
1710   my $query = qq|SELECT * FROM tax ORDER BY taxkey|;
1711
1712   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1713
1714   $main::lxdebug->leave_sub();
1715 }
1716
1717 sub _get_taxzones {
1718   $main::lxdebug->enter_sub();
1719
1720   my ($self, $dbh, $key) = @_;
1721
1722   $key = "all_taxzones" unless ($key);
1723
1724   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
1725
1726   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1727
1728   $main::lxdebug->leave_sub();
1729 }
1730
1731 sub _get_employees {
1732   $main::lxdebug->enter_sub();
1733
1734   my ($self, $dbh, $default_key, $key) = @_;
1735
1736   $key = $default_key unless ($key);
1737   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY name|);
1738
1739   $main::lxdebug->leave_sub();
1740 }
1741
1742 sub _get_business_types {
1743   $main::lxdebug->enter_sub();
1744
1745   my ($self, $dbh, $key) = @_;
1746
1747   $key = "all_business_types" unless ($key);
1748   $self->{$key} =
1749     selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
1750
1751   $main::lxdebug->leave_sub();
1752 }
1753
1754 sub _get_languages {
1755   $main::lxdebug->enter_sub();
1756
1757   my ($self, $dbh, $key) = @_;
1758
1759   $key = "all_languages" unless ($key);
1760
1761   my $query = qq|SELECT * FROM language ORDER BY id|;
1762
1763   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1764
1765   $main::lxdebug->leave_sub();
1766 }
1767
1768 sub _get_dunning_configs {
1769   $main::lxdebug->enter_sub();
1770
1771   my ($self, $dbh, $key) = @_;
1772
1773   $key = "all_dunning_configs" unless ($key);
1774
1775   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
1776
1777   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1778
1779   $main::lxdebug->leave_sub();
1780 }
1781
1782 sub _get_currencies {
1783 $main::lxdebug->enter_sub();
1784
1785   my ($self, $dbh, $key) = @_;
1786
1787   $key = "all_currencies" unless ($key);
1788
1789   my $query = qq|SELECT curr AS currency FROM defaults|;
1790  
1791   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
1792
1793   $main::lxdebug->leave_sub();
1794 }
1795
1796 sub _get_payments {
1797 $main::lxdebug->enter_sub();
1798
1799   my ($self, $dbh, $key) = @_;
1800
1801   $key = "all_payments" unless ($key);
1802
1803   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
1804  
1805   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1806
1807   $main::lxdebug->leave_sub();
1808 }
1809
1810 sub _get_customers {
1811   $main::lxdebug->enter_sub();
1812
1813   my ($self, $dbh, $key) = @_;
1814
1815   $key = "all_customers" unless ($key);
1816
1817   my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name|;
1818
1819   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1820
1821   $main::lxdebug->leave_sub();
1822 }
1823
1824 sub _get_vendors {
1825   $main::lxdebug->enter_sub();
1826
1827   my ($self, $dbh, $key) = @_;
1828
1829   $key = "all_vendors" unless ($key);
1830
1831   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
1832
1833   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1834
1835   $main::lxdebug->leave_sub();
1836 }
1837
1838 sub _get_departments {
1839   $main::lxdebug->enter_sub();
1840
1841   my ($self, $dbh, $key) = @_;
1842
1843   $key = "all_departments" unless ($key);
1844
1845   my $query = qq|SELECT * FROM department ORDER BY description|;
1846
1847   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1848
1849   $main::lxdebug->leave_sub();
1850 }
1851
1852 sub get_lists {
1853   $main::lxdebug->enter_sub();
1854
1855   my $self = shift;
1856   my %params = @_;
1857
1858   my $dbh = $self->get_standard_dbh(\%main::myconfig);
1859   my ($sth, $query, $ref);
1860
1861   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
1862   my $vc_id = $self->{"${vc}_id"};
1863
1864   if ($params{"contacts"}) {
1865     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
1866   }
1867
1868   if ($params{"shipto"}) {
1869     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
1870   }
1871
1872   if ($params{"projects"} || $params{"all_projects"}) {
1873     $self->_get_projects($dbh, $params{"all_projects"} ?
1874                          $params{"all_projects"} : $params{"projects"},
1875                          $params{"all_projects"} ? 1 : 0);
1876   }
1877
1878   if ($params{"printers"}) {
1879     $self->_get_printers($dbh, $params{"printers"});
1880   }
1881
1882   if ($params{"languages"}) {
1883     $self->_get_languages($dbh, $params{"languages"});
1884   }
1885
1886   if ($params{"charts"}) {
1887     $self->_get_charts($dbh, $params{"charts"});
1888   }
1889
1890   if ($params{"taxcharts"}) {
1891     $self->_get_taxcharts($dbh, $params{"taxcharts"});
1892   }
1893
1894   if ($params{"taxzones"}) {
1895     $self->_get_taxzones($dbh, $params{"taxzones"});
1896   }
1897
1898   if ($params{"employees"}) {
1899     $self->_get_employees($dbh, "all_employees", $params{"employees"});
1900   }
1901   
1902   if ($params{"salesmen"}) {
1903     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
1904   }
1905
1906   if ($params{"business_types"}) {
1907     $self->_get_business_types($dbh, $params{"business_types"});
1908   }
1909
1910   if ($params{"dunning_configs"}) {
1911     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
1912   }
1913   
1914   if($params{"currencies"}) {
1915     $self->_get_currencies($dbh, $params{"currencies"});
1916   }
1917   
1918   if($params{"customers"}) {
1919     $self->_get_customers($dbh, $params{"customers"});
1920   }
1921   
1922   if($params{"vendors"}) {
1923     $self->_get_vendors($dbh, $params{"vendors"});
1924   }
1925   
1926   if($params{"payments"}) {
1927     $self->_get_payments($dbh, $params{"payments"});
1928   }
1929
1930   if($params{"departments"}) {
1931     $self->_get_departments($dbh, $params{"departments"});
1932   }
1933
1934   $main::lxdebug->leave_sub();
1935 }
1936
1937 # this sub gets the id and name from $table
1938 sub get_name {
1939   $main::lxdebug->enter_sub();
1940
1941   my ($self, $myconfig, $table) = @_;
1942
1943   # connect to database
1944   my $dbh = $self->get_standard_dbh($myconfig);
1945
1946   $table = $table eq "customer" ? "customer" : "vendor";
1947   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
1948
1949   my ($query, @values);
1950
1951   if (!$self->{openinvoices}) {
1952     my $where;
1953     if ($self->{customernumber} ne "") {
1954       $where = qq|(vc.customernumber ILIKE ?)|;
1955       push(@values, '%' . $self->{customernumber} . '%');
1956     } else {
1957       $where = qq|(vc.name ILIKE ?)|;
1958       push(@values, '%' . $self->{$table} . '%');
1959     }
1960
1961     $query =
1962       qq~SELECT vc.id, vc.name,
1963            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
1964          FROM $table vc
1965          WHERE $where AND (NOT vc.obsolete)
1966          ORDER BY vc.name~;
1967   } else {
1968     $query =
1969       qq~SELECT DISTINCT vc.id, vc.name,
1970            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
1971          FROM $arap a
1972          JOIN $table vc ON (a.${table}_id = vc.id)
1973          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
1974          ORDER BY vc.name~;
1975     push(@values, '%' . $self->{$table} . '%');
1976   }
1977
1978   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
1979
1980   $main::lxdebug->leave_sub();
1981
1982   return scalar(@{ $self->{name_list} });
1983 }
1984
1985 # the selection sub is used in the AR, AP, IS, IR and OE module
1986 #
1987 sub all_vc {
1988   $main::lxdebug->enter_sub();
1989
1990   my ($self, $myconfig, $table, $module) = @_;
1991
1992   my $ref;
1993   my $dbh = $self->get_standard_dbh($myconfig);
1994
1995   $table = $table eq "customer" ? "customer" : "vendor";
1996
1997   my $query = qq|SELECT count(*) FROM $table|;
1998   my ($count) = selectrow_query($self, $dbh, $query);
1999
2000   # build selection list
2001   if ($count < $myconfig->{vclimit}) {
2002     $query = qq|SELECT id, name, salesman_id
2003                 FROM $table WHERE NOT obsolete
2004                 ORDER BY name|;
2005     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2006   }
2007
2008   # get self
2009   $self->get_employee($dbh);
2010
2011   # setup sales contacts
2012   $query = qq|SELECT e.id, e.name
2013               FROM employee e
2014               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
2015   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2016
2017   # this is for self
2018   push(@{ $self->{all_employees} },
2019        { id   => $self->{employee_id},
2020          name => $self->{employee} });
2021
2022   # sort the whole thing
2023   @{ $self->{all_employees} } =
2024     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
2025
2026   if ($module eq 'AR') {
2027
2028     # prepare query for departments
2029     $query = qq|SELECT id, description
2030                 FROM department
2031                 WHERE role = 'P'
2032                 ORDER BY description|;
2033
2034   } else {
2035     $query = qq|SELECT id, description
2036                 FROM department
2037                 ORDER BY description|;
2038   }
2039
2040   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2041
2042   # get languages
2043   $query = qq|SELECT id, description
2044               FROM language
2045               ORDER BY id|;
2046
2047   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2048
2049   # get printer
2050   $query = qq|SELECT printer_description, id
2051               FROM printers
2052               ORDER BY printer_description|;
2053
2054   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2055
2056   # get payment terms
2057   $query = qq|SELECT id, description
2058               FROM payment_terms
2059               ORDER BY sortkey|;
2060
2061   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2062
2063   $main::lxdebug->leave_sub();
2064 }
2065
2066 sub language_payment {
2067   $main::lxdebug->enter_sub();
2068
2069   my ($self, $myconfig) = @_;
2070
2071   my $dbh = $self->get_standard_dbh($myconfig);
2072   # get languages
2073   my $query = qq|SELECT id, description
2074                  FROM language
2075                  ORDER BY id|;
2076
2077   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2078
2079   # get printer
2080   $query = qq|SELECT printer_description, id
2081               FROM printers
2082               ORDER BY printer_description|;
2083
2084   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2085
2086   # get payment terms
2087   $query = qq|SELECT id, description
2088               FROM payment_terms
2089               ORDER BY sortkey|;
2090
2091   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2092
2093   # get buchungsgruppen
2094   $query = qq|SELECT id, description
2095               FROM buchungsgruppen|;
2096
2097   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2098
2099   $main::lxdebug->leave_sub();
2100 }
2101
2102 # this is only used for reports
2103 sub all_departments {
2104   $main::lxdebug->enter_sub();
2105
2106   my ($self, $myconfig, $table) = @_;
2107
2108   my $dbh = $self->get_standard_dbh($myconfig);
2109   my $where;
2110
2111   if ($table eq 'customer') {
2112     $where = "WHERE role = 'P' ";
2113   }
2114
2115   my $query = qq|SELECT id, description
2116                  FROM department
2117                  $where
2118                  ORDER BY description|;
2119   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2120
2121   delete($self->{all_departments}) unless (@{ $self->{all_departments} });
2122
2123   $main::lxdebug->leave_sub();
2124 }
2125
2126 sub create_links {
2127   $main::lxdebug->enter_sub();
2128
2129   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2130
2131   my ($fld, $arap);
2132   if ($table eq "customer") {
2133     $fld = "buy";
2134     $arap = "ar";
2135   } else {
2136     $table = "vendor";
2137     $fld = "sell";
2138     $arap = "ap";
2139   }
2140
2141   $self->all_vc($myconfig, $table, $module);
2142
2143   # get last customers or vendors
2144   my ($query, $sth, $ref);
2145
2146   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2147   my %xkeyref = ();
2148
2149   if (!$self->{id}) {
2150
2151     my $transdate = "current_date";
2152     if ($self->{transdate}) {
2153       $transdate = $dbh->quote($self->{transdate});
2154     }
2155
2156     # now get the account numbers
2157     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2158                 FROM chart c, taxkeys tk
2159                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2160                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2161                 ORDER BY c.accno|;
2162
2163     $sth = $dbh->prepare($query);
2164
2165     do_statement($self, $sth, $query, '%' . $module . '%');
2166
2167     $self->{accounts} = "";
2168     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2169
2170       foreach my $key (split(/:/, $ref->{link})) {
2171         if ($key =~ /$module/) {
2172
2173           # cross reference for keys
2174           $xkeyref{ $ref->{accno} } = $key;
2175
2176           push @{ $self->{"${module}_links"}{$key} },
2177             { accno       => $ref->{accno},
2178               description => $ref->{description},
2179               taxkey      => $ref->{taxkey_id},
2180               tax_id      => $ref->{tax_id} };
2181
2182           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2183         }
2184       }
2185     }
2186   }
2187
2188   # get taxkeys and description
2189   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2190   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2191
2192   if (($module eq "AP") || ($module eq "AR")) {
2193     # get tax rates and description
2194     $query = qq|SELECT * FROM tax|;
2195     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2196   }
2197
2198   if ($self->{id}) {
2199     $query =
2200       qq|SELECT
2201            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2202            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
2203            a.intnotes, a.department_id, a.amount AS oldinvtotal,
2204            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2205            c.name AS $table,
2206            d.description AS department,
2207            e.name AS employee
2208          FROM $arap a
2209          JOIN $table c ON (a.${table}_id = c.id)
2210          LEFT JOIN employee e ON (e.id = a.employee_id)
2211          LEFT JOIN department d ON (d.id = a.department_id)
2212          WHERE a.id = ?|;
2213     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2214
2215     foreach $key (keys %$ref) {
2216       $self->{$key} = $ref->{$key};
2217     }
2218
2219     my $transdate = "current_date";
2220     if ($self->{transdate}) {
2221       $transdate = $dbh->quote($self->{transdate});
2222     }
2223
2224     # now get the account numbers
2225     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2226                 FROM chart c
2227                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2228                 WHERE c.link LIKE ?
2229                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2230                     OR c.link LIKE '%_tax%')
2231                 ORDER BY c.accno|;
2232
2233     $sth = $dbh->prepare($query);
2234     do_statement($self, $sth, $query, "%$module%");
2235
2236     $self->{accounts} = "";
2237     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2238
2239       foreach my $key (split(/:/, $ref->{link})) {
2240         if ($key =~ /$module/) {
2241
2242           # cross reference for keys
2243           $xkeyref{ $ref->{accno} } = $key;
2244
2245           push @{ $self->{"${module}_links"}{$key} },
2246             { accno       => $ref->{accno},
2247               description => $ref->{description},
2248               taxkey      => $ref->{taxkey_id},
2249               tax_id      => $ref->{tax_id} };
2250
2251           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2252         }
2253       }
2254     }
2255
2256
2257     # get amounts from individual entries
2258     $query =
2259       qq|SELECT
2260            c.accno, c.description,
2261            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
2262            p.projectnumber,
2263            t.rate, t.id
2264          FROM acc_trans a
2265          LEFT JOIN chart c ON (c.id = a.chart_id)
2266          LEFT JOIN project p ON (p.id = a.project_id)
2267          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
2268                                     WHERE (tk.taxkey_id=a.taxkey) AND
2269                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
2270                                         THEN tk.chart_id = a.chart_id
2271                                         ELSE 1 = 1
2272                                         END)
2273                                        OR (c.link='%tax%')) AND
2274                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
2275          WHERE a.trans_id = ?
2276          AND a.fx_transaction = '0'
2277          ORDER BY a.oid, a.transdate|;
2278     $sth = $dbh->prepare($query);
2279     do_statement($self, $sth, $query, $self->{id});
2280
2281     # get exchangerate for currency
2282     $self->{exchangerate} =
2283       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2284     my $index = 0;
2285
2286     # store amounts in {acc_trans}{$key} for multiple accounts
2287     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2288       $ref->{exchangerate} =
2289         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2290       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2291         $index++;
2292       }
2293       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2294         $ref->{amount} *= -1;
2295       }
2296       $ref->{index} = $index;
2297
2298       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2299     }
2300
2301     $sth->finish;
2302     $query =
2303       qq|SELECT
2304            d.curr AS currencies, d.closedto, d.revtrans,
2305            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2306            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2307          FROM defaults d|;
2308     $ref = selectfirst_hashref_query($self, $dbh, $query);
2309     map { $self->{$_} = $ref->{$_} } keys %$ref;
2310
2311   } else {
2312
2313     # get date
2314     $query =
2315        qq|SELECT
2316             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
2317             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2318             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2319           FROM defaults d|;
2320     $ref = selectfirst_hashref_query($self, $dbh, $query);
2321     map { $self->{$_} = $ref->{$_} } keys %$ref;
2322
2323     if ($self->{"$self->{vc}_id"}) {
2324
2325       # only setup currency
2326       ($self->{currency}) = split(/:/, $self->{currencies});
2327
2328     } else {
2329
2330       $self->lastname_used($dbh, $myconfig, $table, $module);
2331
2332       # get exchangerate for currency
2333       $self->{exchangerate} =
2334         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2335
2336     }
2337
2338   }
2339
2340   $main::lxdebug->leave_sub();
2341 }
2342
2343 sub lastname_used {
2344   $main::lxdebug->enter_sub();
2345
2346   my ($self, $dbh, $myconfig, $table, $module) = @_;
2347
2348   my $arap  = ($table eq 'customer') ? "ar" : "ap";
2349   $table = $table eq "customer" ? "customer" : "vendor";
2350   my $where = "1 = 1";
2351
2352   if ($self->{type} =~ /_order/) {
2353     $arap  = 'oe';
2354     $where = "quotation = '0'";
2355   }
2356   if ($self->{type} =~ /_quotation/) {
2357     $arap  = 'oe';
2358     $where = "quotation = '1'";
2359   }
2360
2361   my $query = qq|SELECT MAX(id) FROM $arap
2362                  WHERE $where AND ${table}_id > 0|;
2363   my ($trans_id) = selectrow_query($self, $dbh, $query);
2364
2365   $trans_id *= 1;
2366   $query =
2367     qq|SELECT
2368          a.curr, a.${table}_id, a.department_id,
2369          d.description AS department,
2370          ct.name, current_date + ct.terms AS duedate
2371        FROM $arap a
2372        LEFT JOIN $table ct ON (a.${table}_id = ct.id)
2373        LEFT JOIN department d ON (a.department_id = d.id)
2374        WHERE a.id = ?|;
2375   ($self->{currency},   $self->{"${table}_id"}, $self->{department_id},
2376    $self->{department}, $self->{$table},        $self->{duedate})
2377     = selectrow_query($self, $dbh, $query, $trans_id);
2378
2379   $main::lxdebug->leave_sub();
2380 }
2381
2382 sub current_date {
2383   $main::lxdebug->enter_sub();
2384
2385   my ($self, $myconfig, $thisdate, $days) = @_;
2386
2387   my $dbh = $self->get_standard_dbh($myconfig);
2388   my $query;
2389
2390   $days *= 1;
2391   if ($thisdate) {
2392     my $dateformat = $myconfig->{dateformat};
2393     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2394     $thisdate = $dbh->quote($thisdate);
2395     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
2396   } else {
2397     $query = qq|SELECT current_date AS thisdate|;
2398   }
2399
2400   ($thisdate) = selectrow_query($self, $dbh, $query);
2401
2402   $main::lxdebug->leave_sub();
2403
2404   return $thisdate;
2405 }
2406
2407 sub like {
2408   $main::lxdebug->enter_sub();
2409
2410   my ($self, $string) = @_;
2411
2412   if ($string !~ /%/) {
2413     $string = "%$string%";
2414   }
2415
2416   $string =~ s/\'/\'\'/g;
2417
2418   $main::lxdebug->leave_sub();
2419
2420   return $string;
2421 }
2422
2423 sub redo_rows {
2424   $main::lxdebug->enter_sub();
2425
2426   my ($self, $flds, $new, $count, $numrows) = @_;
2427
2428   my @ndx = ();
2429
2430   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } }
2431     (1 .. $count);
2432
2433   my $i = 0;
2434
2435   # fill rows
2436   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
2437     $i++;
2438     $j = $item->{ndx} - 1;
2439     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
2440   }
2441
2442   # delete empty rows
2443   for $i ($count + 1 .. $numrows) {
2444     map { delete $self->{"${_}_$i"} } @{$flds};
2445   }
2446
2447   $main::lxdebug->leave_sub();
2448 }
2449
2450 sub update_status {
2451   $main::lxdebug->enter_sub();
2452
2453   my ($self, $myconfig) = @_;
2454
2455   my ($i, $id);
2456
2457   my $dbh = $self->dbconnect_noauto($myconfig);
2458
2459   my $query = qq|DELETE FROM status
2460                  WHERE (formname = ?) AND (trans_id = ?)|;
2461   my $sth = prepare_query($self, $dbh, $query);
2462
2463   if ($self->{formname} =~ /(check|receipt)/) {
2464     for $i (1 .. $self->{rowcount}) {
2465       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
2466     }
2467   } else {
2468     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
2469   }
2470   $sth->finish();
2471
2472   my $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
2473   my $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
2474
2475   my %queued = split / /, $self->{queued};
2476   my @values;
2477
2478   if ($self->{formname} =~ /(check|receipt)/) {
2479
2480     # this is a check or receipt, add one entry for each lineitem
2481     my ($accno) = split /--/, $self->{account};
2482     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
2483                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
2484     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
2485     $sth = prepare_query($self, $dbh, $query);
2486
2487     for $i (1 .. $self->{rowcount}) {
2488       if ($self->{"checked_$i"}) {
2489         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
2490       }
2491     }
2492     $sth->finish();
2493
2494   } else {
2495     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2496                 VALUES (?, ?, ?, ?, ?)|;
2497     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
2498              $queued{$self->{formname}}, $self->{formname});
2499   }
2500
2501   $dbh->commit;
2502   $dbh->disconnect;
2503
2504   $main::lxdebug->leave_sub();
2505 }
2506
2507 sub save_status {
2508   $main::lxdebug->enter_sub();
2509
2510   my ($self, $dbh) = @_;
2511
2512   my ($query, $printed, $emailed);
2513
2514   my $formnames  = $self->{printed};
2515   my $emailforms = $self->{emailed};
2516
2517   my $query = qq|DELETE FROM status
2518                  WHERE (formname = ?) AND (trans_id = ?)|;
2519   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
2520
2521   # this only applies to the forms
2522   # checks and receipts are posted when printed or queued
2523
2524   if ($self->{queued}) {
2525     my %queued = split / /, $self->{queued};
2526
2527     foreach my $formname (keys %queued) {
2528       $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
2529       $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
2530
2531       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2532                   VALUES (?, ?, ?, ?, ?)|;
2533       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
2534
2535       $formnames  =~ s/$self->{formname}//;
2536       $emailforms =~ s/$self->{formname}//;
2537
2538     }
2539   }
2540
2541   # save printed, emailed info
2542   $formnames  =~ s/^ +//g;
2543   $emailforms =~ s/^ +//g;
2544
2545   my %status = ();
2546   map { $status{$_}{printed} = 1 } split / +/, $formnames;
2547   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
2548
2549   foreach my $formname (keys %status) {
2550     $printed = ($formnames  =~ /$self->{formname}/) ? "1" : "0";
2551     $emailed = ($emailforms =~ /$self->{formname}/) ? "1" : "0";
2552
2553     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
2554                 VALUES (?, ?, ?, ?)|;
2555     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
2556   }
2557
2558   $main::lxdebug->leave_sub();
2559 }
2560
2561 #--- 4 locale ---#
2562 # $main::locale->text('SAVED')
2563 # $main::locale->text('DELETED')
2564 # $main::locale->text('ADDED')
2565 # $main::locale->text('PAYMENT POSTED')
2566 # $main::locale->text('POSTED')
2567 # $main::locale->text('POSTED AS NEW')
2568 # $main::locale->text('ELSE')
2569 # $main::locale->text('SAVED FOR DUNNING')
2570 # $main::locale->text('DUNNING STARTED')
2571 # $main::locale->text('PRINTED')
2572 # $main::locale->text('MAILED')
2573 # $main::locale->text('SCREENED')
2574 # $main::locale->text('CANCELED')
2575 # $main::locale->text('invoice')
2576 # $main::locale->text('proforma')
2577 # $main::locale->text('sales_order')
2578 # $main::locale->text('packing_list')
2579 # $main::locale->text('pick_list')
2580 # $main::locale->text('purchase_order')
2581 # $main::locale->text('bin_list')
2582 # $main::locale->text('sales_quotation')
2583 # $main::locale->text('request_quotation')
2584
2585 sub save_history {
2586   $main::lxdebug->enter_sub();
2587
2588   my $self = shift();
2589   my $dbh = shift();
2590
2591   if(!exists $self->{employee_id}) {
2592     &get_employee($self, $dbh);
2593   }
2594
2595   my $query =
2596    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
2597    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
2598   my @values = (conv_i($self->{id}), $self->{login},
2599                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
2600   do_query($self, $dbh, $query, @values);
2601
2602   $main::lxdebug->leave_sub();
2603 }
2604
2605 sub get_history {
2606   $main::lxdebug->enter_sub();
2607
2608   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
2609   my ($orderBy, $desc) = split(/\-\-/, $order);
2610   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
2611   my @tempArray;
2612   my $i = 0;
2613   if ($trans_id ne "") {
2614     my $query =
2615       qq|SELECT h.employee_id, h.itime::timestamp(0) AS itime, h.addition, h.what_done, emp.name, h.snumbers, h.trans_id AS id | .
2616       qq|FROM history_erp h | .
2617       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
2618       qq|WHERE trans_id = | . $trans_id
2619       . $restriction . qq| |
2620       . $order;
2621       
2622     my $sth = $dbh->prepare($query) || $self->dberror($query);
2623
2624     $sth->execute() || $self->dberror("$query");
2625
2626     while(my $hash_ref = $sth->fetchrow_hashref()) {
2627       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
2628       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
2629       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
2630       $tempArray[$i++] = $hash_ref;
2631     }
2632     $main::lxdebug->leave_sub() and return \@tempArray 
2633       if ($i > 0 && $tempArray[0] ne "");
2634   }
2635   $main::lxdebug->leave_sub();
2636   return 0;
2637 }
2638
2639 sub update_defaults {
2640   $main::lxdebug->enter_sub();
2641
2642   my ($self, $myconfig, $fld, $provided_dbh) = @_;
2643
2644   my $dbh;
2645   if ($provided_dbh) {
2646     $dbh = $provided_dbh;
2647   } else {
2648     $dbh = $self->dbconnect_noauto($myconfig);
2649   }
2650   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
2651   my $sth   = $dbh->prepare($query);
2652
2653   $sth->execute || $self->dberror($query);
2654   my ($var) = $sth->fetchrow_array;
2655   $sth->finish;
2656
2657   if ($var =~ m/\d+$/) {
2658     my $new_var  = (substr $var, $-[0]) * 1 + 1;
2659     my $len_diff = length($var) - $-[0] - length($new_var);
2660     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
2661
2662   } else {
2663     $var = $var . '1';
2664   }
2665
2666   $query = qq|UPDATE defaults SET $fld = ?|;
2667   do_query($self, $dbh, $query, $var);
2668
2669   if (!$provided_dbh) {
2670     $dbh->commit;
2671     $dbh->disconnect;
2672   }
2673
2674   $main::lxdebug->leave_sub();
2675
2676   return $var;
2677 }
2678
2679 sub update_business {
2680   $main::lxdebug->enter_sub();
2681
2682   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
2683
2684   my $dbh;
2685   if ($provided_dbh) {
2686     $dbh = $provided_dbh;
2687   } else {
2688     $dbh = $self->dbconnect_noauto($myconfig);
2689   }
2690   my $query =
2691     qq|SELECT customernumberinit FROM business
2692        WHERE id = ? FOR UPDATE|;
2693   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
2694
2695   if ($var =~ m/\d+$/) {
2696     my $new_var  = (substr $var, $-[0]) * 1 + 1;
2697     my $len_diff = length($var) - $-[0] - length($new_var);
2698     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
2699
2700   } else {
2701     $var = $var . '1';
2702   }
2703
2704   $query = qq|UPDATE business
2705               SET customernumberinit = ?
2706               WHERE id = ?|;
2707   do_query($self, $dbh, $query, $var, $business_id);
2708
2709   if (!$provided_dbh) {
2710     $dbh->commit;
2711     $dbh->disconnect;
2712   }
2713
2714   $main::lxdebug->leave_sub();
2715
2716   return $var;
2717 }
2718
2719 sub get_partsgroup {
2720   $main::lxdebug->enter_sub();
2721
2722   my ($self, $myconfig, $p) = @_;
2723
2724   my $dbh = $self->get_standard_dbh($myconfig);
2725
2726   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
2727                  FROM partsgroup pg
2728                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
2729   my @values;
2730
2731   if ($p->{searchitems} eq 'part') {
2732     $query .= qq|WHERE p.inventory_accno_id > 0|;
2733   }
2734   if ($p->{searchitems} eq 'service') {
2735     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
2736   }
2737   if ($p->{searchitems} eq 'assembly') {
2738     $query .= qq|WHERE p.assembly = '1'|;
2739   }
2740   if ($p->{searchitems} eq 'labor') {
2741     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
2742   }
2743
2744   $query .= qq|ORDER BY partsgroup|;
2745
2746   if ($p->{all}) {
2747     $query = qq|SELECT id, partsgroup FROM partsgroup
2748                 ORDER BY partsgroup|;
2749   }
2750
2751   if ($p->{language_code}) {
2752     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
2753                   t.description AS translation
2754                 FROM partsgroup pg
2755                 JOIN parts p ON (p.partsgroup_id = pg.id)
2756                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
2757                 ORDER BY translation|;
2758     @values = ($p->{language_code});
2759   }
2760
2761   $self->{all_partsgroup} = selectall_hashref_query($self, $dbh, $query, @values);
2762
2763   $main::lxdebug->leave_sub();
2764 }
2765
2766 sub get_pricegroup {
2767   $main::lxdebug->enter_sub();
2768
2769   my ($self, $myconfig, $p) = @_;
2770
2771   my $dbh = $self->get_standard_dbh($myconfig);
2772
2773   my $query = qq|SELECT p.id, p.pricegroup
2774                  FROM pricegroup p|;
2775
2776   $query .= qq| ORDER BY pricegroup|;
2777
2778   if ($p->{all}) {
2779     $query = qq|SELECT id, pricegroup FROM pricegroup
2780                 ORDER BY pricegroup|;
2781   }
2782
2783   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
2784
2785   $main::lxdebug->leave_sub();
2786 }
2787
2788 sub all_years {
2789 # usage $form->all_years($myconfig, [$dbh])
2790 # return list of all years where bookings found
2791 # (@all_years)
2792
2793   $main::lxdebug->enter_sub();
2794
2795   my ($self, $myconfig, $dbh) = @_;
2796
2797   $dbh ||= $self->get_standard_dbh($myconfig);
2798
2799   # get years
2800   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
2801                    (SELECT MAX(transdate) FROM acc_trans)|;
2802   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
2803
2804   if ($myconfig->{dateformat} =~ /^yy/) {
2805     ($startdate) = split /\W/, $startdate;
2806     ($enddate) = split /\W/, $enddate;
2807   } else {
2808     (@_) = split /\W/, $startdate;
2809     $startdate = $_[2];
2810     (@_) = split /\W/, $enddate;
2811     $enddate = $_[2];
2812   }
2813
2814   my @all_years;
2815   $startdate = substr($startdate,0,4);
2816   $enddate = substr($enddate,0,4);
2817
2818   while ($enddate >= $startdate) {
2819     push @all_years, $enddate--;
2820   }
2821
2822   return @all_years;
2823
2824   $main::lxdebug->leave_sub();
2825 }
2826
2827 1;