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