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