Überbleibsel von der Unterstützung für html2ps entfernt.
[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 SL::Auth;
45 use SL::Auth::DB;
46 use SL::Auth::LDAP;
47 use SL::AM;
48 use SL::Common;
49 use SL::DBUtils;
50 use SL::Mailer;
51 use SL::Menu;
52 use SL::Template;
53 use SL::User;
54 use Template;
55 use List::Util qw(first max min sum);
56
57 my $standard_dbh;
58
59 sub DESTROY {
60   if ($standard_dbh) {
61     $standard_dbh->disconnect();
62     undef $standard_dbh;
63   }
64 }
65
66 sub _store_value {
67   $main::lxdebug->enter_sub(2);
68
69   my $self  = shift;
70   my $key   = shift;
71   my $value = shift;
72
73   my $curr  = $self;
74
75   while ($key =~ /\[\+?\]\.|\./) {
76     substr($key, 0, $+[0]) = '';
77
78     if ($& eq '.') {
79       $curr->{$`} ||= { };
80       $curr         = $curr->{$`};
81
82     } else {
83       $curr->{$`} ||= [ ];
84       if (!scalar @{ $curr->{$`} } || $& eq '[+].') {
85         push @{ $curr->{$`} }, { };
86       }
87
88       $curr = $curr->{$`}->[-1];
89     }
90   }
91
92   $curr->{$key} = $value;
93
94   $main::lxdebug->leave_sub(2);
95
96   return \$curr->{$key};
97 }
98
99 sub _input_to_hash {
100   $main::lxdebug->enter_sub(2);
101
102   my $self  = shift;
103   my $input = shift;
104
105   my @pairs = split(/&/, $input);
106
107   foreach (@pairs) {
108     my ($key, $value) = split(/=/, $_, 2);
109     $self->_store_value($self->unescape($key), $self->unescape($value));
110   }
111
112   $main::lxdebug->leave_sub(2);
113 }
114
115 sub _request_to_hash {
116   $main::lxdebug->enter_sub(2);
117
118   my $self  = shift;
119   my $input = shift;
120
121   if (!$ENV{'CONTENT_TYPE'}
122       || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
123
124     $self->_input_to_hash($input);
125
126     $main::lxdebug->leave_sub(2);
127     return;
128   }
129
130   my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
131
132   my $boundary = '--' . $1;
133
134   foreach my $line (split m/\n/, $input) {
135     last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
136
137     if (($line eq $boundary) || ($line eq "$boundary\r")) {
138       ${ $previous } =~ s|\r?\n$|| if $previous;
139
140       undef $previous;
141       undef $filename;
142
143       $headers_done   = 0;
144       $content_type   = "text/plain";
145       $boundary_found = 1;
146       $need_cr        = 0;
147
148       next;
149     }
150
151     next unless $boundary_found;
152
153     if (!$headers_done) {
154       $line =~ s/[\r\n]*$//;
155
156       if (!$line) {
157         $headers_done = 1;
158         next;
159       }
160
161       if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
162         if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
163           $filename = $1;
164           substr $line, $-[0], $+[0] - $-[0], "";
165         }
166
167         if ($line =~ m|name\s*=\s*"(.*?)"|i) {
168           $name = $1;
169           substr $line, $-[0], $+[0] - $-[0], "";
170         }
171
172         $previous         = $self->_store_value($name, '');
173         $self->{FILENAME} = $filename if ($filename);
174
175         next;
176       }
177
178       if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
179         $content_type = $1;
180       }
181
182       next;
183     }
184
185     next unless $previous;
186
187     ${ $previous } .= "${line}\n";
188   }
189
190   ${ $previous } =~ s|\r?\n$|| if $previous;
191
192   $main::lxdebug->leave_sub(2);
193 }
194
195 sub new {
196   $main::lxdebug->enter_sub();
197
198   my $type = shift;
199
200   my $self = {};
201
202   if ($LXDebug::watch_form) {
203     require SL::Watchdog;
204     tie %{ $self }, 'SL::Watchdog';
205   }
206
207   read(STDIN, $_, $ENV{CONTENT_LENGTH});
208
209   if ($ENV{QUERY_STRING}) {
210     $_ = $ENV{QUERY_STRING};
211   }
212
213   if ($ARGV[0]) {
214     $_ = $ARGV[0];
215   }
216
217   bless $self, $type;
218
219   $self->_request_to_hash($_);
220
221   $self->{action}  =  lc $self->{action};
222   $self->{action}  =~ s/( |-|,|\#)/_/g;
223
224   $self->{version} =  "2.4.3";
225
226   $main::lxdebug->leave_sub();
227
228   return $self;
229 }
230
231 sub _flatten_variables_rec {
232   $main::lxdebug->enter_sub(2);
233
234   my $self   = shift;
235   my $curr   = shift;
236   my $prefix = shift;
237   my $key    = shift;
238
239   my @result;
240
241   if ('' eq ref $curr->{$key}) {
242     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
243
244   } elsif ('HASH' eq ref $curr->{$key}) {
245     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
246       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
247     }
248
249   } else {
250     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
251       my $first_array_entry = 1;
252
253       foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
254         push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
255         $first_array_entry = 0;
256       }
257     }
258   }
259
260   $main::lxdebug->leave_sub(2);
261
262   return @result;
263 }
264
265 sub flatten_variables {
266   $main::lxdebug->enter_sub(2);
267
268   my $self = shift;
269   my @keys = @_;
270
271   my @variables;
272
273   foreach (@keys) {
274     push @variables, $self->_flatten_variables_rec($self, '', $_);
275   }
276
277   $main::lxdebug->leave_sub(2);
278
279   return @variables;
280 }
281
282 sub flatten_standard_variables {
283   $main::lxdebug->enter_sub(2);
284
285   my $self      = shift;
286   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
287
288   my @variables;
289
290   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
291     push @variables, $self->_flatten_variables_rec($self, '', $_);
292   }
293
294   $main::lxdebug->leave_sub(2);
295
296   return @variables;
297 }
298
299 sub debug {
300   $main::lxdebug->enter_sub();
301
302   my ($self) = @_;
303
304   print "\n";
305
306   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
307
308   $main::lxdebug->leave_sub();
309 }
310
311 sub dumper {
312   $main::lxdebug->enter_sub(2);
313
314   my $self          = shift;
315   my $password      = $self->{password};
316
317   $self->{password} = 'X' x 8;
318
319   local $Data::Dumper::Sortkeys = 1;
320   my $output                    = Dumper($self);
321
322   $self->{password} = $password;
323
324   $main::lxdebug->leave_sub(2);
325
326   return $output;
327 }
328
329 sub escape {
330   $main::lxdebug->enter_sub(2);
331
332   my ($self, $str) = @_;
333
334   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
335
336   $main::lxdebug->leave_sub(2);
337
338   return $str;
339 }
340
341 sub unescape {
342   $main::lxdebug->enter_sub(2);
343
344   my ($self, $str) = @_;
345
346   $str =~ tr/+/ /;
347   $str =~ s/\\$//;
348
349   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
350
351   $main::lxdebug->leave_sub(2);
352
353   return $str;
354 }
355
356 sub quote {
357   my ($self, $str) = @_;
358
359   if ($str && !ref($str)) {
360     $str =~ s/\"/&quot;/g;
361   }
362
363   $str;
364
365 }
366
367 sub unquote {
368   my ($self, $str) = @_;
369
370   if ($str && !ref($str)) {
371     $str =~ s/&quot;/\"/g;
372   }
373
374   $str;
375
376 }
377
378 sub hide_form {
379   my $self = shift;
380
381   if (@_) {
382     map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
383   } else {
384     for (sort keys %$self) {
385       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
386       print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
387     }
388   }
389
390 }
391
392 sub error {
393   $main::lxdebug->enter_sub();
394
395   $main::lxdebug->show_backtrace();
396
397   my ($self, $msg) = @_;
398   if ($ENV{HTTP_USER_AGENT}) {
399     $msg =~ s/\n/<br>/g;
400     $self->show_generic_error($msg);
401
402   } else {
403
404     die "Error: $msg\n";
405   }
406
407   $main::lxdebug->leave_sub();
408 }
409
410 sub info {
411   $main::lxdebug->enter_sub();
412
413   my ($self, $msg) = @_;
414
415   if ($ENV{HTTP_USER_AGENT}) {
416     $msg =~ s/\n/<br>/g;
417
418     if (!$self->{header}) {
419       $self->header;
420       print qq|
421       <body>|;
422     }
423
424     print qq|
425
426     <p><b>$msg</b>
427     |;
428
429   } else {
430
431     if ($self->{info_function}) {
432       &{ $self->{info_function} }($msg);
433     } else {
434       print "$msg\n";
435     }
436   }
437
438   $main::lxdebug->leave_sub();
439 }
440
441 # calculates the number of rows in a textarea based on the content and column number
442 # can be capped with maxrows
443 sub numtextrows {
444   $main::lxdebug->enter_sub();
445   my ($self, $str, $cols, $maxrows, $minrows) = @_;
446
447   $minrows ||= 1;
448
449   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
450   $maxrows ||= $rows;
451
452   $main::lxdebug->leave_sub();
453
454   return max(min($rows, $maxrows), $minrows);
455 }
456
457 sub dberror {
458   $main::lxdebug->enter_sub();
459
460   my ($self, $msg) = @_;
461
462   $self->error("$msg\n" . $DBI::errstr);
463
464   $main::lxdebug->leave_sub();
465 }
466
467 sub isblank {
468   $main::lxdebug->enter_sub();
469
470   my ($self, $name, $msg) = @_;
471
472   my $curr = $self;
473   foreach my $part (split /\./, $name) {
474     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
475       $self->error($msg);
476     }
477     $curr = $curr->{$part};
478   }
479
480   $main::lxdebug->leave_sub();
481 }
482
483 sub create_http_response {
484   $main::lxdebug->enter_sub();
485
486   my $self     = shift;
487   my %params   = @_;
488
489   my $cgi      = $main::cgi;
490   $cgi       ||= CGI->new('');
491
492   my $base_path;
493
494   if ($ENV{HTTP_X_FORWARDED_FOR}) {
495     $base_path =  $ENV{HTTP_REFERER};
496     $base_path =~ s|^.*?://.*?/|/|;
497   } else {
498     $base_path =  $ENV{REQUEST_URI};
499   }
500   $base_path =~ s|[^/]+$||;
501   $base_path =~ s|/$||;
502
503   my $session_cookie;
504   if (defined $main::auth) {
505     my $session_cookie_value   = $main::auth->get_session_id();
506     $session_cookie_value    ||= 'NO_SESSION';
507
508     $session_cookie = $cgi->cookie('-name'  => $main::auth->get_session_cookie_name(),
509                                    '-value' => $session_cookie_value,
510                                    '-path'  => $base_path);
511   }
512
513   my %cgi_params = ('-type' => $params{content_type});
514   $cgi_params{'-charset'} = $params{charset} if ($parmas{charset});
515
516   my $output = $cgi->header('-cookie' => $session_cookie,
517                             %cgi_params);
518
519   $main::lxdebug->leave_sub();
520
521   return $output;
522 }
523
524
525 sub header {
526   $main::lxdebug->enter_sub();
527
528   my ($self, $extra_code) = @_;
529
530   if ($self->{header}) {
531     $main::lxdebug->leave_sub();
532     return;
533   }
534
535   my ($stylesheet, $favicon);
536
537   if ($ENV{HTTP_USER_AGENT}) {
538     my $doctype;
539
540     if ($ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/) {
541       # Only set the DOCTYPE for Internet Explorer. Other browsers have problems displaying the menu otherwise.
542       $doctype = qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n|;
543     }
544
545     my $stylesheets = "$self->{stylesheet} $self->{stylesheets}";
546
547     $stylesheets =~ s|^\s*||;
548     $stylesheets =~ s|\s*$||;
549     foreach my $file (split m/\s+/, $stylesheets) {
550       $file =~ s|.*/||;
551       next if (! -f "css/$file");
552
553       $stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|;
554     }
555
556     $self->{favicon}    = "favicon.ico" unless $self->{favicon};
557
558     if ($self->{favicon} && (-f "$self->{favicon}")) {
559       $favicon =
560         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
561   |;
562     }
563
564     my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
565
566     if ($self->{landscape}) {
567       $pagelayout = qq|<style type="text/css">
568                         \@page { size:landscape; }
569                         </style>|;
570     }
571
572     my $fokus = qq|  document.$self->{fokus}.focus();| if ($self->{"fokus"});
573
574     #Set Calendar
575     my $jsscript = "";
576     if ($self->{jsscript} == 1) {
577
578       $jsscript = qq|
579         <script type="text/javascript" src="js/common.js"></script>
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 get_number_prefix_for_type {
1250   my ($self) = @_;
1251
1252   my $prefix =
1253       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
1254     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
1255     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
1256     :                                                           'ord';
1257
1258   return $prefix;
1259 }
1260
1261 sub get_extension_for_format {
1262   my ($self)    = @_;
1263
1264   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
1265                 : $self->{format} =~ /postscript/i   ? ".ps"
1266                 : $self->{format} =~ /opendocument/i ? ".odt"
1267                 : $self->{format} =~ /html/i         ? ".html"
1268                 :                                      "";
1269
1270   return $extension;
1271 }
1272
1273 sub generate_attachment_filename {
1274   my ($self) = @_;
1275
1276   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1277   my $prefix              = $self->get_number_prefix_for_type();
1278
1279   if ($attachment_filename && $self->{"${prefix}number"}) {
1280     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
1281     $attachment_filename  =  $main::locale->quote_special_chars('filenames', $attachment_filename);
1282     $attachment_filename  =~ s|[\s/\\]+|_|g;
1283   } else {
1284     $attachment_filename = "";
1285   }
1286
1287   return $attachment_filename;
1288 }
1289
1290 sub generate_email_subject {
1291   my ($self) = @_;
1292
1293   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1294   my $prefix  = $self->get_number_prefix_for_type();
1295
1296   if ($subject && $self->{"${prefix}number"}) {
1297     $subject .= " " . $self->{"${prefix}number"}
1298   }
1299
1300   return $subject;
1301 }
1302
1303 sub cleanup {
1304   $main::lxdebug->enter_sub();
1305
1306   my $self = shift;
1307
1308   chdir("$self->{tmpdir}");
1309
1310   my @err = ();
1311   if (-f "$self->{tmpfile}.err") {
1312     open(FH, "$self->{tmpfile}.err");
1313     @err = <FH>;
1314     close(FH);
1315   }
1316
1317   if ($self->{tmpfile}) {
1318     $self->{tmpfile} =~ s|.*/||g;
1319     # strip extension
1320     $self->{tmpfile} =~ s/\.\w+$//g;
1321     my $tmpfile = $self->{tmpfile};
1322     unlink(<$tmpfile.*>);
1323   }
1324
1325   chdir("$self->{cwd}");
1326
1327   $main::lxdebug->leave_sub();
1328
1329   return "@err";
1330 }
1331
1332 sub datetonum {
1333   $main::lxdebug->enter_sub();
1334
1335   my ($self, $date, $myconfig) = @_;
1336
1337   if ($date && $date =~ /\D/) {
1338
1339     if ($myconfig->{dateformat} =~ /^yy/) {
1340       ($yy, $mm, $dd) = split /\D/, $date;
1341     }
1342     if ($myconfig->{dateformat} =~ /^mm/) {
1343       ($mm, $dd, $yy) = split /\D/, $date;
1344     }
1345     if ($myconfig->{dateformat} =~ /^dd/) {
1346       ($dd, $mm, $yy) = split /\D/, $date;
1347     }
1348
1349     $dd *= 1;
1350     $mm *= 1;
1351     $yy = ($yy < 70) ? $yy + 2000 : $yy;
1352     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1353
1354     $dd = "0$dd" if ($dd < 10);
1355     $mm = "0$mm" if ($mm < 10);
1356
1357     $date = "$yy$mm$dd";
1358   }
1359
1360   $main::lxdebug->leave_sub();
1361
1362   return $date;
1363 }
1364
1365 # Database routines used throughout
1366
1367 sub dbconnect {
1368   $main::lxdebug->enter_sub(2);
1369
1370   my ($self, $myconfig) = @_;
1371
1372   # connect to database
1373   my $dbh =
1374     DBI->connect($myconfig->{dbconnect},
1375                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
1376     or $self->dberror;
1377
1378   # set db options
1379   if ($myconfig->{dboptions}) {
1380     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1381   }
1382
1383   $main::lxdebug->leave_sub(2);
1384
1385   return $dbh;
1386 }
1387
1388 sub dbconnect_noauto {
1389   $main::lxdebug->enter_sub();
1390
1391   my ($self, $myconfig) = @_;
1392   
1393   # connect to database
1394   $dbh =
1395     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
1396                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
1397     or $self->dberror;
1398
1399   # set db options
1400   if ($myconfig->{dboptions}) {
1401     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1402   }
1403
1404   $main::lxdebug->leave_sub();
1405
1406   return $dbh;
1407 }
1408
1409 sub get_standard_dbh {
1410   $main::lxdebug->enter_sub(2);
1411
1412   my ($self, $myconfig) = @_;
1413
1414   if ($standard_dbh && !$standard_dbh->{Active}) {
1415     $main::lxdebug->message(LXDebug::INFO, "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
1416     undef $standard_dbh;
1417   }
1418
1419   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
1420
1421   $main::lxdebug->leave_sub(2);
1422
1423   return $standard_dbh;
1424 }
1425
1426 sub date_closed {
1427   $main::lxdebug->enter_sub();
1428
1429   my ($self, $date, $myconfig) = @_;
1430   my $dbh = $self->dbconnect($myconfig);
1431
1432   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
1433   my $sth = prepare_execute_query($self, $dbh, $query, $date);
1434   my ($closed) = $sth->fetchrow_array;
1435
1436   $main::lxdebug->leave_sub();
1437
1438   return $closed;
1439 }
1440
1441 sub update_balance {
1442   $main::lxdebug->enter_sub();
1443
1444   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1445
1446   # if we have a value, go do it
1447   if ($value != 0) {
1448
1449     # retrieve balance from table
1450     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1451     my $sth = prepare_execute_query($self, $dbh, $query, @values);
1452     my ($balance) = $sth->fetchrow_array;
1453     $sth->finish;
1454
1455     $balance += $value;
1456
1457     # update balance
1458     $query = "UPDATE $table SET $field = $balance WHERE $where";
1459     do_query($self, $dbh, $query, @values);
1460   }
1461   $main::lxdebug->leave_sub();
1462 }
1463
1464 sub update_exchangerate {
1465   $main::lxdebug->enter_sub();
1466
1467   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1468   my ($query);
1469   # some sanity check for currency
1470   if ($curr eq '') {
1471     $main::lxdebug->leave_sub();
1472     return;
1473   }  
1474   $query = qq|SELECT curr FROM defaults|;
1475
1476   my ($currency) = selectrow_query($self, $dbh, $query);
1477   my ($defaultcurrency) = split m/:/, $currency;
1478
1479
1480   if ($curr eq $defaultcurrency) {
1481     $main::lxdebug->leave_sub();
1482     return;
1483   }
1484
1485   $query = qq|SELECT e.curr FROM exchangerate e
1486                  WHERE e.curr = ? AND e.transdate = ?
1487                  FOR UPDATE|;
1488   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1489
1490   if ($buy == 0) {
1491     $buy = "";
1492   }
1493   if ($sell == 0) {
1494     $sell = "";
1495   }
1496
1497   $buy = conv_i($buy, "NULL");
1498   $sell = conv_i($sell, "NULL");
1499
1500   my $set;
1501   if ($buy != 0 && $sell != 0) {
1502     $set = "buy = $buy, sell = $sell";
1503   } elsif ($buy != 0) {
1504     $set = "buy = $buy";
1505   } elsif ($sell != 0) {
1506     $set = "sell = $sell";
1507   }
1508
1509   if ($sth->fetchrow_array) {
1510     $query = qq|UPDATE exchangerate
1511                 SET $set
1512                 WHERE curr = ?
1513                 AND transdate = ?|;
1514     
1515   } else {
1516     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1517                 VALUES (?, $buy, $sell, ?)|;
1518   }
1519   $sth->finish;
1520   do_query($self, $dbh, $query, $curr, $transdate);
1521
1522   $main::lxdebug->leave_sub();
1523 }
1524
1525 sub save_exchangerate {
1526   $main::lxdebug->enter_sub();
1527
1528   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1529
1530   my $dbh = $self->dbconnect($myconfig);
1531
1532   my ($buy, $sell);
1533
1534   $buy  = $rate if $fld eq 'buy';
1535   $sell = $rate if $fld eq 'sell';
1536
1537
1538   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1539
1540
1541   $dbh->disconnect;
1542
1543   $main::lxdebug->leave_sub();
1544 }
1545
1546 sub get_exchangerate {
1547   $main::lxdebug->enter_sub();
1548
1549   my ($self, $dbh, $curr, $transdate, $fld) = @_;
1550   my ($query);
1551
1552   unless ($transdate) {
1553     $main::lxdebug->leave_sub();
1554     return 1;
1555   }
1556
1557   $query = qq|SELECT curr FROM defaults|;
1558
1559   my ($currency) = selectrow_query($self, $dbh, $query);
1560   my ($defaultcurrency) = split m/:/, $currency;
1561
1562   if ($currency eq $defaultcurrency) {
1563     $main::lxdebug->leave_sub();
1564     return 1;
1565   }
1566
1567   $query = qq|SELECT e.$fld FROM exchangerate e
1568                  WHERE e.curr = ? AND e.transdate = ?|;
1569   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1570
1571
1572
1573   $main::lxdebug->leave_sub();
1574
1575   return $exchangerate;
1576 }
1577
1578 sub check_exchangerate {
1579   $main::lxdebug->enter_sub();
1580
1581   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1582
1583   unless ($transdate) {
1584     $main::lxdebug->leave_sub();
1585     return "";
1586   }
1587
1588   my ($defaultcurrency) = $self->get_default_currency($myconfig);
1589
1590   if ($currency eq $defaultcurrency) {
1591     $main::lxdebug->leave_sub();
1592     return 1;
1593   }
1594
1595   my $dbh   = $self->get_standard_dbh($myconfig);
1596   my $query = qq|SELECT e.$fld FROM exchangerate e
1597                  WHERE e.curr = ? AND e.transdate = ?|;
1598
1599   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1600
1601   $main::lxdebug->leave_sub();
1602
1603   return $exchangerate;
1604 }
1605
1606 sub get_default_currency {
1607   $main::lxdebug->enter_sub();
1608
1609   my ($self, $myconfig) = @_;
1610   my $dbh = $self->get_standard_dbh($myconfig);
1611
1612   my $query = qq|SELECT curr FROM defaults|;
1613
1614   my ($curr)            = selectrow_query($self, $dbh, $query);
1615   my ($defaultcurrency) = split m/:/, $curr;
1616
1617   $main::lxdebug->leave_sub();
1618
1619   return $defaultcurrency;
1620 }
1621
1622
1623 sub set_payment_options {
1624   $main::lxdebug->enter_sub();
1625
1626   my ($self, $myconfig, $transdate) = @_;
1627
1628   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
1629
1630   my $dbh = $self->get_standard_dbh($myconfig);
1631
1632   my $query =
1633     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
1634     qq|FROM payment_terms p | .
1635     qq|WHERE p.id = ?|;
1636
1637   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
1638    $self->{payment_terms}) =
1639      selectrow_query($self, $dbh, $query, $self->{payment_id});
1640
1641   if ($transdate eq "") {
1642     if ($self->{invdate}) {
1643       $transdate = $self->{invdate};
1644     } else {
1645       $transdate = $self->{transdate};
1646     }
1647   }
1648
1649   $query =
1650     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
1651     qq|FROM payment_terms|;
1652   ($self->{netto_date}, $self->{skonto_date}) =
1653     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
1654
1655   my ($invtotal, $total);
1656   my (%amounts, %formatted_amounts);
1657
1658   if ($self->{type} =~ /_order$/) {
1659     $amounts{invtotal} = $self->{ordtotal};
1660     $amounts{total}    = $self->{ordtotal};
1661
1662   } elsif ($self->{type} =~ /_quotation$/) {
1663     $amounts{invtotal} = $self->{quototal};
1664     $amounts{total}    = $self->{quototal};
1665
1666   } else {
1667     $amounts{invtotal} = $self->{invtotal};
1668     $amounts{total}    = $self->{total};
1669   }
1670
1671   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
1672
1673   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
1674   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
1675   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
1676
1677   foreach (keys %amounts) {
1678     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
1679     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
1680   }
1681
1682   if ($self->{"language_id"}) {
1683     $query =
1684       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1685       qq|FROM translation_payment_terms t | .
1686       qq|LEFT JOIN language l ON t.language_id = l.id | .
1687       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
1688     my ($description_long, $output_numberformat, $output_dateformat,
1689       $output_longdates) =
1690       selectrow_query($self, $dbh, $query,
1691                       $self->{"language_id"}, $self->{"payment_id"});
1692
1693     $self->{payment_terms} = $description_long if ($description_long);
1694
1695     if ($output_dateformat) {
1696       foreach my $key (qw(netto_date skonto_date)) {
1697         $self->{$key} =
1698           $main::locale->reformat_date($myconfig, $self->{$key},
1699                                        $output_dateformat,
1700                                        $output_longdates);
1701       }
1702     }
1703
1704     if ($output_numberformat &&
1705         ($output_numberformat ne $myconfig->{"numberformat"})) {
1706       my $saved_numberformat = $myconfig->{"numberformat"};
1707       $myconfig->{"numberformat"} = $output_numberformat;
1708       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
1709       $myconfig->{"numberformat"} = $saved_numberformat;
1710     }
1711   }
1712
1713   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1714   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1715   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1716   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1717   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1718   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1719   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1720
1721   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
1722
1723   $main::lxdebug->leave_sub();
1724
1725 }
1726
1727 sub get_template_language {
1728   $main::lxdebug->enter_sub();
1729
1730   my ($self, $myconfig) = @_;
1731
1732   my $template_code = "";
1733
1734   if ($self->{language_id}) {
1735     my $dbh = $self->get_standard_dbh($myconfig);
1736     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1737     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1738   }
1739
1740   $main::lxdebug->leave_sub();
1741
1742   return $template_code;
1743 }
1744
1745 sub get_printer_code {
1746   $main::lxdebug->enter_sub();
1747
1748   my ($self, $myconfig) = @_;
1749
1750   my $template_code = "";
1751
1752   if ($self->{printer_id}) {
1753     my $dbh = $self->get_standard_dbh($myconfig);
1754     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1755     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1756   }
1757
1758   $main::lxdebug->leave_sub();
1759
1760   return $template_code;
1761 }
1762
1763 sub get_shipto {
1764   $main::lxdebug->enter_sub();
1765
1766   my ($self, $myconfig) = @_;
1767
1768   my $template_code = "";
1769
1770   if ($self->{shipto_id}) {
1771     my $dbh = $self->get_standard_dbh($myconfig);
1772     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1773     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1774     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1775   }
1776
1777   $main::lxdebug->leave_sub();
1778 }
1779
1780 sub add_shipto {
1781   $main::lxdebug->enter_sub();
1782
1783   my ($self, $dbh, $id, $module) = @_;
1784
1785   my $shipto;
1786   my @values;
1787
1788   foreach my $item (qw(name department_1 department_2 street zipcode city country
1789                        contact phone fax email)) {
1790     if ($self->{"shipto$item"}) {
1791       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1792     }
1793     push(@values, $self->{"shipto${item}"});
1794   }
1795
1796   if ($shipto) {
1797     if ($self->{shipto_id}) {
1798       my $query = qq|UPDATE shipto set
1799                        shiptoname = ?,
1800                        shiptodepartment_1 = ?,
1801                        shiptodepartment_2 = ?,
1802                        shiptostreet = ?,
1803                        shiptozipcode = ?,
1804                        shiptocity = ?,
1805                        shiptocountry = ?,
1806                        shiptocontact = ?,
1807                        shiptophone = ?,
1808                        shiptofax = ?,
1809                        shiptoemail = ?
1810                      WHERE shipto_id = ?|;
1811       do_query($self, $dbh, $query, @values, $self->{shipto_id});
1812     } else {
1813       my $query = qq|SELECT * FROM shipto
1814                      WHERE shiptoname = ? AND
1815                        shiptodepartment_1 = ? AND
1816                        shiptodepartment_2 = ? AND
1817                        shiptostreet = ? AND
1818                        shiptozipcode = ? AND
1819                        shiptocity = ? AND
1820                        shiptocountry = ? AND
1821                        shiptocontact = ? AND
1822                        shiptophone = ? AND
1823                        shiptofax = ? AND
1824                        shiptoemail = ? AND
1825                        module = ? AND 
1826                        trans_id = ?|;
1827       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
1828       if(!$insert_check){
1829         $query =
1830           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
1831                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
1832                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
1833              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1834         do_query($self, $dbh, $query, $id, @values, $module);
1835       }
1836     }
1837   }
1838
1839   $main::lxdebug->leave_sub();
1840 }
1841
1842 sub get_employee {
1843   $main::lxdebug->enter_sub();
1844
1845   my ($self, $dbh) = @_;
1846
1847   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
1848   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
1849   $self->{"employee_id"} *= 1;
1850
1851   $main::lxdebug->leave_sub();
1852 }
1853
1854 sub get_salesman {
1855   $main::lxdebug->enter_sub();
1856
1857   my ($self, $myconfig, $salesman_id) = @_;
1858
1859   $main::lxdebug->leave_sub() and return unless $salesman_id;
1860
1861   my $dbh = $self->get_standard_dbh($myconfig);
1862
1863   my ($login) =
1864     selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|,
1865                     $salesman_id);
1866
1867   if ($login) {
1868     my $user = new User($main::memberfile, $login);
1869     map({ $self->{"salesman_$_"} = $user->{$_}; }
1870         qw(address businessnumber co_ustid company duns email fax name
1871            taxnumber tel));
1872     $self->{salesman_login} = $login;
1873
1874     $self->{salesman_name} = $login
1875       if ($self->{salesman_name} eq "");
1876   }
1877
1878   $main::lxdebug->leave_sub();
1879 }
1880
1881 sub get_duedate {
1882   $main::lxdebug->enter_sub();
1883
1884   my ($self, $myconfig) = @_;
1885
1886   my $dbh = $self->get_standard_dbh($myconfig);
1887   my $query = qq|SELECT current_date + terms_netto FROM payment_terms WHERE id = ?|;
1888   ($self->{duedate}) = selectrow_query($self, $dbh, $query, $self->{payment_id});
1889
1890   $main::lxdebug->leave_sub();
1891 }
1892
1893 sub _get_contacts {
1894   $main::lxdebug->enter_sub();
1895
1896   my ($self, $dbh, $id, $key) = @_;
1897
1898   $key = "all_contacts" unless ($key);
1899
1900   my $query =
1901     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
1902     qq|FROM contacts | .
1903     qq|WHERE cp_cv_id = ? | .
1904     qq|ORDER BY lower(cp_name)|;
1905
1906   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
1907
1908   $main::lxdebug->leave_sub();
1909 }
1910
1911 sub _get_projects {
1912   $main::lxdebug->enter_sub();
1913
1914   my ($self, $dbh, $key) = @_;
1915
1916   my ($all, $old_id, $where, @values);
1917
1918   if (ref($key) eq "HASH") {
1919     my $params = $key;
1920
1921     $key = "ALL_PROJECTS";
1922
1923     foreach my $p (keys(%{$params})) {
1924       if ($p eq "all") {
1925         $all = $params->{$p};
1926       } elsif ($p eq "old_id") {
1927         $old_id = $params->{$p};
1928       } elsif ($p eq "key") {
1929         $key = $params->{$p};
1930       }
1931     }
1932   }
1933
1934   if (!$all) {
1935     $where = "WHERE active ";
1936     if ($old_id) {
1937       if (ref($old_id) eq "ARRAY") {
1938         my @ids = grep({ $_ } @{$old_id});
1939         if (@ids) {
1940           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
1941           push(@values, @ids);
1942         }
1943       } else {
1944         $where .= " OR (id = ?) ";
1945         push(@values, $old_id);
1946       }
1947     }
1948   }
1949
1950   my $query =
1951     qq|SELECT id, projectnumber, description, active | .
1952     qq|FROM project | .
1953     $where .
1954     qq|ORDER BY lower(projectnumber)|;
1955
1956   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
1957
1958   $main::lxdebug->leave_sub();
1959 }
1960
1961 sub _get_shipto {
1962   $main::lxdebug->enter_sub();
1963
1964   my ($self, $dbh, $vc_id, $key) = @_;
1965
1966   $key = "all_shipto" unless ($key);
1967
1968   # get shipping addresses
1969   my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
1970
1971   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
1972
1973   $main::lxdebug->leave_sub();
1974 }
1975
1976 sub _get_printers {
1977   $main::lxdebug->enter_sub();
1978
1979   my ($self, $dbh, $key) = @_;
1980
1981   $key = "all_printers" unless ($key);
1982
1983   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
1984
1985   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1986
1987   $main::lxdebug->leave_sub();
1988 }
1989
1990 sub _get_charts {
1991   $main::lxdebug->enter_sub();
1992
1993   my ($self, $dbh, $params) = @_;
1994
1995   $key = $params->{key};
1996   $key = "all_charts" unless ($key);
1997
1998   my $transdate = quote_db_date($params->{transdate});
1999
2000   my $query =
2001     qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
2002     qq|FROM chart c | .
2003     qq|LEFT JOIN taxkeys tk ON | .
2004     qq|(tk.id = (SELECT id FROM taxkeys | .
2005     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
2006     qq|          ORDER BY startdate DESC LIMIT 1)) | .
2007     qq|ORDER BY c.accno|;
2008
2009   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2010
2011   $main::lxdebug->leave_sub();
2012 }
2013
2014 sub _get_taxcharts {
2015   $main::lxdebug->enter_sub();
2016
2017   my ($self, $dbh, $key) = @_;
2018
2019   $key = "all_taxcharts" unless ($key);
2020
2021   my $query = qq|SELECT * FROM tax ORDER BY taxkey|;
2022
2023   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2024
2025   $main::lxdebug->leave_sub();
2026 }
2027
2028 sub _get_taxzones {
2029   $main::lxdebug->enter_sub();
2030
2031   my ($self, $dbh, $key) = @_;
2032
2033   $key = "all_taxzones" unless ($key);
2034
2035   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
2036
2037   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2038
2039   $main::lxdebug->leave_sub();
2040 }
2041
2042 sub _get_employees {
2043   $main::lxdebug->enter_sub();
2044
2045   my ($self, $dbh, $default_key, $key) = @_;
2046
2047   $key = $default_key unless ($key);
2048   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
2049
2050   $main::lxdebug->leave_sub();
2051 }
2052
2053 sub _get_business_types {
2054   $main::lxdebug->enter_sub();
2055
2056   my ($self, $dbh, $key) = @_;
2057
2058   $key = "all_business_types" unless ($key);
2059   $self->{$key} =
2060     selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
2061
2062   $main::lxdebug->leave_sub();
2063 }
2064
2065 sub _get_languages {
2066   $main::lxdebug->enter_sub();
2067
2068   my ($self, $dbh, $key) = @_;
2069
2070   $key = "all_languages" unless ($key);
2071
2072   my $query = qq|SELECT * FROM language ORDER BY id|;
2073
2074   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2075
2076   $main::lxdebug->leave_sub();
2077 }
2078
2079 sub _get_dunning_configs {
2080   $main::lxdebug->enter_sub();
2081
2082   my ($self, $dbh, $key) = @_;
2083
2084   $key = "all_dunning_configs" unless ($key);
2085
2086   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
2087
2088   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2089
2090   $main::lxdebug->leave_sub();
2091 }
2092
2093 sub _get_currencies {
2094 $main::lxdebug->enter_sub();
2095
2096   my ($self, $dbh, $key) = @_;
2097
2098   $key = "all_currencies" unless ($key);
2099
2100   my $query = qq|SELECT curr AS currency FROM defaults|;
2101  
2102   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
2103
2104   $main::lxdebug->leave_sub();
2105 }
2106
2107 sub _get_payments {
2108 $main::lxdebug->enter_sub();
2109
2110   my ($self, $dbh, $key) = @_;
2111
2112   $key = "all_payments" unless ($key);
2113
2114   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
2115  
2116   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2117
2118   $main::lxdebug->leave_sub();
2119 }
2120
2121 sub _get_customers {
2122   $main::lxdebug->enter_sub();
2123
2124   my ($self, $dbh, $key, $limit) = @_;
2125
2126   $key = "all_customers" unless ($key);
2127   $limit_clause = "LIMIT $limit" if $limit;
2128
2129   my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name $limit_clause|;
2130
2131   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2132
2133   $main::lxdebug->leave_sub();
2134 }
2135
2136 sub _get_vendors {
2137   $main::lxdebug->enter_sub();
2138
2139   my ($self, $dbh, $key) = @_;
2140
2141   $key = "all_vendors" unless ($key);
2142
2143   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
2144
2145   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2146
2147   $main::lxdebug->leave_sub();
2148 }
2149
2150 sub _get_departments {
2151   $main::lxdebug->enter_sub();
2152
2153   my ($self, $dbh, $key) = @_;
2154
2155   $key = "all_departments" unless ($key);
2156
2157   my $query = qq|SELECT * FROM department ORDER BY description|;
2158
2159   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2160
2161   $main::lxdebug->leave_sub();
2162 }
2163
2164 sub _get_warehouses {
2165   $main::lxdebug->enter_sub();
2166
2167   my ($self, $dbh, $param) = @_;
2168
2169   my ($key, $bins_key);
2170
2171   if ('' eq ref $param) {
2172     $key = $param;
2173
2174   } else {
2175     $key      = $param->{key};
2176     $bins_key = $param->{bins};
2177   }
2178
2179   my $query = qq|SELECT w.* FROM warehouse w
2180                  WHERE (NOT w.invalid) AND
2181                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
2182                  ORDER BY w.sortkey|;
2183
2184   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2185
2186   if ($bins_key) {
2187     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
2188     my $sth = prepare_query($self, $dbh, $query);
2189
2190     foreach my $warehouse (@{ $self->{$key} }) {
2191       do_statement($self, $sth, $query, $warehouse->{id});
2192       $warehouse->{$bins_key} = [];
2193
2194       while (my $ref = $sth->fetchrow_hashref()) {
2195         push @{ $warehouse->{$bins_key} }, $ref;
2196       }
2197     }
2198     $sth->finish();
2199   }
2200
2201   $main::lxdebug->leave_sub();
2202 }
2203
2204 sub _get_simple {
2205   $main::lxdebug->enter_sub();
2206
2207   my ($self, $dbh, $table, $key, $sortkey) = @_;
2208
2209   my $query  = qq|SELECT * FROM $table|;
2210   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
2211
2212   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2213
2214   $main::lxdebug->leave_sub();
2215 }
2216
2217 sub _get_groups {
2218   $main::lxdebug->enter_sub();
2219
2220   my ($self, $dbh, $key) = @_;
2221
2222   $key ||= "all_groups";
2223
2224   my $groups = $main::auth->read_groups();
2225
2226   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2227
2228   $main::lxdebug->leave_sub();
2229 }
2230
2231 sub get_lists {
2232   $main::lxdebug->enter_sub();
2233
2234   my $self = shift;
2235   my %params = @_;
2236
2237   my $dbh = $self->get_standard_dbh(\%main::myconfig);
2238   my ($sth, $query, $ref);
2239
2240   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
2241   my $vc_id = $self->{"${vc}_id"};
2242
2243   if ($params{"contacts"}) {
2244     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
2245   }
2246
2247   if ($params{"shipto"}) {
2248     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
2249   }
2250
2251   if ($params{"projects"} || $params{"all_projects"}) {
2252     $self->_get_projects($dbh, $params{"all_projects"} ?
2253                          $params{"all_projects"} : $params{"projects"},
2254                          $params{"all_projects"} ? 1 : 0);
2255   }
2256
2257   if ($params{"printers"}) {
2258     $self->_get_printers($dbh, $params{"printers"});
2259   }
2260
2261   if ($params{"languages"}) {
2262     $self->_get_languages($dbh, $params{"languages"});
2263   }
2264
2265   if ($params{"charts"}) {
2266     $self->_get_charts($dbh, $params{"charts"});
2267   }
2268
2269   if ($params{"taxcharts"}) {
2270     $self->_get_taxcharts($dbh, $params{"taxcharts"});
2271   }
2272
2273   if ($params{"taxzones"}) {
2274     $self->_get_taxzones($dbh, $params{"taxzones"});
2275   }
2276
2277   if ($params{"employees"}) {
2278     $self->_get_employees($dbh, "all_employees", $params{"employees"});
2279   }
2280   
2281   if ($params{"salesmen"}) {
2282     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
2283   }
2284
2285   if ($params{"business_types"}) {
2286     $self->_get_business_types($dbh, $params{"business_types"});
2287   }
2288
2289   if ($params{"dunning_configs"}) {
2290     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
2291   }
2292   
2293   if($params{"currencies"}) {
2294     $self->_get_currencies($dbh, $params{"currencies"});
2295   }
2296   
2297   if($params{"customers"}) {
2298     if (ref $params{"customers"} eq 'HASH') {
2299       $self->_get_customers($dbh, $params{"customers"}{key}, $params{"customers"}{limit});
2300     } else {
2301       $self->_get_customers($dbh, $params{"customers"});
2302     }
2303   }
2304   
2305   if($params{"vendors"}) {
2306     if (ref $params{"vendors"} eq 'HASH') {
2307       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
2308     } else {
2309       $self->_get_vendors($dbh, $params{"vendors"});
2310     }
2311   }
2312   
2313   if($params{"payments"}) {
2314     $self->_get_payments($dbh, $params{"payments"});
2315   }
2316
2317   if($params{"departments"}) {
2318     $self->_get_departments($dbh, $params{"departments"});
2319   }
2320
2321   if ($params{price_factors}) {
2322     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
2323   }
2324
2325   if ($params{warehouses}) {
2326     $self->_get_warehouses($dbh, $params{warehouses});
2327   }
2328
2329   if ($params{groups}) {
2330     $self->_get_groups($dbh, $params{groups});
2331   }
2332   if ($params{partsgroup}) {
2333     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
2334   }
2335
2336   $main::lxdebug->leave_sub();
2337 }
2338
2339 # this sub gets the id and name from $table
2340 sub get_name {
2341   $main::lxdebug->enter_sub();
2342
2343   my ($self, $myconfig, $table) = @_;
2344
2345   # connect to database
2346   my $dbh = $self->get_standard_dbh($myconfig);
2347
2348   $table = $table eq "customer" ? "customer" : "vendor";
2349   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
2350
2351   my ($query, @values);
2352
2353   if (!$self->{openinvoices}) {
2354     my $where;
2355     if ($self->{customernumber} ne "") {
2356       $where = qq|(vc.customernumber ILIKE ?)|;
2357       push(@values, '%' . $self->{customernumber} . '%');
2358     } else {
2359       $where = qq|(vc.name ILIKE ?)|;
2360       push(@values, '%' . $self->{$table} . '%');
2361     }
2362
2363     $query =
2364       qq~SELECT vc.id, vc.name,
2365            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2366          FROM $table vc
2367          WHERE $where AND (NOT vc.obsolete)
2368          ORDER BY vc.name~;
2369   } else {
2370     $query =
2371       qq~SELECT DISTINCT vc.id, vc.name,
2372            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2373          FROM $arap a
2374          JOIN $table vc ON (a.${table}_id = vc.id)
2375          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
2376          ORDER BY vc.name~;
2377     push(@values, '%' . $self->{$table} . '%');
2378   }
2379
2380   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
2381
2382   $main::lxdebug->leave_sub();
2383
2384   return scalar(@{ $self->{name_list} });
2385 }
2386
2387 # the selection sub is used in the AR, AP, IS, IR and OE module
2388 #
2389 sub all_vc {
2390   $main::lxdebug->enter_sub();
2391
2392   my ($self, $myconfig, $table, $module) = @_;
2393
2394   my $ref;
2395   my $dbh = $self->get_standard_dbh($myconfig);
2396
2397   $table = $table eq "customer" ? "customer" : "vendor";
2398
2399   my $query = qq|SELECT count(*) FROM $table|;
2400   my ($count) = selectrow_query($self, $dbh, $query);
2401
2402   # build selection list
2403   if ($count < $myconfig->{vclimit}) {
2404     $query = qq|SELECT id, name, salesman_id
2405                 FROM $table WHERE NOT obsolete
2406                 ORDER BY name|;
2407     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2408   }
2409
2410   # get self
2411   $self->get_employee($dbh);
2412
2413   # setup sales contacts
2414   $query = qq|SELECT e.id, e.name
2415               FROM employee e
2416               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
2417   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2418
2419   # this is for self
2420   push(@{ $self->{all_employees} },
2421        { id   => $self->{employee_id},
2422          name => $self->{employee} });
2423
2424   # sort the whole thing
2425   @{ $self->{all_employees} } =
2426     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
2427
2428   if ($module eq 'AR') {
2429
2430     # prepare query for departments
2431     $query = qq|SELECT id, description
2432                 FROM department
2433                 WHERE role = 'P'
2434                 ORDER BY description|;
2435
2436   } else {
2437     $query = qq|SELECT id, description
2438                 FROM department
2439                 ORDER BY description|;
2440   }
2441
2442   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2443
2444   # get languages
2445   $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   $main::lxdebug->leave_sub();
2466 }
2467
2468 sub language_payment {
2469   $main::lxdebug->enter_sub();
2470
2471   my ($self, $myconfig) = @_;
2472
2473   my $dbh = $self->get_standard_dbh($myconfig);
2474   # get languages
2475   my $query = qq|SELECT id, description
2476                  FROM language
2477                  ORDER BY id|;
2478
2479   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2480
2481   # get printer
2482   $query = qq|SELECT printer_description, id
2483               FROM printers
2484               ORDER BY printer_description|;
2485
2486   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2487
2488   # get payment terms
2489   $query = qq|SELECT id, description
2490               FROM payment_terms
2491               ORDER BY sortkey|;
2492
2493   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2494
2495   # get buchungsgruppen
2496   $query = qq|SELECT id, description
2497               FROM buchungsgruppen|;
2498
2499   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2500
2501   $main::lxdebug->leave_sub();
2502 }
2503
2504 # this is only used for reports
2505 sub all_departments {
2506   $main::lxdebug->enter_sub();
2507
2508   my ($self, $myconfig, $table) = @_;
2509
2510   my $dbh = $self->get_standard_dbh($myconfig);
2511   my $where;
2512
2513   if ($table eq 'customer') {
2514     $where = "WHERE role = 'P' ";
2515   }
2516
2517   my $query = qq|SELECT id, description
2518                  FROM department
2519                  $where
2520                  ORDER BY description|;
2521   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2522
2523   delete($self->{all_departments}) unless (@{ $self->{all_departments} });
2524
2525   $main::lxdebug->leave_sub();
2526 }
2527
2528 sub create_links {
2529   $main::lxdebug->enter_sub();
2530
2531   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2532
2533   my ($fld, $arap);
2534   if ($table eq "customer") {
2535     $fld = "buy";
2536     $arap = "ar";
2537   } else {
2538     $table = "vendor";
2539     $fld = "sell";
2540     $arap = "ap";
2541   }
2542
2543   $self->all_vc($myconfig, $table, $module);
2544
2545   # get last customers or vendors
2546   my ($query, $sth, $ref);
2547
2548   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2549   my %xkeyref = ();
2550
2551   if (!$self->{id}) {
2552
2553     my $transdate = "current_date";
2554     if ($self->{transdate}) {
2555       $transdate = $dbh->quote($self->{transdate});
2556     }
2557
2558     # now get the account numbers
2559     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2560                 FROM chart c, taxkeys tk
2561                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2562                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2563                 ORDER BY c.accno|;
2564
2565     $sth = $dbh->prepare($query);
2566
2567     do_statement($self, $sth, $query, '%' . $module . '%');
2568
2569     $self->{accounts} = "";
2570     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2571
2572       foreach my $key (split(/:/, $ref->{link})) {
2573         if ($key =~ /\Q$module\E/) {
2574
2575           # cross reference for keys
2576           $xkeyref{ $ref->{accno} } = $key;
2577
2578           push @{ $self->{"${module}_links"}{$key} },
2579             { accno       => $ref->{accno},
2580               description => $ref->{description},
2581               taxkey      => $ref->{taxkey_id},
2582               tax_id      => $ref->{tax_id} };
2583
2584           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2585         }
2586       }
2587     }
2588   }
2589
2590   # get taxkeys and description
2591   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2592   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2593
2594   if (($module eq "AP") || ($module eq "AR")) {
2595     # get tax rates and description
2596     $query = qq|SELECT * FROM tax|;
2597     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2598   }
2599
2600   if ($self->{id}) {
2601     $query =
2602       qq|SELECT
2603            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2604            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
2605            a.intnotes, a.department_id, a.amount AS oldinvtotal,
2606            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2607            c.name AS $table,
2608            d.description AS department,
2609            e.name AS employee
2610          FROM $arap a
2611          JOIN $table c ON (a.${table}_id = c.id)
2612          LEFT JOIN employee e ON (e.id = a.employee_id)
2613          LEFT JOIN department d ON (d.id = a.department_id)
2614          WHERE a.id = ?|;
2615     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2616
2617     foreach $key (keys %$ref) {
2618       $self->{$key} = $ref->{$key};
2619     }
2620
2621     my $transdate = "current_date";
2622     if ($self->{transdate}) {
2623       $transdate = $dbh->quote($self->{transdate});
2624     }
2625
2626     # now get the account numbers
2627     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2628                 FROM chart c
2629                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2630                 WHERE c.link LIKE ?
2631                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2632                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
2633                 ORDER BY c.accno|;
2634
2635     $sth = $dbh->prepare($query);
2636     do_statement($self, $sth, $query, "%$module%");
2637
2638     $self->{accounts} = "";
2639     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2640
2641       foreach my $key (split(/:/, $ref->{link})) {
2642         if ($key =~ /\Q$module\E/) {
2643
2644           # cross reference for keys
2645           $xkeyref{ $ref->{accno} } = $key;
2646
2647           push @{ $self->{"${module}_links"}{$key} },
2648             { accno       => $ref->{accno},
2649               description => $ref->{description},
2650               taxkey      => $ref->{taxkey_id},
2651               tax_id      => $ref->{tax_id} };
2652
2653           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2654         }
2655       }
2656     }
2657
2658
2659     # get amounts from individual entries
2660     $query =
2661       qq|SELECT
2662            c.accno, c.description,
2663            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
2664            p.projectnumber,
2665            t.rate, t.id
2666          FROM acc_trans a
2667          LEFT JOIN chart c ON (c.id = a.chart_id)
2668          LEFT JOIN project p ON (p.id = a.project_id)
2669          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
2670                                     WHERE (tk.taxkey_id=a.taxkey) AND
2671                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
2672                                         THEN tk.chart_id = a.chart_id
2673                                         ELSE 1 = 1
2674                                         END)
2675                                        OR (c.link='%tax%')) AND
2676                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
2677          WHERE a.trans_id = ?
2678          AND a.fx_transaction = '0'
2679          ORDER BY a.oid, a.transdate|;
2680     $sth = $dbh->prepare($query);
2681     do_statement($self, $sth, $query, $self->{id});
2682
2683     # get exchangerate for currency
2684     $self->{exchangerate} =
2685       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2686     my $index = 0;
2687
2688     # store amounts in {acc_trans}{$key} for multiple accounts
2689     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2690       $ref->{exchangerate} =
2691         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2692       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2693         $index++;
2694       }
2695       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2696         $ref->{amount} *= -1;
2697       }
2698       $ref->{index} = $index;
2699
2700       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2701     }
2702
2703     $sth->finish;
2704     $query =
2705       qq|SELECT
2706            d.curr AS currencies, d.closedto, d.revtrans,
2707            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2708            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2709          FROM defaults d|;
2710     $ref = selectfirst_hashref_query($self, $dbh, $query);
2711     map { $self->{$_} = $ref->{$_} } keys %$ref;
2712
2713   } else {
2714
2715     # get date
2716     $query =
2717        qq|SELECT
2718             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
2719             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2720             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2721           FROM defaults d|;
2722     $ref = selectfirst_hashref_query($self, $dbh, $query);
2723     map { $self->{$_} = $ref->{$_} } keys %$ref;
2724
2725     if ($self->{"$self->{vc}_id"}) {
2726
2727       # only setup currency
2728       ($self->{currency}) = split(/:/, $self->{currencies});
2729
2730     } else {
2731
2732       $self->lastname_used($dbh, $myconfig, $table, $module);
2733
2734       # get exchangerate for currency
2735       $self->{exchangerate} =
2736         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2737
2738     }
2739
2740   }
2741
2742   $main::lxdebug->leave_sub();
2743 }
2744
2745 sub lastname_used {
2746   $main::lxdebug->enter_sub();
2747
2748   my ($self, $dbh, $myconfig, $table, $module) = @_;
2749
2750   my ($arap, $where);
2751
2752   $table         = $table eq "customer" ? "customer" : "vendor";
2753   my %column_map = ("a.curr"                  => "currency",
2754                     "a.${table}_id"           => "${table}_id",
2755                     "a.department_id"         => "department_id",
2756                     "d.description"           => "department",
2757                     "ct.name"                 => $table,
2758                     "current_date + ct.terms" => "duedate",
2759     );
2760
2761   if ($self->{type} =~ /delivery_order/) {
2762     $arap  = 'delivery_orders';
2763     delete $column_map{"a.curr"};
2764
2765   } elsif ($self->{type} =~ /_order/) {
2766     $arap  = 'oe';
2767     $where = "quotation = '0'";
2768
2769   } elsif ($self->{type} =~ /_quotation/) {
2770     $arap  = 'oe';
2771     $where = "quotation = '1'";
2772
2773   } elsif ($table eq 'customer') {
2774     $arap  = 'ar';
2775
2776   } else {
2777     $arap  = 'ap';
2778
2779   }
2780
2781   $where           = "($where) AND" if ($where);
2782   my $query        = qq|SELECT MAX(id) FROM $arap
2783                         WHERE $where ${table}_id > 0|;
2784   my ($trans_id)   = selectrow_query($self, $dbh, $query);
2785   $trans_id       *= 1;
2786
2787   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
2788   $query           = qq|SELECT $column_spec
2789                         FROM $arap a
2790                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
2791                         LEFT JOIN department d  ON (a.department_id = d.id)
2792                         WHERE a.id = ?|;
2793   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
2794
2795   map { $self->{$_} = $ref->{$_} } values %column_map;
2796
2797   $main::lxdebug->leave_sub();
2798 }
2799
2800 sub current_date {
2801   $main::lxdebug->enter_sub();
2802
2803   my ($self, $myconfig, $thisdate, $days) = @_;
2804
2805   my $dbh = $self->get_standard_dbh($myconfig);
2806   my $query;
2807
2808   $days *= 1;
2809   if ($thisdate) {
2810     my $dateformat = $myconfig->{dateformat};
2811     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2812     $thisdate = $dbh->quote($thisdate);
2813     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
2814   } else {
2815     $query = qq|SELECT current_date AS thisdate|;
2816   }
2817
2818   ($thisdate) = selectrow_query($self, $dbh, $query);
2819
2820   $main::lxdebug->leave_sub();
2821
2822   return $thisdate;
2823 }
2824
2825 sub like {
2826   $main::lxdebug->enter_sub();
2827
2828   my ($self, $string) = @_;
2829
2830   if ($string !~ /%/) {
2831     $string = "%$string%";
2832   }
2833
2834   $string =~ s/\'/\'\'/g;
2835
2836   $main::lxdebug->leave_sub();
2837
2838   return $string;
2839 }
2840
2841 sub redo_rows {
2842   $main::lxdebug->enter_sub();
2843
2844   my ($self, $flds, $new, $count, $numrows) = @_;
2845
2846   my @ndx = ();
2847
2848   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
2849
2850   my $i = 0;
2851
2852   # fill rows
2853   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
2854     $i++;
2855     $j = $item->{ndx} - 1;
2856     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
2857   }
2858
2859   # delete empty rows
2860   for $i ($count + 1 .. $numrows) {
2861     map { delete $self->{"${_}_$i"} } @{$flds};
2862   }
2863
2864   $main::lxdebug->leave_sub();
2865 }
2866
2867 sub update_status {
2868   $main::lxdebug->enter_sub();
2869
2870   my ($self, $myconfig) = @_;
2871
2872   my ($i, $id);
2873
2874   my $dbh = $self->dbconnect_noauto($myconfig);
2875
2876   my $query = qq|DELETE FROM status
2877                  WHERE (formname = ?) AND (trans_id = ?)|;
2878   my $sth = prepare_query($self, $dbh, $query);
2879
2880   if ($self->{formname} =~ /(check|receipt)/) {
2881     for $i (1 .. $self->{rowcount}) {
2882       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
2883     }
2884   } else {
2885     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
2886   }
2887   $sth->finish();
2888
2889   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2890   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2891
2892   my %queued = split / /, $self->{queued};
2893   my @values;
2894
2895   if ($self->{formname} =~ /(check|receipt)/) {
2896
2897     # this is a check or receipt, add one entry for each lineitem
2898     my ($accno) = split /--/, $self->{account};
2899     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
2900                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
2901     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
2902     $sth = prepare_query($self, $dbh, $query);
2903
2904     for $i (1 .. $self->{rowcount}) {
2905       if ($self->{"checked_$i"}) {
2906         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
2907       }
2908     }
2909     $sth->finish();
2910
2911   } else {
2912     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2913                 VALUES (?, ?, ?, ?, ?)|;
2914     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
2915              $queued{$self->{formname}}, $self->{formname});
2916   }
2917
2918   $dbh->commit;
2919   $dbh->disconnect;
2920
2921   $main::lxdebug->leave_sub();
2922 }
2923
2924 sub save_status {
2925   $main::lxdebug->enter_sub();
2926
2927   my ($self, $dbh) = @_;
2928
2929   my ($query, $printed, $emailed);
2930
2931   my $formnames  = $self->{printed};
2932   my $emailforms = $self->{emailed};
2933
2934   $query = qq|DELETE FROM status
2935                  WHERE (formname = ?) AND (trans_id = ?)|;
2936   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
2937
2938   # this only applies to the forms
2939   # checks and receipts are posted when printed or queued
2940
2941   if ($self->{queued}) {
2942     my %queued = split / /, $self->{queued};
2943
2944     foreach my $formname (keys %queued) {
2945       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2946       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2947
2948       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2949                   VALUES (?, ?, ?, ?, ?)|;
2950       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
2951
2952       $formnames  =~ s/\Q$self->{formname}\E//;
2953       $emailforms =~ s/\Q$self->{formname}\E//;
2954
2955     }
2956   }
2957
2958   # save printed, emailed info
2959   $formnames  =~ s/^ +//g;
2960   $emailforms =~ s/^ +//g;
2961
2962   my %status = ();
2963   map { $status{$_}{printed} = 1 } split / +/, $formnames;
2964   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
2965
2966   foreach my $formname (keys %status) {
2967     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
2968     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
2969
2970     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
2971                 VALUES (?, ?, ?, ?)|;
2972     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
2973   }
2974
2975   $main::lxdebug->leave_sub();
2976 }
2977
2978 #--- 4 locale ---#
2979 # $main::locale->text('SAVED')
2980 # $main::locale->text('DELETED')
2981 # $main::locale->text('ADDED')
2982 # $main::locale->text('PAYMENT POSTED')
2983 # $main::locale->text('POSTED')
2984 # $main::locale->text('POSTED AS NEW')
2985 # $main::locale->text('ELSE')
2986 # $main::locale->text('SAVED FOR DUNNING')
2987 # $main::locale->text('DUNNING STARTED')
2988 # $main::locale->text('PRINTED')
2989 # $main::locale->text('MAILED')
2990 # $main::locale->text('SCREENED')
2991 # $main::locale->text('CANCELED')
2992 # $main::locale->text('invoice')
2993 # $main::locale->text('proforma')
2994 # $main::locale->text('sales_order')
2995 # $main::locale->text('packing_list')
2996 # $main::locale->text('pick_list')
2997 # $main::locale->text('purchase_order')
2998 # $main::locale->text('bin_list')
2999 # $main::locale->text('sales_quotation')
3000 # $main::locale->text('request_quotation')
3001
3002 sub save_history {
3003   $main::lxdebug->enter_sub();
3004
3005   my $self = shift();
3006   my $dbh = shift();
3007
3008   if(!exists $self->{employee_id}) {
3009     &get_employee($self, $dbh);
3010   }
3011
3012   my $query =
3013    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
3014    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
3015   my @values = (conv_i($self->{id}), $self->{login},
3016                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
3017   do_query($self, $dbh, $query, @values);
3018
3019   $main::lxdebug->leave_sub();
3020 }
3021
3022 sub get_history {
3023   $main::lxdebug->enter_sub();
3024
3025   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
3026   my ($orderBy, $desc) = split(/\-\-/, $order);
3027   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
3028   my @tempArray;
3029   my $i = 0;
3030   if ($trans_id ne "") {
3031     my $query =
3032       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 | .
3033       qq|FROM history_erp h | .
3034       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
3035       qq|WHERE trans_id = | . $trans_id
3036       . $restriction . qq| |
3037       . $order;
3038       
3039     my $sth = $dbh->prepare($query) || $self->dberror($query);
3040
3041     $sth->execute() || $self->dberror("$query");
3042
3043     while(my $hash_ref = $sth->fetchrow_hashref()) {
3044       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
3045       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
3046       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
3047       $tempArray[$i++] = $hash_ref;
3048     }
3049     $main::lxdebug->leave_sub() and return \@tempArray 
3050       if ($i > 0 && $tempArray[0] ne "");
3051   }
3052   $main::lxdebug->leave_sub();
3053   return 0;
3054 }
3055
3056 sub update_defaults {
3057   $main::lxdebug->enter_sub();
3058
3059   my ($self, $myconfig, $fld, $provided_dbh) = @_;
3060
3061   my $dbh;
3062   if ($provided_dbh) {
3063     $dbh = $provided_dbh;
3064   } else {
3065     $dbh = $self->dbconnect_noauto($myconfig);
3066   }
3067   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
3068   my $sth   = $dbh->prepare($query);
3069
3070   $sth->execute || $self->dberror($query);
3071   my ($var) = $sth->fetchrow_array;
3072   $sth->finish;
3073
3074   if ($var =~ m/\d+$/) {
3075     my $new_var  = (substr $var, $-[0]) * 1 + 1;
3076     my $len_diff = length($var) - $-[0] - length($new_var);
3077     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3078
3079   } else {
3080     $var = $var . '1';
3081   }
3082
3083   $query = qq|UPDATE defaults SET $fld = ?|;
3084   do_query($self, $dbh, $query, $var);
3085
3086   if (!$provided_dbh) {
3087     $dbh->commit;
3088     $dbh->disconnect;
3089   }
3090
3091   $main::lxdebug->leave_sub();
3092
3093   return $var;
3094 }
3095
3096 sub update_business {
3097   $main::lxdebug->enter_sub();
3098
3099   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
3100
3101   my $dbh;
3102   if ($provided_dbh) {
3103     $dbh = $provided_dbh;
3104   } else {
3105     $dbh = $self->dbconnect_noauto($myconfig);
3106   }
3107   my $query =
3108     qq|SELECT customernumberinit FROM business
3109        WHERE id = ? FOR UPDATE|;
3110   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
3111
3112   if ($var =~ m/\d+$/) {
3113     my $new_var  = (substr $var, $-[0]) * 1 + 1;
3114     my $len_diff = length($var) - $-[0] - length($new_var);
3115     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3116
3117   } else {
3118     $var = $var . '1';
3119   }
3120
3121   $query = qq|UPDATE business
3122               SET customernumberinit = ?
3123               WHERE id = ?|;
3124   do_query($self, $dbh, $query, $var, $business_id);
3125
3126   if (!$provided_dbh) {
3127     $dbh->commit;
3128     $dbh->disconnect;
3129   }
3130
3131   $main::lxdebug->leave_sub();
3132
3133   return $var;
3134 }
3135
3136 sub get_partsgroup {
3137   $main::lxdebug->enter_sub();
3138
3139   my ($self, $myconfig, $p) = @_;
3140   my $target = $p->{target} || 'all_partsgroup';
3141
3142   my $dbh = $self->get_standard_dbh($myconfig);
3143
3144   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
3145                  FROM partsgroup pg
3146                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
3147   my @values;
3148
3149   if ($p->{searchitems} eq 'part') {
3150     $query .= qq|WHERE p.inventory_accno_id > 0|;
3151   }
3152   if ($p->{searchitems} eq 'service') {
3153     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
3154   }
3155   if ($p->{searchitems} eq 'assembly') {
3156     $query .= qq|WHERE p.assembly = '1'|;
3157   }
3158   if ($p->{searchitems} eq 'labor') {
3159     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
3160   }
3161
3162   $query .= qq|ORDER BY partsgroup|;
3163
3164   if ($p->{all}) {
3165     $query = qq|SELECT id, partsgroup FROM partsgroup
3166                 ORDER BY partsgroup|;
3167   }
3168
3169   if ($p->{language_code}) {
3170     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
3171                   t.description AS translation
3172                 FROM partsgroup pg
3173                 JOIN parts p ON (p.partsgroup_id = pg.id)
3174                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
3175                 ORDER BY translation|;
3176     @values = ($p->{language_code});
3177   }
3178
3179   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
3180
3181   $main::lxdebug->leave_sub();
3182 }
3183
3184 sub get_pricegroup {
3185   $main::lxdebug->enter_sub();
3186
3187   my ($self, $myconfig, $p) = @_;
3188
3189   my $dbh = $self->get_standard_dbh($myconfig);
3190
3191   my $query = qq|SELECT p.id, p.pricegroup
3192                  FROM pricegroup p|;
3193
3194   $query .= qq| ORDER BY pricegroup|;
3195
3196   if ($p->{all}) {
3197     $query = qq|SELECT id, pricegroup FROM pricegroup
3198                 ORDER BY pricegroup|;
3199   }
3200
3201   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
3202
3203   $main::lxdebug->leave_sub();
3204 }
3205
3206 sub all_years {
3207 # usage $form->all_years($myconfig, [$dbh])
3208 # return list of all years where bookings found
3209 # (@all_years)
3210
3211   $main::lxdebug->enter_sub();
3212
3213   my ($self, $myconfig, $dbh) = @_;
3214
3215   $dbh ||= $self->get_standard_dbh($myconfig);
3216
3217   # get years
3218   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
3219                    (SELECT MAX(transdate) FROM acc_trans)|;
3220   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
3221
3222   if ($myconfig->{dateformat} =~ /^yy/) {
3223     ($startdate) = split /\W/, $startdate;
3224     ($enddate) = split /\W/, $enddate;
3225   } else {
3226     (@_) = split /\W/, $startdate;
3227     $startdate = $_[2];
3228     (@_) = split /\W/, $enddate;
3229     $enddate = $_[2];
3230   }
3231
3232   my @all_years;
3233   $startdate = substr($startdate,0,4);
3234   $enddate = substr($enddate,0,4);
3235
3236   while ($enddate >= $startdate) {
3237     push @all_years, $enddate--;
3238   }
3239
3240   return @all_years;
3241
3242   $main::lxdebug->leave_sub();
3243 }
3244
3245 sub backup_vars {
3246   $main::lxdebug->enter_sub();
3247   my $self = shift;
3248   my @vars = @_;
3249
3250   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if $self->{$_} } @vars;
3251
3252   $main::lxdebug->leave_sub();
3253 }
3254
3255 sub restore_vars {
3256   $main::lxdebug->enter_sub();
3257
3258   my $self = shift;
3259   my @vars = @_;
3260
3261   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if $self->{_VAR_BACKUP}->{$_} } @vars;
3262
3263   $main::lxdebug->leave_sub();
3264 }
3265
3266 1;