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