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