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