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