74de73833eacd0b4d6cdc38a415998dc4d4b9668
[kivitendo-erp.git] / SL / Form.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1998-2002
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 # Contributors: Thomas Bayen <bayen@gmx.de>
16 #               Antti Kaihola <akaihola@siba.fi>
17 #               Moritz Bunkus (tex code)
18 #
19 # This program is free software; you can redistribute it and/or modify
20 # it under the terms of the GNU General Public License as published by
21 # the Free Software Foundation; either version 2 of the License, or
22 # (at your option) any later version.
23 #
24 # This program is distributed in the hope that it will be useful,
25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27 # GNU General Public License for more details.
28 # You should have received a copy of the GNU General Public License
29 # along with this program; if not, write to the Free Software
30 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 #======================================================================
32 # Utilities for parsing forms
33 # and supporting routines for linking account numbers
34 # used in AR, AP and IS, IR modules
35 #
36 #======================================================================
37
38 package Form;
39
40 #use strict;
41
42 use Data::Dumper;
43
44 use CGI;
45 use CGI::Ajax;
46 use Cwd;
47 use IO::File;
48 use SL::Auth;
49 use SL::Auth::DB;
50 use SL::Auth::LDAP;
51 use SL::AM;
52 use SL::Common;
53 use SL::DBUtils;
54 use SL::Mailer;
55 use SL::Menu;
56 use SL::Template;
57 use SL::User;
58 use Template;
59 use List::Util qw(first max min sum);
60 use List::MoreUtils qw(any);
61
62 my $standard_dbh;
63
64 END {
65   if ($standard_dbh) {
66     $standard_dbh->disconnect();
67     undef $standard_dbh;
68   }
69 }
70
71 =item _store_value()
72
73 parses a complex var name, and stores it in the form.
74
75 syntax:
76   $form->_store_value($key, $value);
77
78 keys must start with a string, and can contain various tokens.
79 supported key structures are:
80
81 1. simple access
82   simple key strings work as expected
83
84   id => $form->{id}
85
86 2. hash access.
87   separating two keys by a dot (.) will result in a hash lookup for the inner value
88   this is similar to the behaviour of java and templating mechanisms.
89
90   filter.description => $form->{filter}->{description}
91
92 3. array+hashref access
93
94   adding brackets ([]) before the dot will cause the next hash to be put into an array.
95   using [+] instead of [] will force a new array index. this is useful for recurring
96   data structures like part lists. put a [+] into the first varname, and use [] on the
97   following ones.
98
99   repeating these names in your template:
100
101     invoice.items[+].id
102     invoice.items[].parts_id
103
104   will result in:
105
106     $form->{invoice}->{items}->[
107       {
108         id       => ...
109         parts_id => ...
110       },
111       {
112         id       => ...
113         parts_id => ...
114       }
115       ...
116     ]
117
118 4. arrays
119
120   using brackets at the end of a name will result in a pure array to be created.
121   note that you mustn't use [+], which is reserved for array+hash access and will
122   result in undefined behaviour in array context.
123
124   filter.status[]  => $form->{status}->[ val1, val2, ... ]
125
126 =cut
127 sub _store_value {
128   $main::lxdebug->enter_sub(2);
129
130   my $self  = shift;
131   my $key   = shift;
132   my $value = shift;
133
134   my @tokens = split /((?:\[\+?\])?(?:\.|$))/, $key;
135
136   my $curr;
137
138   if (scalar @tokens) {
139      $curr = \ $self->{ shift @tokens };
140   }
141
142   while (@tokens) {
143     my $sep = shift @tokens;
144     my $key = shift @tokens;
145
146     $curr = \ $$curr->[++$#$$curr], next if $sep eq '[]';
147     $curr = \ $$curr->[max 0, $#$$curr]  if $sep eq '[].';
148     $curr = \ $$curr->[++$#$$curr]       if $sep eq '[+].';
149     $curr = \ $$curr->{$key}
150   }
151
152   $$curr = $value;
153
154   $main::lxdebug->leave_sub(2);
155
156   return $curr;
157 }
158
159 sub _input_to_hash {
160   $main::lxdebug->enter_sub(2);
161
162   my $self  = shift;
163   my $input = shift;
164
165   my @pairs = split(/&/, $input);
166
167   foreach (@pairs) {
168     my ($key, $value) = split(/=/, $_, 2);
169     $self->_store_value($self->unescape($key), $self->unescape($value)) if ($key);
170   }
171
172   $main::lxdebug->leave_sub(2);
173 }
174
175 sub _request_to_hash {
176   $main::lxdebug->enter_sub(2);
177
178   my $self  = shift;
179   my $input = shift;
180
181   if (!$ENV{'CONTENT_TYPE'}
182       || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
183
184     $self->_input_to_hash($input);
185
186     $main::lxdebug->leave_sub(2);
187     return;
188   }
189
190   my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
191
192   my $boundary = '--' . $1;
193
194   foreach my $line (split m/\n/, $input) {
195     last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
196
197     if (($line eq $boundary) || ($line eq "$boundary\r")) {
198       ${ $previous } =~ s|\r?\n$|| if $previous;
199
200       undef $previous;
201       undef $filename;
202
203       $headers_done   = 0;
204       $content_type   = "text/plain";
205       $boundary_found = 1;
206       $need_cr        = 0;
207
208       next;
209     }
210
211     next unless $boundary_found;
212
213     if (!$headers_done) {
214       $line =~ s/[\r\n]*$//;
215
216       if (!$line) {
217         $headers_done = 1;
218         next;
219       }
220
221       if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
222         if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
223           $filename = $1;
224           substr $line, $-[0], $+[0] - $-[0], "";
225         }
226
227         if ($line =~ m|name\s*=\s*"(.*?)"|i) {
228           $name = $1;
229           substr $line, $-[0], $+[0] - $-[0], "";
230         }
231
232         $previous         = $self->_store_value($name, '') if ($name);
233         $self->{FILENAME} = $filename if ($filename);
234
235         next;
236       }
237
238       if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
239         $content_type = $1;
240       }
241
242       next;
243     }
244
245     next unless $previous;
246
247     ${ $previous } .= "${line}\n";
248   }
249
250   ${ $previous } =~ s|\r?\n$|| if $previous;
251
252   $main::lxdebug->leave_sub(2);
253 }
254
255 sub _recode_recursively {
256   $main::lxdebug->enter_sub();
257   my ($iconv, $param) = @_;
258
259   if (any { ref $param eq $_ } qw(Form HASH)) {
260     foreach my $key (keys %{ $param }) {
261       if (!ref $param->{$key}) {
262         $param->{$key} = $iconv->convert($param->{$key});
263       } else {
264         _recode_recursively($iconv, $param->{$key});
265       }
266     }
267
268   } elsif (ref $param eq 'ARRAY') {
269     foreach my $idx (0 .. scalar(@{ $param }) - 1) {
270       if (!ref $param->[$idx]) {
271         $param->[$idx] = $iconv->convert($param->[$idx]);
272       } else {
273         _recode_recursively($iconv, $param->[$idx]);
274       }
275     }
276   }
277   $main::lxdebug->leave_sub();
278 }
279
280 sub new {
281   $main::lxdebug->enter_sub();
282
283   my $type = shift;
284
285   my $self = {};
286
287   if ($LXDebug::watch_form) {
288     require SL::Watchdog;
289     tie %{ $self }, 'SL::Watchdog';
290   }
291
292   read(STDIN, $_, $ENV{CONTENT_LENGTH});
293
294   if ($ENV{QUERY_STRING}) {
295     $_ = $ENV{QUERY_STRING};
296   }
297
298   if ($ARGV[0]) {
299     $_ = $ARGV[0];
300   }
301
302   bless $self, $type;
303
304   $self->_request_to_hash($_);
305
306   my $db_charset   = $main::dbcharset;
307   $db_charset    ||= Common::DEFAULT_CHARSET;
308
309   if ($self->{INPUT_ENCODING} && (lc $self->{INPUT_ENCODING} ne $db_charset)) {
310     require Text::Iconv;
311     my $iconv = Text::Iconv->new($self->{INPUT_ENCODING}, $db_charset);
312
313     _recode_recursively($iconv, $self);
314
315     delete $self{INPUT_ENCODING};
316   }
317
318   $self->{action}  =  lc $self->{action};
319   $self->{action}  =~ s/( |-|,|\#)/_/g;
320
321   $self->{version} =  "2.6.0";
322
323   $main::lxdebug->leave_sub();
324
325   return $self;
326 }
327
328 sub _flatten_variables_rec {
329   $main::lxdebug->enter_sub(2);
330
331   my $self   = shift;
332   my $curr   = shift;
333   my $prefix = shift;
334   my $key    = shift;
335
336   my @result;
337
338   if ('' eq ref $curr->{$key}) {
339     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
340
341   } elsif ('HASH' eq ref $curr->{$key}) {
342     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
343       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
344     }
345
346   } else {
347     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
348       my $first_array_entry = 1;
349
350       foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
351         push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
352         $first_array_entry = 0;
353       }
354     }
355   }
356
357   $main::lxdebug->leave_sub(2);
358
359   return @result;
360 }
361
362 sub flatten_variables {
363   $main::lxdebug->enter_sub(2);
364
365   my $self = shift;
366   my @keys = @_;
367
368   my @variables;
369
370   foreach (@keys) {
371     push @variables, $self->_flatten_variables_rec($self, '', $_);
372   }
373
374   $main::lxdebug->leave_sub(2);
375
376   return @variables;
377 }
378
379 sub flatten_standard_variables {
380   $main::lxdebug->enter_sub(2);
381
382   my $self      = shift;
383   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
384
385   my @variables;
386
387   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
388     push @variables, $self->_flatten_variables_rec($self, '', $_);
389   }
390
391   $main::lxdebug->leave_sub(2);
392
393   return @variables;
394 }
395
396 sub debug {
397   $main::lxdebug->enter_sub();
398
399   my ($self) = @_;
400
401   print "\n";
402
403   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
404
405   $main::lxdebug->leave_sub();
406 }
407
408 sub dumper {
409   $main::lxdebug->enter_sub(2);
410
411   my $self          = shift;
412   my $password      = $self->{password};
413
414   $self->{password} = 'X' x 8;
415
416   local $Data::Dumper::Sortkeys = 1;
417   my $output                    = Dumper($self);
418
419   $self->{password} = $password;
420
421   $main::lxdebug->leave_sub(2);
422
423   return $output;
424 }
425
426 sub escape {
427   $main::lxdebug->enter_sub(2);
428
429   my ($self, $str) = @_;
430
431   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
432
433   $main::lxdebug->leave_sub(2);
434
435   return $str;
436 }
437
438 sub unescape {
439   $main::lxdebug->enter_sub(2);
440
441   my ($self, $str) = @_;
442
443   $str =~ tr/+/ /;
444   $str =~ s/\\$//;
445
446   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
447
448   $main::lxdebug->leave_sub(2);
449
450   return $str;
451 }
452
453 sub quote {
454   $main::lxdebug->enter_sub();
455   my ($self, $str) = @_;
456
457   if ($str && !ref($str)) {
458     $str =~ s/\"/&quot;/g;
459   }
460
461   $main::lxdebug->leave_sub();
462
463   return $str;
464 }
465
466 sub unquote {
467   $main::lxdebug->enter_sub();
468   my ($self, $str) = @_;
469
470   if ($str && !ref($str)) {
471     $str =~ s/&quot;/\"/g;
472   }
473
474   $main::lxdebug->leave_sub();
475
476   return $str;
477 }
478
479 sub hide_form {
480   $main::lxdebug->enter_sub();
481   my $self = shift;
482
483   if (@_) {
484     map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
485   } else {
486     for (sort keys %$self) {
487       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
488       print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
489     }
490   }
491   $main::lxdebug->leave_sub();
492 }
493
494 sub error {
495   $main::lxdebug->enter_sub();
496
497   $main::lxdebug->show_backtrace();
498
499   my ($self, $msg) = @_;
500   if ($ENV{HTTP_USER_AGENT}) {
501     $msg =~ s/\n/<br>/g;
502     $self->show_generic_error($msg);
503
504   } else {
505
506     die "Error: $msg\n";
507   }
508
509   $main::lxdebug->leave_sub();
510 }
511
512 sub info {
513   $main::lxdebug->enter_sub();
514
515   my ($self, $msg) = @_;
516
517   if ($ENV{HTTP_USER_AGENT}) {
518     $msg =~ s/\n/<br>/g;
519
520     if (!$self->{header}) {
521       $self->header;
522       print qq|
523       <body>|;
524     }
525
526     print qq|
527
528     <p><b>$msg</b>
529     |;
530
531   } else {
532
533     if ($self->{info_function}) {
534       &{ $self->{info_function} }($msg);
535     } else {
536       print "$msg\n";
537     }
538   }
539
540   $main::lxdebug->leave_sub();
541 }
542
543 # calculates the number of rows in a textarea based on the content and column number
544 # can be capped with maxrows
545 sub numtextrows {
546   $main::lxdebug->enter_sub();
547   my ($self, $str, $cols, $maxrows, $minrows) = @_;
548
549   $minrows ||= 1;
550
551   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
552   $maxrows ||= $rows;
553
554   $main::lxdebug->leave_sub();
555
556   return max(min($rows, $maxrows), $minrows);
557 }
558
559 sub dberror {
560   $main::lxdebug->enter_sub();
561
562   my ($self, $msg) = @_;
563
564   $self->error("$msg\n" . $DBI::errstr);
565
566   $main::lxdebug->leave_sub();
567 }
568
569 sub isblank {
570   $main::lxdebug->enter_sub();
571
572   my ($self, $name, $msg) = @_;
573
574   my $curr = $self;
575   foreach my $part (split m/\./, $name) {
576     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
577       $self->error($msg);
578     }
579     $curr = $curr->{$part};
580   }
581
582   $main::lxdebug->leave_sub();
583 }
584
585 sub create_http_response {
586   $main::lxdebug->enter_sub();
587
588   my $self     = shift;
589   my %params   = @_;
590
591   my $cgi      = $main::cgi;
592   $cgi       ||= CGI->new('');
593
594   my $base_path;
595
596   if ($ENV{HTTP_X_FORWARDED_FOR}) {
597     $base_path =  $ENV{HTTP_REFERER};
598     $base_path =~ s|^.*?://.*?/|/|;
599   } else {
600     $base_path =  $ENV{REQUEST_URI};
601   }
602   $base_path =~ s|[^/]+$||;
603   $base_path =~ s|/$||;
604
605   my $session_cookie;
606   if (defined $main::auth) {
607     my $session_cookie_value   = $main::auth->get_session_id();
608     $session_cookie_value    ||= 'NO_SESSION';
609
610     $session_cookie = $cgi->cookie('-name'  => $main::auth->get_session_cookie_name(),
611                                    '-value' => $session_cookie_value,
612                                    '-path'  => $base_path);
613   }
614
615   my %cgi_params = ('-type' => $params{content_type});
616   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
617
618   my $output = $cgi->header('-cookie' => $session_cookie,
619                             %cgi_params);
620
621   $main::lxdebug->leave_sub();
622
623   return $output;
624 }
625
626
627 sub header {
628   $main::lxdebug->enter_sub();
629
630   my ($self, $extra_code) = @_;
631
632   if ($self->{header}) {
633     $main::lxdebug->leave_sub();
634     return;
635   }
636
637   my ($stylesheet, $favicon, $pagelayout);
638
639   if ($ENV{HTTP_USER_AGENT}) {
640     my $doctype;
641
642     if ($ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/) {
643       # Only set the DOCTYPE for Internet Explorer. Other browsers have problems displaying the menu otherwise.
644       $doctype = qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n|;
645     }
646
647     my $stylesheets = "$self->{stylesheet} $self->{stylesheets}";
648
649     $stylesheets =~ s|^\s*||;
650     $stylesheets =~ s|\s*$||;
651     foreach my $file (split m/\s+/, $stylesheets) {
652       $file =~ s|.*/||;
653       next if (! -f "css/$file");
654
655       $stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|;
656     }
657
658     $self->{favicon}    = "favicon.ico" unless $self->{favicon};
659
660     if ($self->{favicon} && (-f "$self->{favicon}")) {
661       $favicon =
662         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
663   |;
664     }
665
666     my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
667
668     if ($self->{landscape}) {
669       $pagelayout = qq|<style type="text/css">
670                         \@page { size:landscape; }
671                         </style>|;
672     }
673
674     my $fokus = qq|  document.$self->{fokus}.focus();| if ($self->{"fokus"});
675
676     #Set Calendar
677     my $jsscript = "";
678     if ($self->{jsscript} == 1) {
679
680       $jsscript = qq|
681         <script type="text/javascript" src="js/common.js"></script>
682         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
683         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
684         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
685         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
686         $self->{javascript}
687        |;
688     }
689
690     $self->{titlebar} =
691       ($self->{title})
692       ? "$self->{title} - $self->{titlebar}"
693       : $self->{titlebar};
694     my $ajax = "";
695     foreach my $item (@ { $self->{AJAX} }) {
696       $ajax .= $item->show_javascript();
697     }
698
699     print $self->create_http_response('content_type' => 'text/html',
700                                       'charset'      => $db_charset,);
701     print qq|${doctype}<html>
702 <head>
703   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
704   <title>$self->{titlebar}</title>
705   $stylesheet
706   $pagelayout
707   $favicon
708   $jsscript
709   $ajax
710
711   <script type="text/javascript">
712   <!--
713     function focus() {
714       $fokus
715     }
716   //-->
717   </script>
718
719   <meta name="robots" content="noindex,nofollow" />
720   <script type="text/javascript" src="js/highlight_input.js"></script>
721
722   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
723   <script type="text/javascript" src="js/tabcontent.js">
724
725   /***********************************************
726    * Tab Content script v2.2- Â© Dynamic Drive DHTML code library (www.dynamicdrive.com)
727    * This notice MUST stay intact for legal use
728    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
729    ***********************************************/
730
731   </script>
732
733   $extra_code
734 </head>
735
736 |;
737   }
738   $self->{header} = 1;
739
740   $main::lxdebug->leave_sub();
741 }
742
743 sub ajax_response_header {
744   $main::lxdebug->enter_sub();
745
746   my ($self) = @_;
747
748   my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
749   my $cgi        = $main::cgi || CGI->new('');
750   my $output     = $cgi->header('-charset' => $db_charset);
751
752   $main::lxdebug->leave_sub();
753
754   return $output;
755 }
756
757 sub _prepare_html_template {
758   $main::lxdebug->enter_sub();
759
760   my ($self, $file, $additional_params) = @_;
761   my $language;
762
763   if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
764     $language = $main::language;
765   } else {
766     $language = $main::myconfig{"countrycode"};
767   }
768   $language = "de" unless ($language);
769
770   if (-f "templates/webpages/${file}_${language}.html") {
771     if ((-f ".developer") &&
772         (-f "templates/webpages/${file}_master.html") &&
773         ((stat("templates/webpages/${file}_master.html"))[9] >
774          (stat("templates/webpages/${file}_${language}.html"))[9])) {
775       my $info = "Developer information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
776         "Please re-run 'locales.pl' in 'locale/${language}'.";
777       print(qq|<pre>$info</pre>|);
778       die($info);
779     }
780
781     $file = "templates/webpages/${file}_${language}.html";
782   } elsif (-f "templates/webpages/${file}.html") {
783     $file = "templates/webpages/${file}.html";
784   } else {
785     my $info = "Web page template '${file}' not found.\n" .
786       "Please re-run 'locales.pl' in 'locale/${language}'.";
787     print(qq|<pre>$info</pre>|);
788     die($info);
789   }
790
791   if ($self->{"DEBUG"}) {
792     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
793   }
794
795   if ($additional_params->{"DEBUG"}) {
796     $additional_params->{"DEBUG"} =
797       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
798   }
799
800   if (%main::myconfig) {
801     map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
802     my $jsc_dateformat = $main::myconfig{"dateformat"};
803     $jsc_dateformat =~ s/d+/\%d/gi;
804     $jsc_dateformat =~ s/m+/\%m/gi;
805     $jsc_dateformat =~ s/y+/\%Y/gi;
806     $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
807   }
808
809   $additional_params->{"conf_dbcharset"}              = $main::dbcharset;
810   $additional_params->{"conf_webdav"}                 = $main::webdav;
811   $additional_params->{"conf_lizenzen"}               = $main::lizenzen;
812   $additional_params->{"conf_latex_templates"}        = $main::latex;
813   $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
814
815   if (%main::debug_options) {
816     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
817   }
818
819   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
820     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
821       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
822     }
823   }
824
825   $main::lxdebug->leave_sub();
826
827   return $file;
828 }
829
830 sub parse_html_template {
831   $main::lxdebug->enter_sub();
832
833   my ($self, $file, $additional_params) = @_;
834
835   $additional_params ||= { };
836
837   $file = $self->_prepare_html_template($file, $additional_params);
838
839   my $template = Template->new({ 'INTERPOLATE'  => 0,
840                                  'EVAL_PERL'    => 0,
841                                  'ABSOLUTE'     => 1,
842                                  'CACHE_SIZE'   => 0,
843                                  'PLUGIN_BASE'  => 'SL::Template::Plugin',
844                                  'INCLUDE_PATH' => '.:templates/webpages',
845                                }) || die;
846
847   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
848
849   my $in = IO::File->new($file, 'r');
850
851   if (!$in) {
852     print STDERR "Error opening template file: $!";
853     $main::lxdebug->leave_sub();
854     return '';
855   }
856
857   my $input = join('', <$in>);
858   $in->close();
859
860   if ($main::locale) {
861     $input = $main::locale->{iconv}->convert($input);
862   }
863
864   my $output;
865   if (!$template->process(\$input, $additional_params, \$output)) {
866     print STDERR $template->error();
867   }
868
869   $main::lxdebug->leave_sub();
870
871   return $output;
872 }
873
874 sub show_generic_error {
875   $main::lxdebug->enter_sub();
876
877   my ($self, $error, %params) = @_;
878
879   my $add_params = {
880     'title_error' => $params{title},
881     'label_error' => $error,
882   };
883
884   if ($params{action}) {
885     my @vars;
886
887     map { delete($self->{$_}); } qw(action);
888     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
889
890     $add_params->{SHOW_BUTTON}  = 1;
891     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
892     $add_params->{VARIABLES}    = \@vars;
893
894   } elsif ($params{back_button}) {
895     $add_params->{SHOW_BACK_BUTTON} = 1;
896   }
897
898   $self->{title} = $params{title} if $params{title};
899
900   $self->header();
901   print $self->parse_html_template("generic/error", $add_params);
902
903   $main::lxdebug->leave_sub();
904
905   die("Error: $error\n");
906 }
907
908 sub show_generic_information {
909   $main::lxdebug->enter_sub();
910
911   my ($self, $text, $title) = @_;
912
913   my $add_params = {
914     'title_information' => $title,
915     'label_information' => $text,
916   };
917
918   $self->{title} = $title if ($title);
919
920   $self->header();
921   print $self->parse_html_template("generic/information", $add_params);
922
923   $main::lxdebug->leave_sub();
924
925   die("Information: $text\n");
926 }
927
928 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
929 # changed it to accept an arbitrary number of triggers - sschoeling
930 sub write_trigger {
931   $main::lxdebug->enter_sub();
932
933   my $self     = shift;
934   my $myconfig = shift;
935   my $qty      = shift;
936
937   # set dateform for jsscript
938   # default
939   my %dateformats = (
940     "dd.mm.yy" => "%d.%m.%Y",
941     "dd-mm-yy" => "%d-%m-%Y",
942     "dd/mm/yy" => "%d/%m/%Y",
943     "mm/dd/yy" => "%m/%d/%Y",
944     "mm-dd-yy" => "%m-%d-%Y",
945     "yyyy-mm-dd" => "%Y-%m-%d",
946     );
947
948   my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
949     $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
950
951   my @triggers;
952   while ($#_ >= 2) {
953     push @triggers, qq|
954        Calendar.setup(
955       {
956       inputField : "| . (shift) . qq|",
957       ifFormat :"$ifFormat",
958       align : "| .  (shift) . qq|",
959       button : "| . (shift) . qq|"
960       }
961       );
962        |;
963   }
964   my $jsscript = qq|
965        <script type="text/javascript">
966        <!--| . join("", @triggers) . qq|//-->
967         </script>
968         |;
969
970   $main::lxdebug->leave_sub();
971
972   return $jsscript;
973 }    #end sub write_trigger
974
975 sub redirect {
976   $main::lxdebug->enter_sub();
977
978   my ($self, $msg) = @_;
979
980   if ($self->{callback}) {
981
982     my ($script, $argv) = split(/\?/, $self->{callback}, 2);
983     $script =~ s|.*/||;
984     $script =~ s|[^a-zA-Z0-9_\.]||g;
985     exec("perl", "$script", $argv);
986
987   } else {
988
989     $self->info($msg);
990     exit;
991   }
992
993   $main::lxdebug->leave_sub();
994 }
995
996 # sort of columns removed - empty sub
997 sub sort_columns {
998   $main::lxdebug->enter_sub();
999
1000   my ($self, @columns) = @_;
1001
1002   $main::lxdebug->leave_sub();
1003
1004   return @columns;
1005 }
1006 #
1007 sub format_amount {
1008   $main::lxdebug->enter_sub(2);
1009
1010   my ($self, $myconfig, $amount, $places, $dash) = @_;
1011
1012   if ($amount eq "") {
1013     $amount = 0;
1014   }
1015
1016   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
1017
1018   my $neg = ($amount =~ s/^-//);
1019   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
1020
1021   if (defined($places) && ($places ne '')) {
1022     if (not $exp) {
1023       if ($places < 0) {
1024         $amount *= 1;
1025         $places *= -1;
1026
1027         my ($actual_places) = ($amount =~ /\.(\d+)/);
1028         $actual_places = length($actual_places);
1029         $places = $actual_places > $places ? $actual_places : $places;
1030       }
1031     }
1032     $amount = $self->round_amount($amount, $places);
1033   }
1034
1035   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
1036   my @p = split(/\./, $amount); # split amount at decimal point
1037
1038   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
1039
1040   $amount = $p[0];
1041   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
1042
1043   $amount = do {
1044     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
1045     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
1046                         ($neg ? "-$amount"                             : "$amount" )                              ;
1047   };
1048
1049
1050   $main::lxdebug->leave_sub(2);
1051   return $amount;
1052 }
1053
1054 sub format_amount_units {
1055   $main::lxdebug->enter_sub();
1056
1057   my $self             = shift;
1058   my %params           = @_;
1059
1060   my $myconfig         = \%main::myconfig;
1061   my $amount           = $params{amount} * 1;
1062   my $places           = $params{places};
1063   my $part_unit_name   = $params{part_unit};
1064   my $amount_unit_name = $params{amount_unit};
1065   my $conv_units       = $params{conv_units};
1066   my $max_places       = $params{max_places};
1067
1068   if (!$part_unit_name) {
1069     $main::lxdebug->leave_sub();
1070     return '';
1071   }
1072
1073   AM->retrieve_all_units();
1074   my $all_units        = $main::all_units;
1075
1076   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
1077     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
1078   }
1079
1080   if (!scalar @{ $conv_units }) {
1081     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
1082     $main::lxdebug->leave_sub();
1083     return $result;
1084   }
1085
1086   my $part_unit  = $all_units->{$part_unit_name};
1087   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
1088
1089   $amount       *= $conv_unit->{factor};
1090
1091   my @values;
1092   my $num;
1093
1094   foreach my $unit (@$conv_units) {
1095     my $last = $unit->{name} eq $part_unit->{name};
1096     if (!$last) {
1097       $num     = int($amount / $unit->{factor});
1098       $amount -= $num * $unit->{factor};
1099     }
1100
1101     if ($last ? $amount : $num) {
1102       push @values, { "unit"   => $unit->{name},
1103                       "amount" => $last ? $amount / $unit->{factor} : $num,
1104                       "places" => $last ? $places : 0 };
1105     }
1106
1107     last if $last;
1108   }
1109
1110   if (!@values) {
1111     push @values, { "unit"   => $part_unit_name,
1112                     "amount" => 0,
1113                     "places" => 0 };
1114   }
1115
1116   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
1117
1118   $main::lxdebug->leave_sub();
1119
1120   return $result;
1121 }
1122
1123 sub format_string {
1124   $main::lxdebug->enter_sub(2);
1125
1126   my $self  = shift;
1127   my $input = shift;
1128
1129   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
1130   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
1131   $input =~ s/\#\#/\#/g;
1132
1133   $main::lxdebug->leave_sub(2);
1134
1135   return $input;
1136 }
1137
1138 #
1139
1140 sub parse_amount {
1141   $main::lxdebug->enter_sub(2);
1142
1143   my ($self, $myconfig, $amount) = @_;
1144
1145   if (   ($myconfig->{numberformat} eq '1.000,00')
1146       || ($myconfig->{numberformat} eq '1000,00')) {
1147     $amount =~ s/\.//g;
1148     $amount =~ s/,/\./;
1149   }
1150
1151   if ($myconfig->{numberformat} eq "1'000.00") {
1152     $amount =~ s/\'//g;
1153   }
1154
1155   $amount =~ s/,//g;
1156
1157   $main::lxdebug->leave_sub(2);
1158
1159   return ($amount * 1);
1160 }
1161
1162 sub round_amount {
1163   $main::lxdebug->enter_sub(2);
1164
1165   my ($self, $amount, $places) = @_;
1166   my $round_amount;
1167
1168   # Rounding like "Kaufmannsrunden"
1169   # Descr. http://de.wikipedia.org/wiki/Rundung
1170   # Inspired by
1171   # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
1172   # Solves Bug: 189
1173   # Udo Spallek
1174   $amount = $amount * (10**($places));
1175   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
1176
1177   $main::lxdebug->leave_sub(2);
1178
1179   return $round_amount;
1180
1181 }
1182
1183 sub parse_template {
1184   $main::lxdebug->enter_sub();
1185
1186   my ($self, $myconfig, $userspath) = @_;
1187   my ($template, $out);
1188
1189   local (*IN, *OUT);
1190
1191   $self->{"cwd"} = getcwd();
1192   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
1193
1194   my $ext_for_format;
1195
1196   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
1197     $template       = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1198     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
1199
1200   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
1201     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
1202     $template         = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1203     $ext_for_format   = 'pdf';
1204
1205   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
1206     $template       = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1207     $ext_for_format = 'html';
1208
1209   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
1210     $template       = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1211     $ext_for_format = 'xml';
1212
1213   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
1214     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1215
1216   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
1217     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1218
1219   } elsif ( defined $self->{'format'}) {
1220     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
1221
1222   } elsif ( $self->{'format'} eq '' ) {
1223     $self->error("No Outputformat given: $self->{'format'}");
1224
1225   } else { #Catch the rest
1226     $self->error("Outputformat not defined: $self->{'format'}");
1227   }
1228
1229   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
1230   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
1231
1232   if (!$self->{employee_id}) {
1233     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
1234   }
1235
1236   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
1237
1238   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
1239
1240   # OUT is used for the media, screen, printer, email
1241   # for postscript we store a copy in a temporary file
1242   my $fileid = time;
1243   my $prepend_userspath;
1244
1245   if (!$self->{tmpfile}) {
1246     $self->{tmpfile}   = "${fileid}.$self->{IN}";
1247     $prepend_userspath = 1;
1248   }
1249
1250   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
1251
1252   $self->{tmpfile} =~ s|.*/||;
1253   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
1254   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
1255
1256   if ($template->uses_temp_file() || $self->{media} eq 'email') {
1257     $out = $self->{OUT};
1258     $self->{OUT} = ">$self->{tmpfile}";
1259   }
1260
1261   if ($self->{OUT}) {
1262     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
1263   } else {
1264     open(OUT, ">-") or $self->error("STDOUT : $!");
1265     $self->header;
1266   }
1267
1268   if (!$template->parse(*OUT)) {
1269     $self->cleanup();
1270     $self->error("$self->{IN} : " . $template->get_error());
1271   }
1272
1273   close(OUT);
1274
1275   if ($template->uses_temp_file() || $self->{media} eq 'email') {
1276
1277     if ($self->{media} eq 'email') {
1278
1279       my $mail = new Mailer;
1280
1281       map { $mail->{$_} = $self->{$_} }
1282         qw(cc bcc subject message version format);
1283       $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
1284       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
1285       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1286       $mail->{fileid} = "$fileid.";
1287       $myconfig->{signature} =~ s/\r//g;
1288
1289       # if we send html or plain text inline
1290       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
1291         $mail->{contenttype} = "text/html";
1292
1293         $mail->{message}       =~ s/\r//g;
1294         $mail->{message}       =~ s/\n/<br>\n/g;
1295         $myconfig->{signature} =~ s/\n/<br>\n/g;
1296         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
1297
1298         open(IN, $self->{tmpfile})
1299           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1300         while (<IN>) {
1301           $mail->{message} .= $_;
1302         }
1303
1304         close(IN);
1305
1306       } else {
1307
1308         if (!$self->{"do_not_attach"}) {
1309           my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
1310           $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
1311           $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
1312                                      "name"     => $attachment_name }];
1313         }
1314
1315         $mail->{message}  =~ s/\r//g;
1316         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
1317
1318       }
1319
1320       my $err = $mail->send();
1321       $self->error($self->cleanup . "$err") if ($err);
1322
1323     } else {
1324
1325       $self->{OUT} = $out;
1326
1327       my $numbytes = (-s $self->{tmpfile});
1328       open(IN, $self->{tmpfile})
1329         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1330
1331       $self->{copies} = 1 unless $self->{media} eq 'printer';
1332
1333       chdir("$self->{cwd}");
1334       #print(STDERR "Kopien $self->{copies}\n");
1335       #print(STDERR "OUT $self->{OUT}\n");
1336       for my $i (1 .. $self->{copies}) {
1337         if ($self->{OUT}) {
1338           open(OUT, $self->{OUT})
1339             or $self->error($self->cleanup . "$self->{OUT} : $!");
1340         } else {
1341           $self->{attachment_filename} = ($self->{attachment_filename})
1342                                        ? $self->{attachment_filename}
1343                                        : $self->generate_attachment_filename();
1344
1345           # launch application
1346           print qq|Content-Type: | . $template->get_mime_type() . qq|
1347 Content-Disposition: attachment; filename="$self->{attachment_filename}"
1348 Content-Length: $numbytes
1349
1350 |;
1351
1352           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
1353
1354         }
1355
1356         while (<IN>) {
1357           print OUT $_;
1358
1359         }
1360
1361         close(OUT);
1362
1363         seek IN, 0, 0;
1364       }
1365
1366       close(IN);
1367     }
1368
1369   }
1370
1371   $self->cleanup;
1372
1373   chdir("$self->{cwd}");
1374   $main::lxdebug->leave_sub();
1375 }
1376
1377 sub get_formname_translation {
1378   $main::lxdebug->enter_sub();
1379   my ($self, $formname) = @_;
1380
1381   $formname ||= $self->{formname};
1382
1383   my %formname_translations = (
1384     bin_list                => $main::locale->text('Bin List'),
1385     credit_note             => $main::locale->text('Credit Note'),
1386     invoice                 => $main::locale->text('Invoice'),
1387     packing_list            => $main::locale->text('Packing List'),
1388     pick_list               => $main::locale->text('Pick List'),
1389     proforma                => $main::locale->text('Proforma Invoice'),
1390     purchase_order          => $main::locale->text('Purchase Order'),
1391     request_quotation       => $main::locale->text('RFQ'),
1392     sales_order             => $main::locale->text('Confirmation'),
1393     sales_quotation         => $main::locale->text('Quotation'),
1394     storno_invoice          => $main::locale->text('Storno Invoice'),
1395     storno_packing_list     => $main::locale->text('Storno Packing List'),
1396     sales_delivery_order    => $main::locale->text('Delivery Order'),
1397     purchase_delivery_order => $main::locale->text('Delivery Order'),
1398     dunning                 => $main::locale->text('Dunning'),
1399   );
1400
1401   $main::lxdebug->leave_sub();
1402   return $formname_translations{$formname}
1403 }
1404
1405 sub get_number_prefix_for_type {
1406   $main::lxdebug->enter_sub();
1407   my ($self) = @_;
1408
1409   my $prefix =
1410       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
1411     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
1412     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
1413     :                                                           'ord';
1414
1415   $main::lxdebug->leave_sub();
1416   return $prefix;
1417 }
1418
1419 sub get_extension_for_format {
1420   $main::lxdebug->enter_sub();
1421   my ($self)    = @_;
1422
1423   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
1424                 : $self->{format} =~ /postscript/i   ? ".ps"
1425                 : $self->{format} =~ /opendocument/i ? ".odt"
1426                 : $self->{format} =~ /html/i         ? ".html"
1427                 :                                      "";
1428
1429   $main::lxdebug->leave_sub();
1430   return $extension;
1431 }
1432
1433 sub generate_attachment_filename {
1434   $main::lxdebug->enter_sub();
1435   my ($self) = @_;
1436
1437   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1438   my $prefix              = $self->get_number_prefix_for_type();
1439
1440   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
1441     $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
1442
1443   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
1444     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
1445
1446   } else {
1447     $attachment_filename = "";
1448   }
1449
1450   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
1451   $attachment_filename =~ s|[\s/\\]+|_|g;
1452
1453   $main::lxdebug->leave_sub();
1454   return $attachment_filename;
1455 }
1456
1457 sub generate_email_subject {
1458   $main::lxdebug->enter_sub();
1459   my ($self) = @_;
1460
1461   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1462   my $prefix  = $self->get_number_prefix_for_type();
1463
1464   if ($subject && $self->{"${prefix}number"}) {
1465     $subject .= " " . $self->{"${prefix}number"}
1466   }
1467
1468   $main::lxdebug->leave_sub();
1469   return $subject;
1470 }
1471
1472 sub cleanup {
1473   $main::lxdebug->enter_sub();
1474
1475   my $self = shift;
1476
1477   chdir("$self->{tmpdir}");
1478
1479   my @err = ();
1480   if (-f "$self->{tmpfile}.err") {
1481     open(FH, "$self->{tmpfile}.err");
1482     @err = <FH>;
1483     close(FH);
1484   }
1485
1486   if ($self->{tmpfile}) {
1487     $self->{tmpfile} =~ s|.*/||g;
1488     # strip extension
1489     $self->{tmpfile} =~ s/\.\w+$//g;
1490     my $tmpfile = $self->{tmpfile};
1491     unlink(<$tmpfile.*>);
1492   }
1493
1494   chdir("$self->{cwd}");
1495
1496   $main::lxdebug->leave_sub();
1497
1498   return "@err";
1499 }
1500
1501 sub datetonum {
1502   $main::lxdebug->enter_sub();
1503
1504   my ($self, $date, $myconfig) = @_;
1505   my ($yy, $mm, $dd);
1506
1507   if ($date && $date =~ /\D/) {
1508
1509     if ($myconfig->{dateformat} =~ /^yy/) {
1510       ($yy, $mm, $dd) = split /\D/, $date;
1511     }
1512     if ($myconfig->{dateformat} =~ /^mm/) {
1513       ($mm, $dd, $yy) = split /\D/, $date;
1514     }
1515     if ($myconfig->{dateformat} =~ /^dd/) {
1516       ($dd, $mm, $yy) = split /\D/, $date;
1517     }
1518
1519     $dd *= 1;
1520     $mm *= 1;
1521     $yy = ($yy < 70) ? $yy + 2000 : $yy;
1522     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1523
1524     $dd = "0$dd" if ($dd < 10);
1525     $mm = "0$mm" if ($mm < 10);
1526
1527     $date = "$yy$mm$dd";
1528   }
1529
1530   $main::lxdebug->leave_sub();
1531
1532   return $date;
1533 }
1534
1535 # Database routines used throughout
1536
1537 sub dbconnect {
1538   $main::lxdebug->enter_sub(2);
1539
1540   my ($self, $myconfig) = @_;
1541
1542   # connect to database
1543   my $dbh =
1544     DBI->connect($myconfig->{dbconnect},
1545                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
1546     or $self->dberror;
1547
1548   # set db options
1549   if ($myconfig->{dboptions}) {
1550     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1551   }
1552
1553   $main::lxdebug->leave_sub(2);
1554
1555   return $dbh;
1556 }
1557
1558 sub dbconnect_noauto {
1559   $main::lxdebug->enter_sub();
1560
1561   my ($self, $myconfig) = @_;
1562
1563   # connect to database
1564   my $dbh =
1565     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
1566                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
1567     or $self->dberror;
1568
1569   # set db options
1570   if ($myconfig->{dboptions}) {
1571     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1572   }
1573
1574   $main::lxdebug->leave_sub();
1575
1576   return $dbh;
1577 }
1578
1579 sub get_standard_dbh {
1580   $main::lxdebug->enter_sub(2);
1581
1582   my ($self, $myconfig) = @_;
1583
1584   if ($standard_dbh && !$standard_dbh->{Active}) {
1585     $main::lxdebug->message(LXDebug::INFO, "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
1586     undef $standard_dbh;
1587   }
1588
1589   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
1590
1591   $main::lxdebug->leave_sub(2);
1592
1593   return $standard_dbh;
1594 }
1595
1596 sub date_closed {
1597   $main::lxdebug->enter_sub();
1598
1599   my ($self, $date, $myconfig) = @_;
1600   my $dbh = $self->dbconnect($myconfig);
1601
1602   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
1603   my $sth = prepare_execute_query($self, $dbh, $query, $date);
1604   my ($closed) = $sth->fetchrow_array;
1605
1606   $main::lxdebug->leave_sub();
1607
1608   return $closed;
1609 }
1610
1611 sub update_balance {
1612   $main::lxdebug->enter_sub();
1613
1614   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1615
1616   # if we have a value, go do it
1617   if ($value != 0) {
1618
1619     # retrieve balance from table
1620     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1621     my $sth = prepare_execute_query($self, $dbh, $query, @values);
1622     my ($balance) = $sth->fetchrow_array;
1623     $sth->finish;
1624
1625     $balance += $value;
1626
1627     # update balance
1628     $query = "UPDATE $table SET $field = $balance WHERE $where";
1629     do_query($self, $dbh, $query, @values);
1630   }
1631   $main::lxdebug->leave_sub();
1632 }
1633
1634 sub update_exchangerate {
1635   $main::lxdebug->enter_sub();
1636
1637   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1638   my ($query);
1639   # some sanity check for currency
1640   if ($curr eq '') {
1641     $main::lxdebug->leave_sub();
1642     return;
1643   }
1644   $query = qq|SELECT curr FROM defaults|;
1645
1646   my ($currency) = selectrow_query($self, $dbh, $query);
1647   my ($defaultcurrency) = split m/:/, $currency;
1648
1649
1650   if ($curr eq $defaultcurrency) {
1651     $main::lxdebug->leave_sub();
1652     return;
1653   }
1654
1655   $query = qq|SELECT e.curr FROM exchangerate e
1656                  WHERE e.curr = ? AND e.transdate = ?
1657                  FOR UPDATE|;
1658   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1659
1660   if ($buy == 0) {
1661     $buy = "";
1662   }
1663   if ($sell == 0) {
1664     $sell = "";
1665   }
1666
1667   $buy = conv_i($buy, "NULL");
1668   $sell = conv_i($sell, "NULL");
1669
1670   my $set;
1671   if ($buy != 0 && $sell != 0) {
1672     $set = "buy = $buy, sell = $sell";
1673   } elsif ($buy != 0) {
1674     $set = "buy = $buy";
1675   } elsif ($sell != 0) {
1676     $set = "sell = $sell";
1677   }
1678
1679   if ($sth->fetchrow_array) {
1680     $query = qq|UPDATE exchangerate
1681                 SET $set
1682                 WHERE curr = ?
1683                 AND transdate = ?|;
1684
1685   } else {
1686     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1687                 VALUES (?, $buy, $sell, ?)|;
1688   }
1689   $sth->finish;
1690   do_query($self, $dbh, $query, $curr, $transdate);
1691
1692   $main::lxdebug->leave_sub();
1693 }
1694
1695 sub save_exchangerate {
1696   $main::lxdebug->enter_sub();
1697
1698   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1699
1700   my $dbh = $self->dbconnect($myconfig);
1701
1702   my ($buy, $sell);
1703
1704   $buy  = $rate if $fld eq 'buy';
1705   $sell = $rate if $fld eq 'sell';
1706
1707
1708   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1709
1710
1711   $dbh->disconnect;
1712
1713   $main::lxdebug->leave_sub();
1714 }
1715
1716 sub get_exchangerate {
1717   $main::lxdebug->enter_sub();
1718
1719   my ($self, $dbh, $curr, $transdate, $fld) = @_;
1720   my ($query);
1721
1722   unless ($transdate) {
1723     $main::lxdebug->leave_sub();
1724     return 1;
1725   }
1726
1727   $query = qq|SELECT curr FROM defaults|;
1728
1729   my ($currency) = selectrow_query($self, $dbh, $query);
1730   my ($defaultcurrency) = split m/:/, $currency;
1731
1732   if ($currency eq $defaultcurrency) {
1733     $main::lxdebug->leave_sub();
1734     return 1;
1735   }
1736
1737   $query = qq|SELECT e.$fld FROM exchangerate e
1738                  WHERE e.curr = ? AND e.transdate = ?|;
1739   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1740
1741
1742
1743   $main::lxdebug->leave_sub();
1744
1745   return $exchangerate;
1746 }
1747
1748 sub check_exchangerate {
1749   $main::lxdebug->enter_sub();
1750
1751   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1752
1753   if ($fld !~/^buy|sell$/) {
1754     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
1755   }
1756
1757   unless ($transdate) {
1758     $main::lxdebug->leave_sub();
1759     return "";
1760   }
1761
1762   my ($defaultcurrency) = $self->get_default_currency($myconfig);
1763
1764   if ($currency eq $defaultcurrency) {
1765     $main::lxdebug->leave_sub();
1766     return 1;
1767   }
1768
1769   my $dbh   = $self->get_standard_dbh($myconfig);
1770   my $query = qq|SELECT e.$fld FROM exchangerate e
1771                  WHERE e.curr = ? AND e.transdate = ?|;
1772
1773   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1774
1775   $main::lxdebug->leave_sub();
1776
1777   return $exchangerate;
1778 }
1779
1780 sub get_default_currency {
1781   $main::lxdebug->enter_sub();
1782
1783   my ($self, $myconfig) = @_;
1784   my $dbh = $self->get_standard_dbh($myconfig);
1785
1786   my $query = qq|SELECT curr FROM defaults|;
1787
1788   my ($curr)            = selectrow_query($self, $dbh, $query);
1789   my ($defaultcurrency) = split m/:/, $curr;
1790
1791   $main::lxdebug->leave_sub();
1792
1793   return $defaultcurrency;
1794 }
1795
1796
1797 sub set_payment_options {
1798   $main::lxdebug->enter_sub();
1799
1800   my ($self, $myconfig, $transdate) = @_;
1801
1802   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
1803
1804   my $dbh = $self->get_standard_dbh($myconfig);
1805
1806   my $query =
1807     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
1808     qq|FROM payment_terms p | .
1809     qq|WHERE p.id = ?|;
1810
1811   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
1812    $self->{payment_terms}) =
1813      selectrow_query($self, $dbh, $query, $self->{payment_id});
1814
1815   if ($transdate eq "") {
1816     if ($self->{invdate}) {
1817       $transdate = $self->{invdate};
1818     } else {
1819       $transdate = $self->{transdate};
1820     }
1821   }
1822
1823   $query =
1824     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
1825     qq|FROM payment_terms|;
1826   ($self->{netto_date}, $self->{skonto_date}) =
1827     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
1828
1829   my ($invtotal, $total);
1830   my (%amounts, %formatted_amounts);
1831
1832   if ($self->{type} =~ /_order$/) {
1833     $amounts{invtotal} = $self->{ordtotal};
1834     $amounts{total}    = $self->{ordtotal};
1835
1836   } elsif ($self->{type} =~ /_quotation$/) {
1837     $amounts{invtotal} = $self->{quototal};
1838     $amounts{total}    = $self->{quototal};
1839
1840   } else {
1841     $amounts{invtotal} = $self->{invtotal};
1842     $amounts{total}    = $self->{total};
1843   }
1844
1845   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
1846
1847   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
1848   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
1849   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
1850
1851   foreach (keys %amounts) {
1852     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
1853     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
1854   }
1855
1856   if ($self->{"language_id"}) {
1857     $query =
1858       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1859       qq|FROM translation_payment_terms t | .
1860       qq|LEFT JOIN language l ON t.language_id = l.id | .
1861       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
1862     my ($description_long, $output_numberformat, $output_dateformat,
1863       $output_longdates) =
1864       selectrow_query($self, $dbh, $query,
1865                       $self->{"language_id"}, $self->{"payment_id"});
1866
1867     $self->{payment_terms} = $description_long if ($description_long);
1868
1869     if ($output_dateformat) {
1870       foreach my $key (qw(netto_date skonto_date)) {
1871         $self->{$key} =
1872           $main::locale->reformat_date($myconfig, $self->{$key},
1873                                        $output_dateformat,
1874                                        $output_longdates);
1875       }
1876     }
1877
1878     if ($output_numberformat &&
1879         ($output_numberformat ne $myconfig->{"numberformat"})) {
1880       my $saved_numberformat = $myconfig->{"numberformat"};
1881       $myconfig->{"numberformat"} = $output_numberformat;
1882       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
1883       $myconfig->{"numberformat"} = $saved_numberformat;
1884     }
1885   }
1886
1887   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1888   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1889   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1890   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1891   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1892   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1893   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1894
1895   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
1896
1897   $main::lxdebug->leave_sub();
1898
1899 }
1900
1901 sub get_template_language {
1902   $main::lxdebug->enter_sub();
1903
1904   my ($self, $myconfig) = @_;
1905
1906   my $template_code = "";
1907
1908   if ($self->{language_id}) {
1909     my $dbh = $self->get_standard_dbh($myconfig);
1910     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1911     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1912   }
1913
1914   $main::lxdebug->leave_sub();
1915
1916   return $template_code;
1917 }
1918
1919 sub get_printer_code {
1920   $main::lxdebug->enter_sub();
1921
1922   my ($self, $myconfig) = @_;
1923
1924   my $template_code = "";
1925
1926   if ($self->{printer_id}) {
1927     my $dbh = $self->get_standard_dbh($myconfig);
1928     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1929     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1930   }
1931
1932   $main::lxdebug->leave_sub();
1933
1934   return $template_code;
1935 }
1936
1937 sub get_shipto {
1938   $main::lxdebug->enter_sub();
1939
1940   my ($self, $myconfig) = @_;
1941
1942   my $template_code = "";
1943
1944   if ($self->{shipto_id}) {
1945     my $dbh = $self->get_standard_dbh($myconfig);
1946     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1947     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1948     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1949   }
1950
1951   $main::lxdebug->leave_sub();
1952 }
1953
1954 sub add_shipto {
1955   $main::lxdebug->enter_sub();
1956
1957   my ($self, $dbh, $id, $module) = @_;
1958
1959   my $shipto;
1960   my @values;
1961
1962   foreach my $item (qw(name department_1 department_2 street zipcode city country
1963                        contact phone fax email)) {
1964     if ($self->{"shipto$item"}) {
1965       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1966     }
1967     push(@values, $self->{"shipto${item}"});
1968   }
1969
1970   if ($shipto) {
1971     if ($self->{shipto_id}) {
1972       my $query = qq|UPDATE shipto set
1973                        shiptoname = ?,
1974                        shiptodepartment_1 = ?,
1975                        shiptodepartment_2 = ?,
1976                        shiptostreet = ?,
1977                        shiptozipcode = ?,
1978                        shiptocity = ?,
1979                        shiptocountry = ?,
1980                        shiptocontact = ?,
1981                        shiptophone = ?,
1982                        shiptofax = ?,
1983                        shiptoemail = ?
1984                      WHERE shipto_id = ?|;
1985       do_query($self, $dbh, $query, @values, $self->{shipto_id});
1986     } else {
1987       my $query = qq|SELECT * FROM shipto
1988                      WHERE shiptoname = ? AND
1989                        shiptodepartment_1 = ? AND
1990                        shiptodepartment_2 = ? AND
1991                        shiptostreet = ? AND
1992                        shiptozipcode = ? AND
1993                        shiptocity = ? AND
1994                        shiptocountry = ? AND
1995                        shiptocontact = ? AND
1996                        shiptophone = ? AND
1997                        shiptofax = ? AND
1998                        shiptoemail = ? AND
1999                        module = ? AND
2000                        trans_id = ?|;
2001       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
2002       if(!$insert_check){
2003         $query =
2004           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
2005                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
2006                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
2007              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
2008         do_query($self, $dbh, $query, $id, @values, $module);
2009       }
2010     }
2011   }
2012
2013   $main::lxdebug->leave_sub();
2014 }
2015
2016 sub get_employee {
2017   $main::lxdebug->enter_sub();
2018
2019   my ($self, $dbh) = @_;
2020
2021   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
2022   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
2023   $self->{"employee_id"} *= 1;
2024
2025   $main::lxdebug->leave_sub();
2026 }
2027
2028 sub get_employee_data {
2029   $main::lxdebug->enter_sub();
2030
2031   my $self     = shift;
2032   my %params   = @_;
2033
2034   Common::check_params(\%params, qw(prefix));
2035   Common::check_params_x(\%params, qw(id));
2036
2037   if (!$params{id}) {
2038     $main::lxdebug->leave_sub();
2039     return;
2040   }
2041
2042   my $myconfig = \%main::myconfig;
2043   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
2044
2045   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
2046
2047   if ($login) {
2048     my $user = User->new($login);
2049     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
2050
2051     $self->{$params{prefix} . '_login'}   = $login;
2052     $self->{$params{prefix} . '_name'}  ||= $login;
2053   }
2054
2055   $main::lxdebug->leave_sub();
2056 }
2057
2058 sub get_duedate {
2059   $main::lxdebug->enter_sub();
2060
2061   my ($self, $myconfig, $reference_date) = @_;
2062
2063   my $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
2064
2065   my $dbh            = $self->get_standard_dbh($myconfig);
2066   my $query          = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
2067   my ($duedate)      = selectrow_query($self, $dbh, $query, $self->{payment_id});
2068
2069   $main::lxdebug->leave_sub();
2070
2071   return $duedate;
2072 }
2073
2074 sub _get_contacts {
2075   $main::lxdebug->enter_sub();
2076
2077   my ($self, $dbh, $id, $key) = @_;
2078
2079   $key = "all_contacts" unless ($key);
2080
2081   if (!$id) {
2082     $self->{$key} = [];
2083     $main::lxdebug->leave_sub();
2084     return;
2085   }
2086
2087   my $query =
2088     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
2089     qq|FROM contacts | .
2090     qq|WHERE cp_cv_id = ? | .
2091     qq|ORDER BY lower(cp_name)|;
2092
2093   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
2094
2095   $main::lxdebug->leave_sub();
2096 }
2097
2098 sub _get_projects {
2099   $main::lxdebug->enter_sub();
2100
2101   my ($self, $dbh, $key) = @_;
2102
2103   my ($all, $old_id, $where, @values);
2104
2105   if (ref($key) eq "HASH") {
2106     my $params = $key;
2107
2108     $key = "ALL_PROJECTS";
2109
2110     foreach my $p (keys(%{$params})) {
2111       if ($p eq "all") {
2112         $all = $params->{$p};
2113       } elsif ($p eq "old_id") {
2114         $old_id = $params->{$p};
2115       } elsif ($p eq "key") {
2116         $key = $params->{$p};
2117       }
2118     }
2119   }
2120
2121   if (!$all) {
2122     $where = "WHERE active ";
2123     if ($old_id) {
2124       if (ref($old_id) eq "ARRAY") {
2125         my @ids = grep({ $_ } @{$old_id});
2126         if (@ids) {
2127           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
2128           push(@values, @ids);
2129         }
2130       } else {
2131         $where .= " OR (id = ?) ";
2132         push(@values, $old_id);
2133       }
2134     }
2135   }
2136
2137   my $query =
2138     qq|SELECT id, projectnumber, description, active | .
2139     qq|FROM project | .
2140     $where .
2141     qq|ORDER BY lower(projectnumber)|;
2142
2143   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
2144
2145   $main::lxdebug->leave_sub();
2146 }
2147
2148 sub _get_shipto {
2149   $main::lxdebug->enter_sub();
2150
2151   my ($self, $dbh, $vc_id, $key) = @_;
2152
2153   $key = "all_shipto" unless ($key);
2154
2155   if ($vc_id) {
2156     # get shipping addresses
2157     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
2158
2159     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
2160
2161   } else {
2162     $self->{$key} = [];
2163   }
2164
2165   $main::lxdebug->leave_sub();
2166 }
2167
2168 sub _get_printers {
2169   $main::lxdebug->enter_sub();
2170
2171   my ($self, $dbh, $key) = @_;
2172
2173   $key = "all_printers" unless ($key);
2174
2175   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
2176
2177   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2178
2179   $main::lxdebug->leave_sub();
2180 }
2181
2182 sub _get_charts {
2183   $main::lxdebug->enter_sub();
2184
2185   my ($self, $dbh, $params) = @_;
2186   my ($key);
2187
2188   $key = $params->{key};
2189   $key = "all_charts" unless ($key);
2190
2191   my $transdate = quote_db_date($params->{transdate});
2192
2193   my $query =
2194     qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
2195     qq|FROM chart c | .
2196     qq|LEFT JOIN taxkeys tk ON | .
2197     qq|(tk.id = (SELECT id FROM taxkeys | .
2198     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
2199     qq|          ORDER BY startdate DESC LIMIT 1)) | .
2200     qq|ORDER BY c.accno|;
2201
2202   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2203
2204   $main::lxdebug->leave_sub();
2205 }
2206
2207 sub _get_taxcharts {
2208   $main::lxdebug->enter_sub();
2209
2210   my ($self, $dbh, $params) = @_;
2211
2212   my $key = "all_taxcharts";
2213   my @where;
2214
2215   if (ref $params eq 'HASH') {
2216     $key = $params->{key} if ($params->{key});
2217     if ($params->{module} eq 'AR') {
2218       push @where, 'taxkey NOT IN (8, 9, 18, 19)';
2219
2220     } elsif ($params->{module} eq 'AP') {
2221       push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
2222     }
2223
2224   } elsif ($params) {
2225     $key = $params;
2226   }
2227
2228   my $where = ' WHERE ' . join(' AND ', map { "($_)" } @where) if (@where);
2229
2230   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
2231
2232   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2233
2234   $main::lxdebug->leave_sub();
2235 }
2236
2237 sub _get_taxzones {
2238   $main::lxdebug->enter_sub();
2239
2240   my ($self, $dbh, $key) = @_;
2241
2242   $key = "all_taxzones" unless ($key);
2243
2244   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
2245
2246   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2247
2248   $main::lxdebug->leave_sub();
2249 }
2250
2251 sub _get_employees {
2252   $main::lxdebug->enter_sub();
2253
2254   my ($self, $dbh, $default_key, $key) = @_;
2255
2256   $key = $default_key unless ($key);
2257   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
2258
2259   $main::lxdebug->leave_sub();
2260 }
2261
2262 sub _get_business_types {
2263   $main::lxdebug->enter_sub();
2264
2265   my ($self, $dbh, $key) = @_;
2266
2267   $key = "all_business_types" unless ($key);
2268   $self->{$key} =
2269     selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
2270
2271   $main::lxdebug->leave_sub();
2272 }
2273
2274 sub _get_languages {
2275   $main::lxdebug->enter_sub();
2276
2277   my ($self, $dbh, $key) = @_;
2278
2279   $key = "all_languages" unless ($key);
2280
2281   my $query = qq|SELECT * FROM language ORDER BY id|;
2282
2283   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2284
2285   $main::lxdebug->leave_sub();
2286 }
2287
2288 sub _get_dunning_configs {
2289   $main::lxdebug->enter_sub();
2290
2291   my ($self, $dbh, $key) = @_;
2292
2293   $key = "all_dunning_configs" unless ($key);
2294
2295   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
2296
2297   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2298
2299   $main::lxdebug->leave_sub();
2300 }
2301
2302 sub _get_currencies {
2303 $main::lxdebug->enter_sub();
2304
2305   my ($self, $dbh, $key) = @_;
2306
2307   $key = "all_currencies" unless ($key);
2308
2309   my $query = qq|SELECT curr AS currency FROM defaults|;
2310
2311   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
2312
2313   $main::lxdebug->leave_sub();
2314 }
2315
2316 sub _get_payments {
2317 $main::lxdebug->enter_sub();
2318
2319   my ($self, $dbh, $key) = @_;
2320
2321   $key = "all_payments" unless ($key);
2322
2323   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
2324
2325   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2326
2327   $main::lxdebug->leave_sub();
2328 }
2329
2330 sub _get_customers {
2331   $main::lxdebug->enter_sub();
2332
2333   my ($self, $dbh, $key, $limit) = @_;
2334
2335   $key = "all_customers" unless ($key);
2336   my $limit_clause = "LIMIT $limit" if $limit;
2337
2338   my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name $limit_clause|;
2339
2340   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2341
2342   $main::lxdebug->leave_sub();
2343 }
2344
2345 sub _get_vendors {
2346   $main::lxdebug->enter_sub();
2347
2348   my ($self, $dbh, $key) = @_;
2349
2350   $key = "all_vendors" unless ($key);
2351
2352   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
2353
2354   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2355
2356   $main::lxdebug->leave_sub();
2357 }
2358
2359 sub _get_departments {
2360   $main::lxdebug->enter_sub();
2361
2362   my ($self, $dbh, $key) = @_;
2363
2364   $key = "all_departments" unless ($key);
2365
2366   my $query = qq|SELECT * FROM department ORDER BY description|;
2367
2368   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2369
2370   $main::lxdebug->leave_sub();
2371 }
2372
2373 sub _get_warehouses {
2374   $main::lxdebug->enter_sub();
2375
2376   my ($self, $dbh, $param) = @_;
2377
2378   my ($key, $bins_key);
2379
2380   if ('' eq ref $param) {
2381     $key = $param;
2382
2383   } else {
2384     $key      = $param->{key};
2385     $bins_key = $param->{bins};
2386   }
2387
2388   my $query = qq|SELECT w.* FROM warehouse w
2389                  WHERE (NOT w.invalid) AND
2390                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
2391                  ORDER BY w.sortkey|;
2392
2393   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2394
2395   if ($bins_key) {
2396     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
2397     my $sth = prepare_query($self, $dbh, $query);
2398
2399     foreach my $warehouse (@{ $self->{$key} }) {
2400       do_statement($self, $sth, $query, $warehouse->{id});
2401       $warehouse->{$bins_key} = [];
2402
2403       while (my $ref = $sth->fetchrow_hashref()) {
2404         push @{ $warehouse->{$bins_key} }, $ref;
2405       }
2406     }
2407     $sth->finish();
2408   }
2409
2410   $main::lxdebug->leave_sub();
2411 }
2412
2413 sub _get_simple {
2414   $main::lxdebug->enter_sub();
2415
2416   my ($self, $dbh, $table, $key, $sortkey) = @_;
2417
2418   my $query  = qq|SELECT * FROM $table|;
2419   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
2420
2421   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2422
2423   $main::lxdebug->leave_sub();
2424 }
2425
2426 #sub _get_groups {
2427 #  $main::lxdebug->enter_sub();
2428 #
2429 #  my ($self, $dbh, $key) = @_;
2430 #
2431 #  $key ||= "all_groups";
2432 #
2433 #  my $groups = $main::auth->read_groups();
2434 #
2435 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2436 #
2437 #  $main::lxdebug->leave_sub();
2438 #}
2439
2440 sub get_lists {
2441   $main::lxdebug->enter_sub();
2442
2443   my $self = shift;
2444   my %params = @_;
2445
2446   my $dbh = $self->get_standard_dbh(\%main::myconfig);
2447   my ($sth, $query, $ref);
2448
2449   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
2450   my $vc_id = $self->{"${vc}_id"};
2451
2452   if ($params{"contacts"}) {
2453     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
2454   }
2455
2456   if ($params{"shipto"}) {
2457     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
2458   }
2459
2460   if ($params{"projects"} || $params{"all_projects"}) {
2461     $self->_get_projects($dbh, $params{"all_projects"} ?
2462                          $params{"all_projects"} : $params{"projects"},
2463                          $params{"all_projects"} ? 1 : 0);
2464   }
2465
2466   if ($params{"printers"}) {
2467     $self->_get_printers($dbh, $params{"printers"});
2468   }
2469
2470   if ($params{"languages"}) {
2471     $self->_get_languages($dbh, $params{"languages"});
2472   }
2473
2474   if ($params{"charts"}) {
2475     $self->_get_charts($dbh, $params{"charts"});
2476   }
2477
2478   if ($params{"taxcharts"}) {
2479     $self->_get_taxcharts($dbh, $params{"taxcharts"});
2480   }
2481
2482   if ($params{"taxzones"}) {
2483     $self->_get_taxzones($dbh, $params{"taxzones"});
2484   }
2485
2486   if ($params{"employees"}) {
2487     $self->_get_employees($dbh, "all_employees", $params{"employees"});
2488   }
2489
2490   if ($params{"salesmen"}) {
2491     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
2492   }
2493
2494   if ($params{"business_types"}) {
2495     $self->_get_business_types($dbh, $params{"business_types"});
2496   }
2497
2498   if ($params{"dunning_configs"}) {
2499     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
2500   }
2501
2502   if($params{"currencies"}) {
2503     $self->_get_currencies($dbh, $params{"currencies"});
2504   }
2505
2506   if($params{"customers"}) {
2507     if (ref $params{"customers"} eq 'HASH') {
2508       $self->_get_customers($dbh, $params{"customers"}{key}, $params{"customers"}{limit});
2509     } else {
2510       $self->_get_customers($dbh, $params{"customers"});
2511     }
2512   }
2513
2514   if($params{"vendors"}) {
2515     if (ref $params{"vendors"} eq 'HASH') {
2516       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
2517     } else {
2518       $self->_get_vendors($dbh, $params{"vendors"});
2519     }
2520   }
2521
2522   if($params{"payments"}) {
2523     $self->_get_payments($dbh, $params{"payments"});
2524   }
2525
2526   if($params{"departments"}) {
2527     $self->_get_departments($dbh, $params{"departments"});
2528   }
2529
2530   if ($params{price_factors}) {
2531     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
2532   }
2533
2534   if ($params{warehouses}) {
2535     $self->_get_warehouses($dbh, $params{warehouses});
2536   }
2537
2538 #  if ($params{groups}) {
2539 #    $self->_get_groups($dbh, $params{groups});
2540 #  }
2541
2542   if ($params{partsgroup}) {
2543     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
2544   }
2545
2546   $main::lxdebug->leave_sub();
2547 }
2548
2549 # this sub gets the id and name from $table
2550 sub get_name {
2551   $main::lxdebug->enter_sub();
2552
2553   my ($self, $myconfig, $table) = @_;
2554
2555   # connect to database
2556   my $dbh = $self->get_standard_dbh($myconfig);
2557
2558   $table = $table eq "customer" ? "customer" : "vendor";
2559   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
2560
2561   my ($query, @values);
2562
2563   if (!$self->{openinvoices}) {
2564     my $where;
2565     if ($self->{customernumber} ne "") {
2566       $where = qq|(vc.customernumber ILIKE ?)|;
2567       push(@values, '%' . $self->{customernumber} . '%');
2568     } else {
2569       $where = qq|(vc.name ILIKE ?)|;
2570       push(@values, '%' . $self->{$table} . '%');
2571     }
2572
2573     $query =
2574       qq~SELECT vc.id, vc.name,
2575            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2576          FROM $table vc
2577          WHERE $where AND (NOT vc.obsolete)
2578          ORDER BY vc.name~;
2579   } else {
2580     $query =
2581       qq~SELECT DISTINCT vc.id, vc.name,
2582            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2583          FROM $arap a
2584          JOIN $table vc ON (a.${table}_id = vc.id)
2585          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
2586          ORDER BY vc.name~;
2587     push(@values, '%' . $self->{$table} . '%');
2588   }
2589
2590   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
2591
2592   $main::lxdebug->leave_sub();
2593
2594   return scalar(@{ $self->{name_list} });
2595 }
2596
2597 # the selection sub is used in the AR, AP, IS, IR and OE module
2598 #
2599 sub all_vc {
2600   $main::lxdebug->enter_sub();
2601
2602   my ($self, $myconfig, $table, $module) = @_;
2603
2604   my $ref;
2605   my $dbh = $self->get_standard_dbh($myconfig);
2606
2607   $table = $table eq "customer" ? "customer" : "vendor";
2608
2609   my $query = qq|SELECT count(*) FROM $table|;
2610   my ($count) = selectrow_query($self, $dbh, $query);
2611
2612   # build selection list
2613   if ($count < $myconfig->{vclimit}) {
2614     $query = qq|SELECT id, name, salesman_id
2615                 FROM $table WHERE NOT obsolete
2616                 ORDER BY name|;
2617     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2618   }
2619
2620   # get self
2621   $self->get_employee($dbh);
2622
2623   # setup sales contacts
2624   $query = qq|SELECT e.id, e.name
2625               FROM employee e
2626               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
2627   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2628
2629   # this is for self
2630   push(@{ $self->{all_employees} },
2631        { id   => $self->{employee_id},
2632          name => $self->{employee} });
2633
2634   # sort the whole thing
2635   @{ $self->{all_employees} } =
2636     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
2637
2638   if ($module eq 'AR') {
2639
2640     # prepare query for departments
2641     $query = qq|SELECT id, description
2642                 FROM department
2643                 WHERE role = 'P'
2644                 ORDER BY description|;
2645
2646   } else {
2647     $query = qq|SELECT id, description
2648                 FROM department
2649                 ORDER BY description|;
2650   }
2651
2652   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2653
2654   # get languages
2655   $query = qq|SELECT id, description
2656               FROM language
2657               ORDER BY id|;
2658
2659   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2660
2661   # get printer
2662   $query = qq|SELECT printer_description, id
2663               FROM printers
2664               ORDER BY printer_description|;
2665
2666   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2667
2668   # get payment terms
2669   $query = qq|SELECT id, description
2670               FROM payment_terms
2671               ORDER BY sortkey|;
2672
2673   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2674
2675   $main::lxdebug->leave_sub();
2676 }
2677
2678 sub language_payment {
2679   $main::lxdebug->enter_sub();
2680
2681   my ($self, $myconfig) = @_;
2682
2683   my $dbh = $self->get_standard_dbh($myconfig);
2684   # get languages
2685   my $query = qq|SELECT id, description
2686                  FROM language
2687                  ORDER BY id|;
2688
2689   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2690
2691   # get printer
2692   $query = qq|SELECT printer_description, id
2693               FROM printers
2694               ORDER BY printer_description|;
2695
2696   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2697
2698   # get payment terms
2699   $query = qq|SELECT id, description
2700               FROM payment_terms
2701               ORDER BY sortkey|;
2702
2703   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2704
2705   # get buchungsgruppen
2706   $query = qq|SELECT id, description
2707               FROM buchungsgruppen|;
2708
2709   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2710
2711   $main::lxdebug->leave_sub();
2712 }
2713
2714 # this is only used for reports
2715 sub all_departments {
2716   $main::lxdebug->enter_sub();
2717
2718   my ($self, $myconfig, $table) = @_;
2719
2720   my $dbh = $self->get_standard_dbh($myconfig);
2721   my $where;
2722
2723   if ($table eq 'customer') {
2724     $where = "WHERE role = 'P' ";
2725   }
2726
2727   my $query = qq|SELECT id, description
2728                  FROM department
2729                  $where
2730                  ORDER BY description|;
2731   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2732
2733   delete($self->{all_departments}) unless (@{ $self->{all_departments} });
2734
2735   $main::lxdebug->leave_sub();
2736 }
2737
2738 sub create_links {
2739   $main::lxdebug->enter_sub();
2740
2741   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2742
2743   my ($fld, $arap);
2744   if ($table eq "customer") {
2745     $fld = "buy";
2746     $arap = "ar";
2747   } else {
2748     $table = "vendor";
2749     $fld = "sell";
2750     $arap = "ap";
2751   }
2752
2753   $self->all_vc($myconfig, $table, $module);
2754
2755   # get last customers or vendors
2756   my ($query, $sth, $ref);
2757
2758   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2759   my %xkeyref = ();
2760
2761   if (!$self->{id}) {
2762
2763     my $transdate = "current_date";
2764     if ($self->{transdate}) {
2765       $transdate = $dbh->quote($self->{transdate});
2766     }
2767
2768     # now get the account numbers
2769     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2770                 FROM chart c, taxkeys tk
2771                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2772                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2773                 ORDER BY c.accno|;
2774
2775     $sth = $dbh->prepare($query);
2776
2777     do_statement($self, $sth, $query, '%' . $module . '%');
2778
2779     $self->{accounts} = "";
2780     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2781
2782       foreach my $key (split(/:/, $ref->{link})) {
2783         if ($key =~ /\Q$module\E/) {
2784
2785           # cross reference for keys
2786           $xkeyref{ $ref->{accno} } = $key;
2787
2788           push @{ $self->{"${module}_links"}{$key} },
2789             { accno       => $ref->{accno},
2790               description => $ref->{description},
2791               taxkey      => $ref->{taxkey_id},
2792               tax_id      => $ref->{tax_id} };
2793
2794           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2795         }
2796       }
2797     }
2798   }
2799
2800   # get taxkeys and description
2801   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2802   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2803
2804   if (($module eq "AP") || ($module eq "AR")) {
2805     # get tax rates and description
2806     $query = qq|SELECT * FROM tax|;
2807     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2808   }
2809
2810   if ($self->{id}) {
2811     $query =
2812       qq|SELECT
2813            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2814            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
2815            a.intnotes, a.department_id, a.amount AS oldinvtotal,
2816            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2817            c.name AS $table,
2818            d.description AS department,
2819            e.name AS employee
2820          FROM $arap a
2821          JOIN $table c ON (a.${table}_id = c.id)
2822          LEFT JOIN employee e ON (e.id = a.employee_id)
2823          LEFT JOIN department d ON (d.id = a.department_id)
2824          WHERE a.id = ?|;
2825     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2826
2827     foreach my $key (keys %$ref) {
2828       $self->{$key} = $ref->{$key};
2829     }
2830
2831     my $transdate = "current_date";
2832     if ($self->{transdate}) {
2833       $transdate = $dbh->quote($self->{transdate});
2834     }
2835
2836     # now get the account numbers
2837     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2838                 FROM chart c
2839                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2840                 WHERE c.link LIKE ?
2841                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2842                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
2843                 ORDER BY c.accno|;
2844
2845     $sth = $dbh->prepare($query);
2846     do_statement($self, $sth, $query, "%$module%");
2847
2848     $self->{accounts} = "";
2849     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2850
2851       foreach my $key (split(/:/, $ref->{link})) {
2852         if ($key =~ /\Q$module\E/) {
2853
2854           # cross reference for keys
2855           $xkeyref{ $ref->{accno} } = $key;
2856
2857           push @{ $self->{"${module}_links"}{$key} },
2858             { accno       => $ref->{accno},
2859               description => $ref->{description},
2860               taxkey      => $ref->{taxkey_id},
2861               tax_id      => $ref->{tax_id} };
2862
2863           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2864         }
2865       }
2866     }
2867
2868
2869     # get amounts from individual entries
2870     $query =
2871       qq|SELECT
2872            c.accno, c.description,
2873            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
2874            p.projectnumber,
2875            t.rate, t.id
2876          FROM acc_trans a
2877          LEFT JOIN chart c ON (c.id = a.chart_id)
2878          LEFT JOIN project p ON (p.id = a.project_id)
2879          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
2880                                     WHERE (tk.taxkey_id=a.taxkey) AND
2881                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
2882                                         THEN tk.chart_id = a.chart_id
2883                                         ELSE 1 = 1
2884                                         END)
2885                                        OR (c.link='%tax%')) AND
2886                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
2887          WHERE a.trans_id = ?
2888          AND a.fx_transaction = '0'
2889          ORDER BY a.acc_trans_id, a.transdate|;
2890     $sth = $dbh->prepare($query);
2891     do_statement($self, $sth, $query, $self->{id});
2892
2893     # get exchangerate for currency
2894     $self->{exchangerate} =
2895       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2896     my $index = 0;
2897
2898     # store amounts in {acc_trans}{$key} for multiple accounts
2899     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
2900       $ref->{exchangerate} =
2901         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2902       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2903         $index++;
2904       }
2905       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2906         $ref->{amount} *= -1;
2907       }
2908       $ref->{index} = $index;
2909
2910       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2911     }
2912
2913     $sth->finish;
2914     $query =
2915       qq|SELECT
2916            d.curr AS currencies, d.closedto, d.revtrans,
2917            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2918            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2919          FROM defaults d|;
2920     $ref = selectfirst_hashref_query($self, $dbh, $query);
2921     map { $self->{$_} = $ref->{$_} } keys %$ref;
2922
2923   } else {
2924
2925     # get date
2926     $query =
2927        qq|SELECT
2928             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
2929             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2930             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2931           FROM defaults d|;
2932     $ref = selectfirst_hashref_query($self, $dbh, $query);
2933     map { $self->{$_} = $ref->{$_} } keys %$ref;
2934
2935     if ($self->{"$self->{vc}_id"}) {
2936
2937       # only setup currency
2938       ($self->{currency}) = split(/:/, $self->{currencies});
2939
2940     } else {
2941
2942       $self->lastname_used($dbh, $myconfig, $table, $module);
2943
2944       # get exchangerate for currency
2945       $self->{exchangerate} =
2946         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2947
2948     }
2949
2950   }
2951
2952   $main::lxdebug->leave_sub();
2953 }
2954
2955 sub lastname_used {
2956   $main::lxdebug->enter_sub();
2957
2958   my ($self, $dbh, $myconfig, $table, $module) = @_;
2959
2960   my ($arap, $where);
2961
2962   $table         = $table eq "customer" ? "customer" : "vendor";
2963   my %column_map = ("a.curr"                  => "currency",
2964                     "a.${table}_id"           => "${table}_id",
2965                     "a.department_id"         => "department_id",
2966                     "d.description"           => "department",
2967                     "ct.name"                 => $table,
2968                     "current_date + ct.terms" => "duedate",
2969     );
2970
2971   if ($self->{type} =~ /delivery_order/) {
2972     $arap  = 'delivery_orders';
2973     delete $column_map{"a.curr"};
2974
2975   } elsif ($self->{type} =~ /_order/) {
2976     $arap  = 'oe';
2977     $where = "quotation = '0'";
2978
2979   } elsif ($self->{type} =~ /_quotation/) {
2980     $arap  = 'oe';
2981     $where = "quotation = '1'";
2982
2983   } elsif ($table eq 'customer') {
2984     $arap  = 'ar';
2985
2986   } else {
2987     $arap  = 'ap';
2988
2989   }
2990
2991   $where           = "($where) AND" if ($where);
2992   my $query        = qq|SELECT MAX(id) FROM $arap
2993                         WHERE $where ${table}_id > 0|;
2994   my ($trans_id)   = selectrow_query($self, $dbh, $query);
2995   $trans_id       *= 1;
2996
2997   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
2998   $query           = qq|SELECT $column_spec
2999                         FROM $arap a
3000                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
3001                         LEFT JOIN department d  ON (a.department_id = d.id)
3002                         WHERE a.id = ?|;
3003   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
3004
3005   map { $self->{$_} = $ref->{$_} } values %column_map;
3006
3007   $main::lxdebug->leave_sub();
3008 }
3009
3010 sub current_date {
3011   $main::lxdebug->enter_sub();
3012
3013   my ($self, $myconfig, $thisdate, $days) = @_;
3014
3015   my $dbh = $self->get_standard_dbh($myconfig);
3016   my $query;
3017
3018   $days *= 1;
3019   if ($thisdate) {
3020     my $dateformat = $myconfig->{dateformat};
3021     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
3022     $thisdate = $dbh->quote($thisdate);
3023     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
3024   } else {
3025     $query = qq|SELECT current_date AS thisdate|;
3026   }
3027
3028   ($thisdate) = selectrow_query($self, $dbh, $query);
3029
3030   $main::lxdebug->leave_sub();
3031
3032   return $thisdate;
3033 }
3034
3035 sub like {
3036   $main::lxdebug->enter_sub();
3037
3038   my ($self, $string) = @_;
3039
3040   if ($string !~ /%/) {
3041     $string = "%$string%";
3042   }
3043
3044   $string =~ s/\'/\'\'/g;
3045
3046   $main::lxdebug->leave_sub();
3047
3048   return $string;
3049 }
3050
3051 sub redo_rows {
3052   $main::lxdebug->enter_sub();
3053
3054   my ($self, $flds, $new, $count, $numrows) = @_;
3055
3056   my @ndx = ();
3057
3058   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
3059
3060   my $i = 0;
3061
3062   # fill rows
3063   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
3064     $i++;
3065     my $j = $item->{ndx} - 1;
3066     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
3067   }
3068
3069   # delete empty rows
3070   for $i ($count + 1 .. $numrows) {
3071     map { delete $self->{"${_}_$i"} } @{$flds};
3072   }
3073
3074   $main::lxdebug->leave_sub();
3075 }
3076
3077 sub update_status {
3078   $main::lxdebug->enter_sub();
3079
3080   my ($self, $myconfig) = @_;
3081
3082   my ($i, $id);
3083
3084   my $dbh = $self->dbconnect_noauto($myconfig);
3085
3086   my $query = qq|DELETE FROM status
3087                  WHERE (formname = ?) AND (trans_id = ?)|;
3088   my $sth = prepare_query($self, $dbh, $query);
3089
3090   if ($self->{formname} =~ /(check|receipt)/) {
3091     for $i (1 .. $self->{rowcount}) {
3092       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
3093     }
3094   } else {
3095     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
3096   }
3097   $sth->finish();
3098
3099   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3100   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3101
3102   my %queued = split / /, $self->{queued};
3103   my @values;
3104
3105   if ($self->{formname} =~ /(check|receipt)/) {
3106
3107     # this is a check or receipt, add one entry for each lineitem
3108     my ($accno) = split /--/, $self->{account};
3109     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
3110                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
3111     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
3112     $sth = prepare_query($self, $dbh, $query);
3113
3114     for $i (1 .. $self->{rowcount}) {
3115       if ($self->{"checked_$i"}) {
3116         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
3117       }
3118     }
3119     $sth->finish();
3120
3121   } else {
3122     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3123                 VALUES (?, ?, ?, ?, ?)|;
3124     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
3125              $queued{$self->{formname}}, $self->{formname});
3126   }
3127
3128   $dbh->commit;
3129   $dbh->disconnect;
3130
3131   $main::lxdebug->leave_sub();
3132 }
3133
3134 sub save_status {
3135   $main::lxdebug->enter_sub();
3136
3137   my ($self, $dbh) = @_;
3138
3139   my ($query, $printed, $emailed);
3140
3141   my $formnames  = $self->{printed};
3142   my $emailforms = $self->{emailed};
3143
3144   $query = qq|DELETE FROM status
3145                  WHERE (formname = ?) AND (trans_id = ?)|;
3146   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
3147
3148   # this only applies to the forms
3149   # checks and receipts are posted when printed or queued
3150
3151   if ($self->{queued}) {
3152     my %queued = split / /, $self->{queued};
3153
3154     foreach my $formname (keys %queued) {
3155       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3156       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3157
3158       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3159                   VALUES (?, ?, ?, ?, ?)|;
3160       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
3161
3162       $formnames  =~ s/\Q$self->{formname}\E//;
3163       $emailforms =~ s/\Q$self->{formname}\E//;
3164
3165     }
3166   }
3167
3168   # save printed, emailed info
3169   $formnames  =~ s/^ +//g;
3170   $emailforms =~ s/^ +//g;
3171
3172   my %status = ();
3173   map { $status{$_}{printed} = 1 } split / +/, $formnames;
3174   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
3175
3176   foreach my $formname (keys %status) {
3177     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
3178     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
3179
3180     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
3181                 VALUES (?, ?, ?, ?)|;
3182     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
3183   }
3184
3185   $main::lxdebug->leave_sub();
3186 }
3187
3188 #--- 4 locale ---#
3189 # $main::locale->text('SAVED')
3190 # $main::locale->text('DELETED')
3191 # $main::locale->text('ADDED')
3192 # $main::locale->text('PAYMENT POSTED')
3193 # $main::locale->text('POSTED')
3194 # $main::locale->text('POSTED AS NEW')
3195 # $main::locale->text('ELSE')
3196 # $main::locale->text('SAVED FOR DUNNING')
3197 # $main::locale->text('DUNNING STARTED')
3198 # $main::locale->text('PRINTED')
3199 # $main::locale->text('MAILED')
3200 # $main::locale->text('SCREENED')
3201 # $main::locale->text('CANCELED')
3202 # $main::locale->text('invoice')
3203 # $main::locale->text('proforma')
3204 # $main::locale->text('sales_order')
3205 # $main::locale->text('packing_list')
3206 # $main::locale->text('pick_list')
3207 # $main::locale->text('purchase_order')
3208 # $main::locale->text('bin_list')
3209 # $main::locale->text('sales_quotation')
3210 # $main::locale->text('request_quotation')
3211
3212 sub save_history {
3213   $main::lxdebug->enter_sub();
3214
3215   my $self = shift();
3216   my $dbh = shift();
3217
3218   if(!exists $self->{employee_id}) {
3219     &get_employee($self, $dbh);
3220   }
3221
3222   my $query =
3223    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
3224    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
3225   my @values = (conv_i($self->{id}), $self->{login},
3226                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
3227   do_query($self, $dbh, $query, @values);
3228
3229   $main::lxdebug->leave_sub();
3230 }
3231
3232 sub get_history {
3233   $main::lxdebug->enter_sub();
3234
3235   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
3236   my ($orderBy, $desc) = split(/\-\-/, $order);
3237   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
3238   my @tempArray;
3239   my $i = 0;
3240   if ($trans_id ne "") {
3241     my $query =
3242       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 | .
3243       qq|FROM history_erp h | .
3244       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
3245       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
3246       $order;
3247
3248     my $sth = $dbh->prepare($query) || $self->dberror($query);
3249
3250     $sth->execute() || $self->dberror("$query");
3251
3252     while(my $hash_ref = $sth->fetchrow_hashref()) {
3253       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
3254       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
3255       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
3256       $tempArray[$i++] = $hash_ref;
3257     }
3258     $main::lxdebug->leave_sub() and return \@tempArray
3259       if ($i > 0 && $tempArray[0] ne "");
3260   }
3261   $main::lxdebug->leave_sub();
3262   return 0;
3263 }
3264
3265 sub update_defaults {
3266   $main::lxdebug->enter_sub();
3267
3268   my ($self, $myconfig, $fld, $provided_dbh) = @_;
3269
3270   my $dbh;
3271   if ($provided_dbh) {
3272     $dbh = $provided_dbh;
3273   } else {
3274     $dbh = $self->dbconnect_noauto($myconfig);
3275   }
3276   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
3277   my $sth   = $dbh->prepare($query);
3278
3279   $sth->execute || $self->dberror($query);
3280   my ($var) = $sth->fetchrow_array;
3281   $sth->finish;
3282
3283   if ($var =~ m/\d+$/) {
3284     my $new_var  = (substr $var, $-[0]) * 1 + 1;
3285     my $len_diff = length($var) - $-[0] - length($new_var);
3286     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3287
3288   } else {
3289     $var = $var . '1';
3290   }
3291
3292   $query = qq|UPDATE defaults SET $fld = ?|;
3293   do_query($self, $dbh, $query, $var);
3294
3295   if (!$provided_dbh) {
3296     $dbh->commit;
3297     $dbh->disconnect;
3298   }
3299
3300   $main::lxdebug->leave_sub();
3301
3302   return $var;
3303 }
3304
3305 =item update_business
3306
3307 PARAMS (not named):
3308  \%config,     - config hashref
3309  $business_id, - business id
3310  $dbh          - optional database handle
3311
3312 handles business (thats customer/vendor types) sequences.
3313
3314 special behaviour for empty strings in customerinitnumber field:
3315 will in this case not increase the value, and return undef.
3316
3317 =cut
3318 sub update_business {
3319   $main::lxdebug->enter_sub();
3320
3321   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
3322
3323   my $dbh;
3324   if ($provided_dbh) {
3325     $dbh = $provided_dbh;
3326   } else {
3327     $dbh = $self->dbconnect_noauto($myconfig);
3328   }
3329   my $query =
3330     qq|SELECT customernumberinit FROM business
3331        WHERE id = ? FOR UPDATE|;
3332   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
3333
3334   return undef unless $var;
3335
3336   if ($var =~ m/\d+$/) {
3337     my $new_var  = (substr $var, $-[0]) * 1 + 1;
3338     my $len_diff = length($var) - $-[0] - length($new_var);
3339     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3340
3341   } else {
3342     $var = $var . '1';
3343   }
3344
3345   $query = qq|UPDATE business
3346               SET customernumberinit = ?
3347               WHERE id = ?|;
3348   do_query($self, $dbh, $query, $var, $business_id);
3349
3350   if (!$provided_dbh) {
3351     $dbh->commit;
3352     $dbh->disconnect;
3353   }
3354
3355   $main::lxdebug->leave_sub();
3356
3357   return $var;
3358 }
3359
3360 sub get_partsgroup {
3361   $main::lxdebug->enter_sub();
3362
3363   my ($self, $myconfig, $p) = @_;
3364   my $target = $p->{target} || 'all_partsgroup';
3365
3366   my $dbh = $self->get_standard_dbh($myconfig);
3367
3368   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
3369                  FROM partsgroup pg
3370                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
3371   my @values;
3372
3373   if ($p->{searchitems} eq 'part') {
3374     $query .= qq|WHERE p.inventory_accno_id > 0|;
3375   }
3376   if ($p->{searchitems} eq 'service') {
3377     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
3378   }
3379   if ($p->{searchitems} eq 'assembly') {
3380     $query .= qq|WHERE p.assembly = '1'|;
3381   }
3382   if ($p->{searchitems} eq 'labor') {
3383     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
3384   }
3385
3386   $query .= qq|ORDER BY partsgroup|;
3387
3388   if ($p->{all}) {
3389     $query = qq|SELECT id, partsgroup FROM partsgroup
3390                 ORDER BY partsgroup|;
3391   }
3392
3393   if ($p->{language_code}) {
3394     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
3395                   t.description AS translation
3396                 FROM partsgroup pg
3397                 JOIN parts p ON (p.partsgroup_id = pg.id)
3398                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
3399                 ORDER BY translation|;
3400     @values = ($p->{language_code});
3401   }
3402
3403   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
3404
3405   $main::lxdebug->leave_sub();
3406 }
3407
3408 sub get_pricegroup {
3409   $main::lxdebug->enter_sub();
3410
3411   my ($self, $myconfig, $p) = @_;
3412
3413   my $dbh = $self->get_standard_dbh($myconfig);
3414
3415   my $query = qq|SELECT p.id, p.pricegroup
3416                  FROM pricegroup p|;
3417
3418   $query .= qq| ORDER BY pricegroup|;
3419
3420   if ($p->{all}) {
3421     $query = qq|SELECT id, pricegroup FROM pricegroup
3422                 ORDER BY pricegroup|;
3423   }
3424
3425   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
3426
3427   $main::lxdebug->leave_sub();
3428 }
3429
3430 sub all_years {
3431 # usage $form->all_years($myconfig, [$dbh])
3432 # return list of all years where bookings found
3433 # (@all_years)
3434
3435   $main::lxdebug->enter_sub();
3436
3437   my ($self, $myconfig, $dbh) = @_;
3438
3439   $dbh ||= $self->get_standard_dbh($myconfig);
3440
3441   # get years
3442   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
3443                    (SELECT MAX(transdate) FROM acc_trans)|;
3444   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
3445
3446   if ($myconfig->{dateformat} =~ /^yy/) {
3447     ($startdate) = split /\W/, $startdate;
3448     ($enddate) = split /\W/, $enddate;
3449   } else {
3450     (@_) = split /\W/, $startdate;
3451     $startdate = $_[2];
3452     (@_) = split /\W/, $enddate;
3453     $enddate = $_[2];
3454   }
3455
3456   my @all_years;
3457   $startdate = substr($startdate,0,4);
3458   $enddate = substr($enddate,0,4);
3459
3460   while ($enddate >= $startdate) {
3461     push @all_years, $enddate--;
3462   }
3463
3464   return @all_years;
3465
3466   $main::lxdebug->leave_sub();
3467 }
3468
3469 sub backup_vars {
3470   $main::lxdebug->enter_sub();
3471   my $self = shift;
3472   my @vars = @_;
3473
3474   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
3475
3476   $main::lxdebug->leave_sub();
3477 }
3478
3479 sub restore_vars {
3480   $main::lxdebug->enter_sub();
3481
3482   my $self = shift;
3483   my @vars = @_;
3484
3485   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
3486
3487   $main::lxdebug->leave_sub();
3488 }
3489
3490 1;