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