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