9bfb945546604ec3936b8a47e31ca08ea7a4ea7b
[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.2";
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                                  'PRE_CHOMP'   => Template::Constants::CHOMP_COLLAPSE,
586                                  'POST_CHOMP'  => Template::Constants::CHOMP_COLLAPSE,
587                                  'EVAL_PERL'   => 0,
588                                  'ABSOLUTE'    => 1,
589                                  'CACHE_SIZE'  => 0,
590                                }) || die;
591
592   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
593
594   my $output;
595   $template->process($file, $additional_params, \$output);
596
597   $output = $main::locale->{iconv}->convert($output) if ($main::locale);
598
599   $main::lxdebug->leave_sub();
600
601   return $output;
602 }
603
604 sub show_generic_error {
605   my ($self, $error, $title, $action) = @_;
606
607   my $add_params = {};
608   $add_params->{"title"} = $title if ($title);
609   $self->{"label_error"} = $error;
610
611   my @vars;
612   if ($action) {
613     map({ delete($self->{$_}); } qw(action));
614     map({ push(@vars, { "name" => $_, "value" => $self->{$_} })
615             if (!ref($self->{$_})); }
616         keys(%{$self}));
617     $add_params->{"SHOW_BUTTON"} = 1;
618     $add_params->{"BUTTON_LABEL"} = $action;
619   }
620   $add_params->{"VARIABLES"} = \@vars;
621
622   $self->header();
623   print($self->parse_html_template("generic/error", $add_params));
624
625   die("Error: $error\n");
626 }
627
628 sub show_generic_information {
629   my ($self, $error, $title) = @_;
630
631   my $add_params = {};
632   $add_params->{"title"} = $title if ($title);
633   $self->{"label_information"} = $error;
634
635   $self->header();
636   print($self->parse_html_template("generic/information", $add_params));
637
638   die("Information: $error\n");
639 }
640
641 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
642 # changed it to accept an arbitrary number of triggers - sschoeling
643 sub write_trigger {
644   $main::lxdebug->enter_sub();
645
646   my $self     = shift;
647   my $myconfig = shift;
648   my $qty      = shift;
649
650   # set dateform for jsscript
651   # default
652   my %dateformats = (
653     "dd.mm.yy" => "%d.%m.%Y",
654     "dd-mm-yy" => "%d-%m-%Y",
655     "dd/mm/yy" => "%d/%m/%Y",
656     "mm/dd/yy" => "%m/%d/%Y",
657     "mm-dd-yy" => "%m-%d-%Y",
658     "yyyy-mm-dd" => "%Y-%m-%d",
659     );
660
661   my $ifFormat = defined($dateformats{$myconfig{"dateformat"}}) ?
662     $dateformats{$myconfig{"dateformat"}} : "%d.%m.%Y";
663
664   my @triggers;
665   while ($#_ >= 2) {
666     push @triggers, qq|
667        Calendar.setup(
668       {
669       inputField : "| . (shift) . qq|",
670       ifFormat :"$ifFormat",
671       align : "| .  (shift) . qq|",
672       button : "| . (shift) . qq|"
673       }
674       );
675        |;
676   }
677   my $jsscript = qq|
678        <script type="text/javascript">
679        <!--| . join("", @triggers) . qq|//-->
680         </script>
681         |;
682
683   $main::lxdebug->leave_sub();
684
685   return $jsscript;
686 }    #end sub write_trigger
687
688 sub redirect {
689   $main::lxdebug->enter_sub();
690
691   my ($self, $msg) = @_;
692
693   if ($self->{callback}) {
694
695     ($script, $argv) = split(/\?/, $self->{callback});
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   foreach my $item (qw(name department_1 department_2 street zipcode city country
1475                        contact phone fax email)) {
1476     if ($self->{"shipto$item"}) {
1477       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1478     }
1479     push(@values, $self->{"shipto${item}"});
1480   }
1481   if ($shipto) {
1482     if ($self->{shipto_id}) {
1483       my $query = qq|UPDATE shipto set
1484                        shiptoname = ?,
1485                        shiptodepartment_1 = ?,
1486                        shiptodepartment_2 = ?,
1487                        shiptostreet = ?,
1488                        shiptozipcode = ?,
1489                        shiptocity = ?,
1490                        shiptocountry = ?,
1491                        shiptocontact = ?,
1492                        shiptophone = ?,
1493                        shiptofax = ?,
1494                        shiptoemail = ?
1495                      WHERE shipto_id = ?|;
1496       do_query($self, $dbh, $query, @values, $self->{shipto_id});
1497     } else {
1498       my $query = qq|SELECT * FROM shipto
1499                      WHERE shiptoname = ? AND
1500                        shiptodepartment_1 = ? AND
1501                        shiptodepartment_2 = ? AND
1502                        shiptostreet = ? AND
1503                        shiptozipcode = ? AND
1504                        shiptocity = ? AND
1505                        shiptocountry = ? AND
1506                        shiptocontact = ? AND
1507                        shiptophone = ? AND
1508                        shiptofax = ? AND
1509                        shiptoemail = ?|;
1510       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values);
1511       if(!$insert_check){
1512         $query =
1513           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
1514                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
1515                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
1516              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1517         do_query($self, $dbh, $query, $id, @values, $module);
1518       }
1519     }
1520   }
1521
1522   $main::lxdebug->leave_sub();
1523 }
1524
1525 sub get_employee {
1526   $main::lxdebug->enter_sub();
1527
1528   my ($self, $dbh) = @_;
1529
1530   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
1531   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
1532   $self->{"employee_id"} *= 1;
1533
1534   $main::lxdebug->leave_sub();
1535 }
1536
1537 sub get_salesman {
1538   $main::lxdebug->enter_sub();
1539
1540   my ($self, $myconfig, $salesman_id) = @_;
1541
1542   $main::lxdebug->leave_sub() and return unless $salesman_id;
1543
1544   my $dbh = $self->get_standard_dbh($myconfig);
1545
1546   my ($login) =
1547     selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|,
1548                     $salesman_id);
1549
1550   if ($login) {
1551     my $user = new User($main::memberfile, $login);
1552     map({ $self->{"salesman_$_"} = $user->{$_}; }
1553         qw(address businessnumber co_ustid company duns email fax name
1554            taxnumber tel));
1555     $self->{salesman_login} = $login;
1556
1557     $self->{salesman_name} = $login
1558       if ($self->{salesman_name} eq "");
1559
1560     map({ $self->{"salesman_$_"} =~ s/\\n/\n/g; } qw(address company));
1561   }
1562
1563   $main::lxdebug->leave_sub();
1564 }
1565
1566 sub get_duedate {
1567   $main::lxdebug->enter_sub();
1568
1569   my ($self, $myconfig) = @_;
1570
1571   my $dbh = $self->get_standard_dbh($myconfig);
1572   my $query = qq|SELECT current_date + terms_netto FROM payment_terms WHERE id = ?|;
1573   ($self->{duedate}) = selectrow_query($self, $dbh, $query, $self->{payment_id});
1574
1575   $main::lxdebug->leave_sub();
1576 }
1577
1578 sub _get_contacts {
1579   $main::lxdebug->enter_sub();
1580
1581   my ($self, $dbh, $id, $key) = @_;
1582
1583   $key = "all_contacts" unless ($key);
1584
1585   my $query =
1586     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
1587     qq|FROM contacts | .
1588     qq|WHERE cp_cv_id = ? | .
1589     qq|ORDER BY lower(cp_name)|;
1590
1591   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
1592
1593   $main::lxdebug->leave_sub();
1594 }
1595
1596 sub _get_projects {
1597   $main::lxdebug->enter_sub();
1598
1599   my ($self, $dbh, $key) = @_;
1600
1601   my ($all, $old_id, $where, @values);
1602
1603   if (ref($key) eq "HASH") {
1604     my $params = $key;
1605
1606     $key = "ALL_PROJECTS";
1607
1608     foreach my $p (keys(%{$params})) {
1609       if ($p eq "all") {
1610         $all = $params->{$p};
1611       } elsif ($p eq "old_id") {
1612         $old_id = $params->{$p};
1613       } elsif ($p eq "key") {
1614         $key = $params->{$p};
1615       }
1616     }
1617   }
1618
1619   if (!$all) {
1620     $where = "WHERE active ";
1621     if ($old_id) {
1622       if (ref($old_id) eq "ARRAY") {
1623         my @ids = grep({ $_ } @{$old_id});
1624         if (@ids) {
1625           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
1626           push(@values, @ids);
1627         }
1628       } else {
1629         $where .= " OR (id = ?) ";
1630         push(@values, $old_id);
1631       }
1632     }
1633   }
1634
1635   my $query =
1636     qq|SELECT id, projectnumber, description, active | .
1637     qq|FROM project | .
1638     $where .
1639     qq|ORDER BY lower(projectnumber)|;
1640
1641   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
1642
1643   $main::lxdebug->leave_sub();
1644 }
1645
1646 sub _get_shipto {
1647   $main::lxdebug->enter_sub();
1648
1649   my ($self, $dbh, $vc_id, $key) = @_;
1650
1651   $key = "all_shipto" unless ($key);
1652
1653   # get shipping addresses
1654   my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
1655
1656   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
1657
1658   $main::lxdebug->leave_sub();
1659 }
1660
1661 sub _get_printers {
1662   $main::lxdebug->enter_sub();
1663
1664   my ($self, $dbh, $key) = @_;
1665
1666   $key = "all_printers" unless ($key);
1667
1668   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
1669
1670   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1671
1672   $main::lxdebug->leave_sub();
1673 }
1674
1675 sub _get_charts {
1676   $main::lxdebug->enter_sub();
1677
1678   my ($self, $dbh, $params) = @_;
1679
1680   $key = $params->{key};
1681   $key = "all_charts" unless ($key);
1682
1683   my $transdate = quote_db_date($params->{transdate});
1684
1685   my $query =
1686     qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
1687     qq|FROM chart c | .
1688     qq|LEFT JOIN taxkeys tk ON | .
1689     qq|(tk.id = (SELECT id FROM taxkeys | .
1690     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
1691     qq|          ORDER BY startdate DESC LIMIT 1)) | .
1692     qq|ORDER BY c.accno|;
1693
1694   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1695
1696   $main::lxdebug->leave_sub();
1697 }
1698
1699 sub _get_taxcharts {
1700   $main::lxdebug->enter_sub();
1701
1702   my ($self, $dbh, $key) = @_;
1703
1704   $key = "all_taxcharts" unless ($key);
1705
1706   my $query = qq|SELECT * FROM tax ORDER BY taxkey|;
1707
1708   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1709
1710   $main::lxdebug->leave_sub();
1711 }
1712
1713 sub _get_taxzones {
1714   $main::lxdebug->enter_sub();
1715
1716   my ($self, $dbh, $key) = @_;
1717
1718   $key = "all_taxzones" unless ($key);
1719
1720   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
1721
1722   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1723
1724   $main::lxdebug->leave_sub();
1725 }
1726
1727 sub _get_employees {
1728   $main::lxdebug->enter_sub();
1729
1730   my ($self, $dbh, $default_key, $key) = @_;
1731
1732   $key = $default_key unless ($key);
1733   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY name|);
1734
1735   $main::lxdebug->leave_sub();
1736 }
1737
1738 sub _get_business_types {
1739   $main::lxdebug->enter_sub();
1740
1741   my ($self, $dbh, $key) = @_;
1742
1743   $key = "all_business_types" unless ($key);
1744   $self->{$key} =
1745     selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
1746
1747   $main::lxdebug->leave_sub();
1748 }
1749
1750 sub _get_languages {
1751   $main::lxdebug->enter_sub();
1752
1753   my ($self, $dbh, $key) = @_;
1754
1755   $key = "all_languages" unless ($key);
1756
1757   my $query = qq|SELECT * FROM language ORDER BY id|;
1758
1759   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1760
1761   $main::lxdebug->leave_sub();
1762 }
1763
1764 sub _get_dunning_configs {
1765   $main::lxdebug->enter_sub();
1766
1767   my ($self, $dbh, $key) = @_;
1768
1769   $key = "all_dunning_configs" unless ($key);
1770
1771   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
1772
1773   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1774
1775   $main::lxdebug->leave_sub();
1776 }
1777
1778 sub _get_currencies {
1779 $main::lxdebug->enter_sub();
1780
1781   my ($self, $dbh, $key) = @_;
1782
1783   $key = "all_currencies" unless ($key);
1784
1785   my $query = qq|SELECT curr AS currency FROM defaults|;
1786  
1787   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
1788
1789   $main::lxdebug->leave_sub();
1790 }
1791
1792 sub _get_payments {
1793 $main::lxdebug->enter_sub();
1794
1795   my ($self, $dbh, $key) = @_;
1796
1797   $key = "all_payments" unless ($key);
1798
1799   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
1800  
1801   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1802
1803   $main::lxdebug->leave_sub();
1804 }
1805
1806 sub _get_customers {
1807   $main::lxdebug->enter_sub();
1808
1809   my ($self, $dbh, $key) = @_;
1810
1811   $key = "all_customers" unless ($key);
1812
1813   my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name|;
1814
1815   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1816
1817   $main::lxdebug->leave_sub();
1818 }
1819
1820 sub _get_vendors {
1821   $main::lxdebug->enter_sub();
1822
1823   my ($self, $dbh, $key) = @_;
1824
1825   $key = "all_vendors" unless ($key);
1826
1827   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
1828
1829   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1830
1831   $main::lxdebug->leave_sub();
1832 }
1833
1834 sub _get_departments {
1835   $main::lxdebug->enter_sub();
1836
1837   my ($self, $dbh, $key) = @_;
1838
1839   $key = "all_departments" unless ($key);
1840
1841   my $query = qq|SELECT * FROM department ORDER BY description|;
1842
1843   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1844
1845   $main::lxdebug->leave_sub();
1846 }
1847
1848 sub get_lists {
1849   $main::lxdebug->enter_sub();
1850
1851   my $self = shift;
1852   my %params = @_;
1853
1854   my $dbh = $self->get_standard_dbh(\%main::myconfig);
1855   my ($sth, $query, $ref);
1856
1857   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
1858   my $vc_id = $self->{"${vc}_id"};
1859
1860   if ($params{"contacts"}) {
1861     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
1862   }
1863
1864   if ($params{"shipto"}) {
1865     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
1866   }
1867
1868   if ($params{"projects"} || $params{"all_projects"}) {
1869     $self->_get_projects($dbh, $params{"all_projects"} ?
1870                          $params{"all_projects"} : $params{"projects"},
1871                          $params{"all_projects"} ? 1 : 0);
1872   }
1873
1874   if ($params{"printers"}) {
1875     $self->_get_printers($dbh, $params{"printers"});
1876   }
1877
1878   if ($params{"languages"}) {
1879     $self->_get_languages($dbh, $params{"languages"});
1880   }
1881
1882   if ($params{"charts"}) {
1883     $self->_get_charts($dbh, $params{"charts"});
1884   }
1885
1886   if ($params{"taxcharts"}) {
1887     $self->_get_taxcharts($dbh, $params{"taxcharts"});
1888   }
1889
1890   if ($params{"taxzones"}) {
1891     $self->_get_taxzones($dbh, $params{"taxzones"});
1892   }
1893
1894   if ($params{"employees"}) {
1895     $self->_get_employees($dbh, "all_employees", $params{"employees"});
1896   }
1897   
1898   if ($params{"salesmen"}) {
1899     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
1900   }
1901
1902   if ($params{"business_types"}) {
1903     $self->_get_business_types($dbh, $params{"business_types"});
1904   }
1905
1906   if ($params{"dunning_configs"}) {
1907     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
1908   }
1909   
1910   if($params{"currencies"}) {
1911     $self->_get_currencies($dbh, $params{"currencies"});
1912   }
1913   
1914   if($params{"customers"}) {
1915     $self->_get_customers($dbh, $params{"customers"});
1916   }
1917   
1918   if($params{"vendors"}) {
1919     $self->_get_vendors($dbh, $params{"vendors"});
1920   }
1921   
1922   if($params{"payments"}) {
1923     $self->_get_payments($dbh, $params{"payments"});
1924   }
1925
1926   if($params{"departments"}) {
1927     $self->_get_departments($dbh, $params{"departments"});
1928   }
1929
1930   $main::lxdebug->leave_sub();
1931 }
1932
1933 # this sub gets the id and name from $table
1934 sub get_name {
1935   $main::lxdebug->enter_sub();
1936
1937   my ($self, $myconfig, $table) = @_;
1938
1939   # connect to database
1940   my $dbh = $self->get_standard_dbh($myconfig);
1941
1942   $table = $table eq "customer" ? "customer" : "vendor";
1943   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
1944
1945   my ($query, @values);
1946
1947   if (!$self->{openinvoices}) {
1948     my $where;
1949     if ($self->{customernumber} ne "") {
1950       $where = qq|(vc.customernumber ILIKE ?)|;
1951       push(@values, '%' . $self->{customernumber} . '%');
1952     } else {
1953       $where = qq|(vc.name ILIKE ?)|;
1954       push(@values, '%' . $self->{$table} . '%');
1955     }
1956
1957     $query =
1958       qq~SELECT vc.id, vc.name,
1959            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
1960          FROM $table vc
1961          WHERE $where AND (NOT vc.obsolete)
1962          ORDER BY vc.name~;
1963   } else {
1964     $query =
1965       qq~SELECT DISTINCT vc.id, vc.name,
1966            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
1967          FROM $arap a
1968          JOIN $table vc ON (a.${table}_id = vc.id)
1969          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
1970          ORDER BY vc.name~;
1971     push(@values, '%' . $self->{$table} . '%');
1972   }
1973
1974   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
1975
1976   $main::lxdebug->leave_sub();
1977
1978   return scalar(@{ $self->{name_list} });
1979 }
1980
1981 # the selection sub is used in the AR, AP, IS, IR and OE module
1982 #
1983 sub all_vc {
1984   $main::lxdebug->enter_sub();
1985
1986   my ($self, $myconfig, $table, $module) = @_;
1987
1988   my $ref;
1989   my $dbh = $self->get_standard_dbh($myconfig);
1990
1991   $table = $table eq "customer" ? "customer" : "vendor";
1992
1993   my $query = qq|SELECT count(*) FROM $table|;
1994   my ($count) = selectrow_query($self, $dbh, $query);
1995
1996   # build selection list
1997   if ($count < $myconfig->{vclimit}) {
1998     $query = qq|SELECT id, name, salesman_id
1999                 FROM $table WHERE NOT obsolete
2000                 ORDER BY name|;
2001     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2002   }
2003
2004   # get self
2005   $self->get_employee($dbh);
2006
2007   # setup sales contacts
2008   $query = qq|SELECT e.id, e.name
2009               FROM employee e
2010               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
2011   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2012
2013   # this is for self
2014   push(@{ $self->{all_employees} },
2015        { id   => $self->{employee_id},
2016          name => $self->{employee} });
2017
2018   # sort the whole thing
2019   @{ $self->{all_employees} } =
2020     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
2021
2022   if ($module eq 'AR') {
2023
2024     # prepare query for departments
2025     $query = qq|SELECT id, description
2026                 FROM department
2027                 WHERE role = 'P'
2028                 ORDER BY description|;
2029
2030   } else {
2031     $query = qq|SELECT id, description
2032                 FROM department
2033                 ORDER BY description|;
2034   }
2035
2036   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2037
2038   # get languages
2039   $query = qq|SELECT id, description
2040               FROM language
2041               ORDER BY id|;
2042
2043   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2044
2045   # get printer
2046   $query = qq|SELECT printer_description, id
2047               FROM printers
2048               ORDER BY printer_description|;
2049
2050   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2051
2052   # get payment terms
2053   $query = qq|SELECT id, description
2054               FROM payment_terms
2055               ORDER BY sortkey|;
2056
2057   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2058
2059   $main::lxdebug->leave_sub();
2060 }
2061
2062 sub language_payment {
2063   $main::lxdebug->enter_sub();
2064
2065   my ($self, $myconfig) = @_;
2066
2067   my $dbh = $self->get_standard_dbh($myconfig);
2068   # get languages
2069   my $query = qq|SELECT id, description
2070                  FROM language
2071                  ORDER BY id|;
2072
2073   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2074
2075   # get printer
2076   $query = qq|SELECT printer_description, id
2077               FROM printers
2078               ORDER BY printer_description|;
2079
2080   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2081
2082   # get payment terms
2083   $query = qq|SELECT id, description
2084               FROM payment_terms
2085               ORDER BY sortkey|;
2086
2087   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2088
2089   # get buchungsgruppen
2090   $query = qq|SELECT id, description
2091               FROM buchungsgruppen|;
2092
2093   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2094
2095   $main::lxdebug->leave_sub();
2096 }
2097
2098 # this is only used for reports
2099 sub all_departments {
2100   $main::lxdebug->enter_sub();
2101
2102   my ($self, $myconfig, $table) = @_;
2103
2104   my $dbh = $self->get_standard_dbh($myconfig);
2105   my $where;
2106
2107   if ($table eq 'customer') {
2108     $where = "WHERE role = 'P' ";
2109   }
2110
2111   my $query = qq|SELECT id, description
2112                  FROM department
2113                  $where
2114                  ORDER BY description|;
2115   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2116
2117   delete($self->{all_departments}) unless (@{ $self->{all_departments} });
2118
2119   $main::lxdebug->leave_sub();
2120 }
2121
2122 sub create_links {
2123   $main::lxdebug->enter_sub();
2124
2125   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2126
2127   my ($fld, $arap);
2128   if ($table eq "customer") {
2129     $fld = "buy";
2130     $arap = "ar";
2131   } else {
2132     $table = "vendor";
2133     $fld = "sell";
2134     $arap = "ap";
2135   }
2136
2137   $self->all_vc($myconfig, $table, $module);
2138
2139   # get last customers or vendors
2140   my ($query, $sth, $ref);
2141
2142   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2143   my %xkeyref = ();
2144
2145   if (!$self->{id}) {
2146
2147     my $transdate = "current_date";
2148     if ($self->{transdate}) {
2149       $transdate = $dbh->quote($self->{transdate});
2150     }
2151
2152     # now get the account numbers
2153     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2154                 FROM chart c, taxkeys tk
2155                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2156                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2157                 ORDER BY c.accno|;
2158
2159     $sth = $dbh->prepare($query);
2160
2161     do_statement($self, $sth, $query, '%' . $module . '%');
2162
2163     $self->{accounts} = "";
2164     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2165
2166       foreach my $key (split(/:/, $ref->{link})) {
2167         if ($key =~ /$module/) {
2168
2169           # cross reference for keys
2170           $xkeyref{ $ref->{accno} } = $key;
2171
2172           push @{ $self->{"${module}_links"}{$key} },
2173             { accno       => $ref->{accno},
2174               description => $ref->{description},
2175               taxkey      => $ref->{taxkey_id},
2176               tax_id      => $ref->{tax_id} };
2177
2178           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2179         }
2180       }
2181     }
2182   }
2183
2184   # get taxkeys and description
2185   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2186   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2187
2188   if (($module eq "AP") || ($module eq "AR")) {
2189     # get tax rates and description
2190     $query = qq|SELECT * FROM tax|;
2191     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2192   }
2193
2194   if ($self->{id}) {
2195     $query =
2196       qq|SELECT
2197            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2198            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
2199            a.intnotes, a.department_id, a.amount AS oldinvtotal,
2200            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2201            c.name AS $table,
2202            d.description AS department,
2203            e.name AS employee
2204          FROM $arap a
2205          JOIN $table c ON (a.${table}_id = c.id)
2206          LEFT JOIN employee e ON (e.id = a.employee_id)
2207          LEFT JOIN department d ON (d.id = a.department_id)
2208          WHERE a.id = ?|;
2209     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2210
2211     foreach $key (keys %$ref) {
2212       $self->{$key} = $ref->{$key};
2213     }
2214
2215     my $transdate = "current_date";
2216     if ($self->{transdate}) {
2217       $transdate = $dbh->quote($self->{transdate});
2218     }
2219
2220     # now get the account numbers
2221     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2222                 FROM chart c
2223                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2224                 WHERE c.link LIKE ?
2225                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2226                     OR c.link LIKE '%_tax%')
2227                 ORDER BY c.accno|;
2228
2229     $sth = $dbh->prepare($query);
2230     do_statement($self, $sth, $query, "%$module%");
2231
2232     $self->{accounts} = "";
2233     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2234
2235       foreach my $key (split(/:/, $ref->{link})) {
2236         if ($key =~ /$module/) {
2237
2238           # cross reference for keys
2239           $xkeyref{ $ref->{accno} } = $key;
2240
2241           push @{ $self->{"${module}_links"}{$key} },
2242             { accno       => $ref->{accno},
2243               description => $ref->{description},
2244               taxkey      => $ref->{taxkey_id},
2245               tax_id      => $ref->{tax_id} };
2246
2247           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2248         }
2249       }
2250     }
2251
2252
2253     # get amounts from individual entries
2254     $query =
2255       qq|SELECT
2256            c.accno, c.description,
2257            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
2258            p.projectnumber,
2259            t.rate, t.id
2260          FROM acc_trans a
2261          LEFT JOIN chart c ON (c.id = a.chart_id)
2262          LEFT JOIN project p ON (p.id = a.project_id)
2263          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
2264                                     WHERE (tk.taxkey_id=a.taxkey) AND
2265                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
2266                                         THEN tk.chart_id = a.chart_id
2267                                         ELSE 1 = 1
2268                                         END)
2269                                        OR (c.link='%tax%')) AND
2270                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
2271          WHERE a.trans_id = ?
2272          AND a.fx_transaction = '0'
2273          ORDER BY a.oid, a.transdate|;
2274     $sth = $dbh->prepare($query);
2275     do_statement($self, $sth, $query, $self->{id});
2276
2277     # get exchangerate for currency
2278     $self->{exchangerate} =
2279       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2280     my $index = 0;
2281
2282     # store amounts in {acc_trans}{$key} for multiple accounts
2283     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2284       $ref->{exchangerate} =
2285         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2286       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2287         $index++;
2288       }
2289       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2290         $ref->{amount} *= -1;
2291       }
2292       $ref->{index} = $index;
2293
2294       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2295     }
2296
2297     $sth->finish;
2298     $query =
2299       qq|SELECT
2300            d.curr AS currencies, d.closedto, d.revtrans,
2301            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2302            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2303          FROM defaults d|;
2304     $ref = selectfirst_hashref_query($self, $dbh, $query);
2305     map { $self->{$_} = $ref->{$_} } keys %$ref;
2306
2307   } else {
2308
2309     # get date
2310     $query =
2311        qq|SELECT
2312             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
2313             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2314             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2315           FROM defaults d|;
2316     $ref = selectfirst_hashref_query($self, $dbh, $query);
2317     map { $self->{$_} = $ref->{$_} } keys %$ref;
2318
2319     if ($self->{"$self->{vc}_id"}) {
2320
2321       # only setup currency
2322       ($self->{currency}) = split(/:/, $self->{currencies});
2323
2324     } else {
2325
2326       $self->lastname_used($dbh, $myconfig, $table, $module);
2327
2328       # get exchangerate for currency
2329       $self->{exchangerate} =
2330         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2331
2332     }
2333
2334   }
2335
2336   $main::lxdebug->leave_sub();
2337 }
2338
2339 sub lastname_used {
2340   $main::lxdebug->enter_sub();
2341
2342   my ($self, $dbh, $myconfig, $table, $module) = @_;
2343
2344   my $arap  = ($table eq 'customer') ? "ar" : "ap";
2345   $table = $table eq "customer" ? "customer" : "vendor";
2346   my $where = "1 = 1";
2347
2348   if ($self->{type} =~ /_order/) {
2349     $arap  = 'oe';
2350     $where = "quotation = '0'";
2351   }
2352   if ($self->{type} =~ /_quotation/) {
2353     $arap  = 'oe';
2354     $where = "quotation = '1'";
2355   }
2356
2357   my $query = qq|SELECT MAX(id) FROM $arap
2358                  WHERE $where AND ${table}_id > 0|;
2359   my ($trans_id) = selectrow_query($self, $dbh, $query);
2360
2361   $trans_id *= 1;
2362   $query =
2363     qq|SELECT
2364          a.curr, a.${table}_id, a.department_id,
2365          d.description AS department,
2366          ct.name, current_date + ct.terms AS duedate
2367        FROM $arap a
2368        LEFT JOIN $table ct ON (a.${table}_id = ct.id)
2369        LEFT JOIN department d ON (a.department_id = d.id)
2370        WHERE a.id = ?|;
2371   ($self->{currency},   $self->{"${table}_id"}, $self->{department_id},
2372    $self->{department}, $self->{$table},        $self->{duedate})
2373     = selectrow_query($self, $dbh, $query, $trans_id);
2374
2375   $main::lxdebug->leave_sub();
2376 }
2377
2378 sub current_date {
2379   $main::lxdebug->enter_sub();
2380
2381   my ($self, $myconfig, $thisdate, $days) = @_;
2382
2383   my $dbh = $self->get_standard_dbh($myconfig);
2384   my $query;
2385
2386   $days *= 1;
2387   if ($thisdate) {
2388     my $dateformat = $myconfig->{dateformat};
2389     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2390     $thisdate = $dbh->quote($thisdate);
2391     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
2392   } else {
2393     $query = qq|SELECT current_date AS thisdate|;
2394   }
2395
2396   ($thisdate) = selectrow_query($self, $dbh, $query);
2397
2398   $main::lxdebug->leave_sub();
2399
2400   return $thisdate;
2401 }
2402
2403 sub like {
2404   $main::lxdebug->enter_sub();
2405
2406   my ($self, $string) = @_;
2407
2408   if ($string !~ /%/) {
2409     $string = "%$string%";
2410   }
2411
2412   $string =~ s/\'/\'\'/g;
2413
2414   $main::lxdebug->leave_sub();
2415
2416   return $string;
2417 }
2418
2419 sub redo_rows {
2420   $main::lxdebug->enter_sub();
2421
2422   my ($self, $flds, $new, $count, $numrows) = @_;
2423
2424   my @ndx = ();
2425
2426   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } }
2427     (1 .. $count);
2428
2429   my $i = 0;
2430
2431   # fill rows
2432   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
2433     $i++;
2434     $j = $item->{ndx} - 1;
2435     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
2436   }
2437
2438   # delete empty rows
2439   for $i ($count + 1 .. $numrows) {
2440     map { delete $self->{"${_}_$i"} } @{$flds};
2441   }
2442
2443   $main::lxdebug->leave_sub();
2444 }
2445
2446 sub update_status {
2447   $main::lxdebug->enter_sub();
2448
2449   my ($self, $myconfig) = @_;
2450
2451   my ($i, $id);
2452
2453   my $dbh = $self->dbconnect_noauto($myconfig);
2454
2455   my $query = qq|DELETE FROM status
2456                  WHERE (formname = ?) AND (trans_id = ?)|;
2457   my $sth = prepare_query($self, $dbh, $query);
2458
2459   if ($self->{formname} =~ /(check|receipt)/) {
2460     for $i (1 .. $self->{rowcount}) {
2461       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
2462     }
2463   } else {
2464     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
2465   }
2466   $sth->finish();
2467
2468   my $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
2469   my $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
2470
2471   my %queued = split / /, $self->{queued};
2472   my @values;
2473
2474   if ($self->{formname} =~ /(check|receipt)/) {
2475
2476     # this is a check or receipt, add one entry for each lineitem
2477     my ($accno) = split /--/, $self->{account};
2478     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
2479                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
2480     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
2481     $sth = prepare_query($self, $dbh, $query);
2482
2483     for $i (1 .. $self->{rowcount}) {
2484       if ($self->{"checked_$i"}) {
2485         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
2486       }
2487     }
2488     $sth->finish();
2489
2490   } else {
2491     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2492                 VALUES (?, ?, ?, ?, ?)|;
2493     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
2494              $queued{$self->{formname}}, $self->{formname});
2495   }
2496
2497   $dbh->commit;
2498   $dbh->disconnect;
2499
2500   $main::lxdebug->leave_sub();
2501 }
2502
2503 sub save_status {
2504   $main::lxdebug->enter_sub();
2505
2506   my ($self, $dbh) = @_;
2507
2508   my ($query, $printed, $emailed);
2509
2510   my $formnames  = $self->{printed};
2511   my $emailforms = $self->{emailed};
2512
2513   my $query = qq|DELETE FROM status
2514                  WHERE (formname = ?) AND (trans_id = ?)|;
2515   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
2516
2517   # this only applies to the forms
2518   # checks and receipts are posted when printed or queued
2519
2520   if ($self->{queued}) {
2521     my %queued = split / /, $self->{queued};
2522
2523     foreach my $formname (keys %queued) {
2524       $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
2525       $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
2526
2527       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2528                   VALUES (?, ?, ?, ?, ?)|;
2529       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
2530
2531       $formnames  =~ s/$self->{formname}//;
2532       $emailforms =~ s/$self->{formname}//;
2533
2534     }
2535   }
2536
2537   # save printed, emailed info
2538   $formnames  =~ s/^ +//g;
2539   $emailforms =~ s/^ +//g;
2540
2541   my %status = ();
2542   map { $status{$_}{printed} = 1 } split / +/, $formnames;
2543   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
2544
2545   foreach my $formname (keys %status) {
2546     $printed = ($formnames  =~ /$self->{formname}/) ? "1" : "0";
2547     $emailed = ($emailforms =~ /$self->{formname}/) ? "1" : "0";
2548
2549     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
2550                 VALUES (?, ?, ?, ?)|;
2551     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
2552   }
2553
2554   $main::lxdebug->leave_sub();
2555 }
2556
2557 #--- 4 locale ---#
2558 # $main::locale->text('SAVED')
2559 # $main::locale->text('DELETED')
2560 # $main::locale->text('ADDED')
2561 # $main::locale->text('PAYMENT POSTED')
2562 # $main::locale->text('POSTED')
2563 # $main::locale->text('POSTED AS NEW')
2564 # $main::locale->text('ELSE')
2565 # $main::locale->text('SAVED FOR DUNNING')
2566 # $main::locale->text('DUNNING STARTED')
2567 # $main::locale->text('PRINTED')
2568 # $main::locale->text('MAILED')
2569 # $main::locale->text('SCREENED')
2570 # $main::locale->text('CANCELED')
2571 # $main::locale->text('invoice')
2572 # $main::locale->text('proforma')
2573 # $main::locale->text('sales_order')
2574 # $main::locale->text('packing_list')
2575 # $main::locale->text('pick_list')
2576 # $main::locale->text('purchase_order')
2577 # $main::locale->text('bin_list')
2578 # $main::locale->text('sales_quotation')
2579 # $main::locale->text('request_quotation')
2580
2581 sub save_history {
2582   $main::lxdebug->enter_sub();
2583
2584   my $self = shift();
2585   my $dbh = shift();
2586
2587   if(!exists $self->{employee_id}) {
2588     &get_employee($self, $dbh);
2589   }
2590
2591   my $query =
2592    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
2593    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
2594   my @values = (conv_i($self->{id}), $self->{login},
2595                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
2596   do_query($self, $dbh, $query, @values);
2597
2598   $main::lxdebug->leave_sub();
2599 }
2600
2601 sub get_history {
2602   $main::lxdebug->enter_sub();
2603
2604   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
2605   my ($orderBy, $desc) = split(/\-\-/, $order);
2606   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
2607   my @tempArray;
2608   my $i = 0;
2609   if ($trans_id ne "") {
2610     my $query =
2611       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 | .
2612       qq|FROM history_erp h | .
2613       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
2614       qq|WHERE trans_id = | . $trans_id
2615       . $restriction . qq| |
2616       . $order;
2617       
2618     my $sth = $dbh->prepare($query) || $self->dberror($query);
2619
2620     $sth->execute() || $self->dberror("$query");
2621
2622     while(my $hash_ref = $sth->fetchrow_hashref()) {
2623       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
2624       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
2625       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
2626       $tempArray[$i++] = $hash_ref;
2627     }
2628     $main::lxdebug->leave_sub() and return \@tempArray 
2629       if ($i > 0 && $tempArray[0] ne "");
2630   }
2631   $main::lxdebug->leave_sub();
2632   return 0;
2633 }
2634
2635 sub update_defaults {
2636   $main::lxdebug->enter_sub();
2637
2638   my ($self, $myconfig, $fld, $provided_dbh) = @_;
2639
2640   my $dbh;
2641   if ($provided_dbh) {
2642     $dbh = $provided_dbh;
2643   } else {
2644     $dbh = $self->dbconnect_noauto($myconfig);
2645   }
2646   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
2647   my $sth   = $dbh->prepare($query);
2648
2649   $sth->execute || $self->dberror($query);
2650   my ($var) = $sth->fetchrow_array;
2651   $sth->finish;
2652
2653   $var =~ s/\d+$/ sprintf '%0*d', length($&), $&+1 /e;
2654   $var ||= 1;
2655
2656   $query = qq|UPDATE defaults SET $fld = ?|;
2657   do_query($self, $dbh, $query, $var);
2658
2659   if (!$provided_dbh) {
2660     $dbh->commit;
2661     $dbh->disconnect;
2662   }
2663
2664   $main::lxdebug->leave_sub();
2665
2666   return $var;
2667 }
2668
2669 sub update_business {
2670   $main::lxdebug->enter_sub();
2671
2672   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
2673
2674   my $dbh;
2675   if ($provided_dbh) {
2676     $dbh = $provided_dbh;
2677   } else {
2678     $dbh = $self->dbconnect_noauto($myconfig);
2679   }
2680   my $query =
2681     qq|SELECT customernumberinit FROM business
2682        WHERE id = ? FOR UPDATE|;
2683   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
2684
2685   $var =~ s/\d+$/ sprintf '%0*d', length($&), $&+1 /e;
2686   
2687   $query = qq|UPDATE business
2688               SET customernumberinit = ?
2689               WHERE id = ?|;
2690   do_query($self, $dbh, $query, $var, $business_id);
2691
2692   if (!$provided_dbh) {
2693     $dbh->commit;
2694     $dbh->disconnect;
2695   }
2696
2697   $main::lxdebug->leave_sub();
2698
2699   return $var;
2700 }
2701
2702 sub get_partsgroup {
2703   $main::lxdebug->enter_sub();
2704
2705   my ($self, $myconfig, $p) = @_;
2706
2707   my $dbh = $self->get_standard_dbh($myconfig);
2708
2709   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
2710                  FROM partsgroup pg
2711                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
2712   my @values;
2713
2714   if ($p->{searchitems} eq 'part') {
2715     $query .= qq|WHERE p.inventory_accno_id > 0|;
2716   }
2717   if ($p->{searchitems} eq 'service') {
2718     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
2719   }
2720   if ($p->{searchitems} eq 'assembly') {
2721     $query .= qq|WHERE p.assembly = '1'|;
2722   }
2723   if ($p->{searchitems} eq 'labor') {
2724     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
2725   }
2726
2727   $query .= qq|ORDER BY partsgroup|;
2728
2729   if ($p->{all}) {
2730     $query = qq|SELECT id, partsgroup FROM partsgroup
2731                 ORDER BY partsgroup|;
2732   }
2733
2734   if ($p->{language_code}) {
2735     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
2736                   t.description AS translation
2737                 FROM partsgroup pg
2738                 JOIN parts p ON (p.partsgroup_id = pg.id)
2739                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
2740                 ORDER BY translation|;
2741     @values = ($p->{language_code});
2742   }
2743
2744   $self->{all_partsgroup} = selectall_hashref_query($self, $dbh, $query, @values);
2745
2746   $main::lxdebug->leave_sub();
2747 }
2748
2749 sub get_pricegroup {
2750   $main::lxdebug->enter_sub();
2751
2752   my ($self, $myconfig, $p) = @_;
2753
2754   my $dbh = $self->get_standard_dbh($myconfig);
2755
2756   my $query = qq|SELECT p.id, p.pricegroup
2757                  FROM pricegroup p|;
2758
2759   $query .= qq| ORDER BY pricegroup|;
2760
2761   if ($p->{all}) {
2762     $query = qq|SELECT id, pricegroup FROM pricegroup
2763                 ORDER BY pricegroup|;
2764   }
2765
2766   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
2767
2768   $main::lxdebug->leave_sub();
2769 }
2770
2771 sub all_years {
2772 # usage $form->all_years($myconfig, [$dbh])
2773 # return list of all years where bookings found
2774 # (@all_years)
2775
2776   $main::lxdebug->enter_sub();
2777
2778   my ($self, $myconfig, $dbh) = @_;
2779
2780   $dbh ||= $self->get_standard_dbh($myconfig);
2781
2782   # get years
2783   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
2784                    (SELECT MAX(transdate) FROM acc_trans)|;
2785   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
2786
2787   if ($myconfig->{dateformat} =~ /^yy/) {
2788     ($startdate) = split /\W/, $startdate;
2789     ($enddate) = split /\W/, $enddate;
2790   } else {
2791     (@_) = split /\W/, $startdate;
2792     $startdate = $_[2];
2793     (@_) = split /\W/, $enddate;
2794     $enddate = $_[2];
2795   }
2796
2797   my @all_years;
2798   $startdate = substr($startdate,0,4);
2799   $enddate = substr($enddate,0,4);
2800
2801   while ($enddate >= $startdate) {
2802     push @all_years, $enddate--;
2803   }
2804
2805   return @all_years;
2806
2807   $main::lxdebug->leave_sub();
2808 }
2809
2810 1;