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