37c60e96eae7118a4aab3a0f461a75b6a7db2fbc
[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 date_closed {
1423   $main::lxdebug->enter_sub();
1424
1425   my ($self, $date, $myconfig) = @_;
1426   my $dbh = $self->dbconnect($myconfig);
1427
1428   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
1429   my $sth = prepare_execute_query($self, $dbh, $query, $date);
1430   my ($closed) = $sth->fetchrow_array;
1431
1432   $main::lxdebug->leave_sub();
1433
1434   return $closed;
1435 }
1436
1437 sub update_balance {
1438   $main::lxdebug->enter_sub();
1439
1440   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1441
1442   # if we have a value, go do it
1443   if ($value != 0) {
1444
1445     # retrieve balance from table
1446     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1447     my $sth = prepare_execute_query($self, $dbh, $query, @values);
1448     my ($balance) = $sth->fetchrow_array;
1449     $sth->finish;
1450
1451     $balance += $value;
1452
1453     # update balance
1454     $query = "UPDATE $table SET $field = $balance WHERE $where";
1455     do_query($self, $dbh, $query, @values);
1456   }
1457   $main::lxdebug->leave_sub();
1458 }
1459
1460 sub update_exchangerate {
1461   $main::lxdebug->enter_sub();
1462
1463   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1464   my ($query);
1465   # some sanity check for currency
1466   if ($curr eq '') {
1467     $main::lxdebug->leave_sub();
1468     return;
1469   }  
1470   $query = qq|SELECT curr FROM defaults|;
1471
1472   my ($currency) = selectrow_query($self, $dbh, $query);
1473   my ($defaultcurrency) = split m/:/, $currency;
1474
1475
1476   if ($curr eq $defaultcurrency) {
1477     $main::lxdebug->leave_sub();
1478     return;
1479   }
1480
1481   $query = qq|SELECT e.curr FROM exchangerate e
1482                  WHERE e.curr = ? AND e.transdate = ?
1483                  FOR UPDATE|;
1484   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1485
1486   if ($buy == 0) {
1487     $buy = "";
1488   }
1489   if ($sell == 0) {
1490     $sell = "";
1491   }
1492
1493   $buy = conv_i($buy, "NULL");
1494   $sell = conv_i($sell, "NULL");
1495
1496   my $set;
1497   if ($buy != 0 && $sell != 0) {
1498     $set = "buy = $buy, sell = $sell";
1499   } elsif ($buy != 0) {
1500     $set = "buy = $buy";
1501   } elsif ($sell != 0) {
1502     $set = "sell = $sell";
1503   }
1504
1505   if ($sth->fetchrow_array) {
1506     $query = qq|UPDATE exchangerate
1507                 SET $set
1508                 WHERE curr = ?
1509                 AND transdate = ?|;
1510     
1511   } else {
1512     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1513                 VALUES (?, $buy, $sell, ?)|;
1514   }
1515   $sth->finish;
1516   do_query($self, $dbh, $query, $curr, $transdate);
1517
1518   $main::lxdebug->leave_sub();
1519 }
1520
1521 sub save_exchangerate {
1522   $main::lxdebug->enter_sub();
1523
1524   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1525
1526   my $dbh = $self->dbconnect($myconfig);
1527
1528   my ($buy, $sell);
1529
1530   $buy  = $rate if $fld eq 'buy';
1531   $sell = $rate if $fld eq 'sell';
1532
1533
1534   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1535
1536
1537   $dbh->disconnect;
1538
1539   $main::lxdebug->leave_sub();
1540 }
1541
1542 sub get_exchangerate {
1543   $main::lxdebug->enter_sub();
1544
1545   my ($self, $dbh, $curr, $transdate, $fld) = @_;
1546   my ($query);
1547
1548   unless ($transdate) {
1549     $main::lxdebug->leave_sub();
1550     return 1;
1551   }
1552
1553   $query = qq|SELECT curr FROM defaults|;
1554
1555   my ($currency) = selectrow_query($self, $dbh, $query);
1556   my ($defaultcurrency) = split m/:/, $currency;
1557
1558   if ($currency eq $defaultcurrency) {
1559     $main::lxdebug->leave_sub();
1560     return 1;
1561   }
1562
1563   $query = qq|SELECT e.$fld FROM exchangerate e
1564                  WHERE e.curr = ? AND e.transdate = ?|;
1565   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1566
1567
1568
1569   $main::lxdebug->leave_sub();
1570
1571   return $exchangerate;
1572 }
1573
1574 sub check_exchangerate {
1575   $main::lxdebug->enter_sub();
1576
1577   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1578
1579   unless ($transdate) {
1580     $main::lxdebug->leave_sub();
1581     return "";
1582   }
1583
1584   my ($defaultcurrency) = $self->get_default_currency($myconfig);
1585
1586   if ($currency eq $defaultcurrency) {
1587     $main::lxdebug->leave_sub();
1588     return 1;
1589   }
1590
1591   my $dbh   = $self->get_standard_dbh($myconfig);
1592   my $query = qq|SELECT e.$fld FROM exchangerate e
1593                  WHERE e.curr = ? AND e.transdate = ?|;
1594
1595   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1596
1597   $main::lxdebug->leave_sub();
1598
1599   return $exchangerate;
1600 }
1601
1602 sub get_default_currency {
1603   $main::lxdebug->enter_sub();
1604
1605   my ($self, $myconfig) = @_;
1606   my $dbh = $self->get_standard_dbh($myconfig);
1607
1608   my $query = qq|SELECT curr FROM defaults|;
1609
1610   my ($curr)            = selectrow_query($self, $dbh, $query);
1611   my ($defaultcurrency) = split m/:/, $curr;
1612
1613   $main::lxdebug->leave_sub();
1614
1615   return $defaultcurrency;
1616 }
1617
1618
1619 sub set_payment_options {
1620   $main::lxdebug->enter_sub();
1621
1622   my ($self, $myconfig, $transdate) = @_;
1623
1624   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
1625
1626   my $dbh = $self->get_standard_dbh($myconfig);
1627
1628   my $query =
1629     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
1630     qq|FROM payment_terms p | .
1631     qq|WHERE p.id = ?|;
1632
1633   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
1634    $self->{payment_terms}) =
1635      selectrow_query($self, $dbh, $query, $self->{payment_id});
1636
1637   if ($transdate eq "") {
1638     if ($self->{invdate}) {
1639       $transdate = $self->{invdate};
1640     } else {
1641       $transdate = $self->{transdate};
1642     }
1643   }
1644
1645   $query =
1646     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
1647     qq|FROM payment_terms|;
1648   ($self->{netto_date}, $self->{skonto_date}) =
1649     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
1650
1651   my ($invtotal, $total);
1652   my (%amounts, %formatted_amounts);
1653
1654   if ($self->{type} =~ /_order$/) {
1655     $amounts{invtotal} = $self->{ordtotal};
1656     $amounts{total}    = $self->{ordtotal};
1657
1658   } elsif ($self->{type} =~ /_quotation$/) {
1659     $amounts{invtotal} = $self->{quototal};
1660     $amounts{total}    = $self->{quototal};
1661
1662   } else {
1663     $amounts{invtotal} = $self->{invtotal};
1664     $amounts{total}    = $self->{total};
1665   }
1666
1667   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
1668
1669   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
1670   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
1671   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
1672
1673   foreach (keys %amounts) {
1674     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
1675     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
1676   }
1677
1678   if ($self->{"language_id"}) {
1679     $query =
1680       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1681       qq|FROM translation_payment_terms t | .
1682       qq|LEFT JOIN language l ON t.language_id = l.id | .
1683       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
1684     my ($description_long, $output_numberformat, $output_dateformat,
1685       $output_longdates) =
1686       selectrow_query($self, $dbh, $query,
1687                       $self->{"language_id"}, $self->{"payment_id"});
1688
1689     $self->{payment_terms} = $description_long if ($description_long);
1690
1691     if ($output_dateformat) {
1692       foreach my $key (qw(netto_date skonto_date)) {
1693         $self->{$key} =
1694           $main::locale->reformat_date($myconfig, $self->{$key},
1695                                        $output_dateformat,
1696                                        $output_longdates);
1697       }
1698     }
1699
1700     if ($output_numberformat &&
1701         ($output_numberformat ne $myconfig->{"numberformat"})) {
1702       my $saved_numberformat = $myconfig->{"numberformat"};
1703       $myconfig->{"numberformat"} = $output_numberformat;
1704       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
1705       $myconfig->{"numberformat"} = $saved_numberformat;
1706     }
1707   }
1708
1709   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1710   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1711   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1712   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1713   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1714   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1715   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1716
1717   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
1718
1719   $main::lxdebug->leave_sub();
1720
1721 }
1722
1723 sub get_template_language {
1724   $main::lxdebug->enter_sub();
1725
1726   my ($self, $myconfig) = @_;
1727
1728   my $template_code = "";
1729
1730   if ($self->{language_id}) {
1731     my $dbh = $self->get_standard_dbh($myconfig);
1732     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1733     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1734   }
1735
1736   $main::lxdebug->leave_sub();
1737
1738   return $template_code;
1739 }
1740
1741 sub get_printer_code {
1742   $main::lxdebug->enter_sub();
1743
1744   my ($self, $myconfig) = @_;
1745
1746   my $template_code = "";
1747
1748   if ($self->{printer_id}) {
1749     my $dbh = $self->get_standard_dbh($myconfig);
1750     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1751     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1752   }
1753
1754   $main::lxdebug->leave_sub();
1755
1756   return $template_code;
1757 }
1758
1759 sub get_shipto {
1760   $main::lxdebug->enter_sub();
1761
1762   my ($self, $myconfig) = @_;
1763
1764   my $template_code = "";
1765
1766   if ($self->{shipto_id}) {
1767     my $dbh = $self->get_standard_dbh($myconfig);
1768     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1769     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1770     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1771   }
1772
1773   $main::lxdebug->leave_sub();
1774 }
1775
1776 sub add_shipto {
1777   $main::lxdebug->enter_sub();
1778
1779   my ($self, $dbh, $id, $module) = @_;
1780
1781   my $shipto;
1782   my @values;
1783
1784   foreach my $item (qw(name department_1 department_2 street zipcode city country
1785                        contact phone fax email)) {
1786     if ($self->{"shipto$item"}) {
1787       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1788     }
1789     push(@values, $self->{"shipto${item}"});
1790   }
1791
1792   if ($shipto) {
1793     if ($self->{shipto_id}) {
1794       my $query = qq|UPDATE shipto set
1795                        shiptoname = ?,
1796                        shiptodepartment_1 = ?,
1797                        shiptodepartment_2 = ?,
1798                        shiptostreet = ?,
1799                        shiptozipcode = ?,
1800                        shiptocity = ?,
1801                        shiptocountry = ?,
1802                        shiptocontact = ?,
1803                        shiptophone = ?,
1804                        shiptofax = ?,
1805                        shiptoemail = ?
1806                      WHERE shipto_id = ?|;
1807       do_query($self, $dbh, $query, @values, $self->{shipto_id});
1808     } else {
1809       my $query = qq|SELECT * FROM shipto
1810                      WHERE shiptoname = ? AND
1811                        shiptodepartment_1 = ? AND
1812                        shiptodepartment_2 = ? AND
1813                        shiptostreet = ? AND
1814                        shiptozipcode = ? AND
1815                        shiptocity = ? AND
1816                        shiptocountry = ? AND
1817                        shiptocontact = ? AND
1818                        shiptophone = ? AND
1819                        shiptofax = ? AND
1820                        shiptoemail = ? AND
1821                        module = ? AND 
1822                        trans_id = ?|;
1823       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
1824       if(!$insert_check){
1825         $query =
1826           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
1827                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
1828                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
1829              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1830         do_query($self, $dbh, $query, $id, @values, $module);
1831       }
1832     }
1833   }
1834
1835   $main::lxdebug->leave_sub();
1836 }
1837
1838 sub get_employee {
1839   $main::lxdebug->enter_sub();
1840
1841   my ($self, $dbh) = @_;
1842
1843   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
1844   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
1845   $self->{"employee_id"} *= 1;
1846
1847   $main::lxdebug->leave_sub();
1848 }
1849
1850 sub get_salesman {
1851   $main::lxdebug->enter_sub();
1852
1853   my ($self, $myconfig, $salesman_id) = @_;
1854
1855   $main::lxdebug->leave_sub() and return unless $salesman_id;
1856
1857   my $dbh = $self->get_standard_dbh($myconfig);
1858
1859   my ($login) =
1860     selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|,
1861                     $salesman_id);
1862
1863   if ($login) {
1864     my $user = new User($main::memberfile, $login);
1865     map({ $self->{"salesman_$_"} = $user->{$_}; }
1866         qw(address businessnumber co_ustid company duns email fax name
1867            taxnumber tel));
1868     $self->{salesman_login} = $login;
1869
1870     $self->{salesman_name} = $login
1871       if ($self->{salesman_name} eq "");
1872   }
1873
1874   $main::lxdebug->leave_sub();
1875 }
1876
1877 sub get_duedate {
1878   $main::lxdebug->enter_sub();
1879
1880   my ($self, $myconfig) = @_;
1881
1882   my $dbh = $self->get_standard_dbh($myconfig);
1883   my $query = qq|SELECT current_date + terms_netto FROM payment_terms WHERE id = ?|;
1884   ($self->{duedate}) = selectrow_query($self, $dbh, $query, $self->{payment_id});
1885
1886   $main::lxdebug->leave_sub();
1887 }
1888
1889 sub _get_contacts {
1890   $main::lxdebug->enter_sub();
1891
1892   my ($self, $dbh, $id, $key) = @_;
1893
1894   $key = "all_contacts" unless ($key);
1895
1896   my $query =
1897     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
1898     qq|FROM contacts | .
1899     qq|WHERE cp_cv_id = ? | .
1900     qq|ORDER BY lower(cp_name)|;
1901
1902   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
1903
1904   $main::lxdebug->leave_sub();
1905 }
1906
1907 sub _get_projects {
1908   $main::lxdebug->enter_sub();
1909
1910   my ($self, $dbh, $key) = @_;
1911
1912   my ($all, $old_id, $where, @values);
1913
1914   if (ref($key) eq "HASH") {
1915     my $params = $key;
1916
1917     $key = "ALL_PROJECTS";
1918
1919     foreach my $p (keys(%{$params})) {
1920       if ($p eq "all") {
1921         $all = $params->{$p};
1922       } elsif ($p eq "old_id") {
1923         $old_id = $params->{$p};
1924       } elsif ($p eq "key") {
1925         $key = $params->{$p};
1926       }
1927     }
1928   }
1929
1930   if (!$all) {
1931     $where = "WHERE active ";
1932     if ($old_id) {
1933       if (ref($old_id) eq "ARRAY") {
1934         my @ids = grep({ $_ } @{$old_id});
1935         if (@ids) {
1936           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
1937           push(@values, @ids);
1938         }
1939       } else {
1940         $where .= " OR (id = ?) ";
1941         push(@values, $old_id);
1942       }
1943     }
1944   }
1945
1946   my $query =
1947     qq|SELECT id, projectnumber, description, active | .
1948     qq|FROM project | .
1949     $where .
1950     qq|ORDER BY lower(projectnumber)|;
1951
1952   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
1953
1954   $main::lxdebug->leave_sub();
1955 }
1956
1957 sub _get_shipto {
1958   $main::lxdebug->enter_sub();
1959
1960   my ($self, $dbh, $vc_id, $key) = @_;
1961
1962   $key = "all_shipto" unless ($key);
1963
1964   # get shipping addresses
1965   my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
1966
1967   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
1968
1969   $main::lxdebug->leave_sub();
1970 }
1971
1972 sub _get_printers {
1973   $main::lxdebug->enter_sub();
1974
1975   my ($self, $dbh, $key) = @_;
1976
1977   $key = "all_printers" unless ($key);
1978
1979   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
1980
1981   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
1982
1983   $main::lxdebug->leave_sub();
1984 }
1985
1986 sub _get_charts {
1987   $main::lxdebug->enter_sub();
1988
1989   my ($self, $dbh, $params) = @_;
1990
1991   $key = $params->{key};
1992   $key = "all_charts" unless ($key);
1993
1994   my $transdate = quote_db_date($params->{transdate});
1995
1996   my $query =
1997     qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
1998     qq|FROM chart c | .
1999     qq|LEFT JOIN taxkeys tk ON | .
2000     qq|(tk.id = (SELECT id FROM taxkeys | .
2001     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
2002     qq|          ORDER BY startdate DESC LIMIT 1)) | .
2003     qq|ORDER BY c.accno|;
2004
2005   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2006
2007   $main::lxdebug->leave_sub();
2008 }
2009
2010 sub _get_taxcharts {
2011   $main::lxdebug->enter_sub();
2012
2013   my ($self, $dbh, $key) = @_;
2014
2015   $key = "all_taxcharts" unless ($key);
2016
2017   my $query = qq|SELECT * FROM tax ORDER BY taxkey|;
2018
2019   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2020
2021   $main::lxdebug->leave_sub();
2022 }
2023
2024 sub _get_taxzones {
2025   $main::lxdebug->enter_sub();
2026
2027   my ($self, $dbh, $key) = @_;
2028
2029   $key = "all_taxzones" unless ($key);
2030
2031   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
2032
2033   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2034
2035   $main::lxdebug->leave_sub();
2036 }
2037
2038 sub _get_employees {
2039   $main::lxdebug->enter_sub();
2040
2041   my ($self, $dbh, $default_key, $key) = @_;
2042
2043   $key = $default_key unless ($key);
2044   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
2045
2046   $main::lxdebug->leave_sub();
2047 }
2048
2049 sub _get_business_types {
2050   $main::lxdebug->enter_sub();
2051
2052   my ($self, $dbh, $key) = @_;
2053
2054   $key = "all_business_types" unless ($key);
2055   $self->{$key} =
2056     selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
2057
2058   $main::lxdebug->leave_sub();
2059 }
2060
2061 sub _get_languages {
2062   $main::lxdebug->enter_sub();
2063
2064   my ($self, $dbh, $key) = @_;
2065
2066   $key = "all_languages" unless ($key);
2067
2068   my $query = qq|SELECT * FROM language ORDER BY id|;
2069
2070   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2071
2072   $main::lxdebug->leave_sub();
2073 }
2074
2075 sub _get_dunning_configs {
2076   $main::lxdebug->enter_sub();
2077
2078   my ($self, $dbh, $key) = @_;
2079
2080   $key = "all_dunning_configs" unless ($key);
2081
2082   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
2083
2084   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2085
2086   $main::lxdebug->leave_sub();
2087 }
2088
2089 sub _get_currencies {
2090 $main::lxdebug->enter_sub();
2091
2092   my ($self, $dbh, $key) = @_;
2093
2094   $key = "all_currencies" unless ($key);
2095
2096   my $query = qq|SELECT curr AS currency FROM defaults|;
2097  
2098   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
2099
2100   $main::lxdebug->leave_sub();
2101 }
2102
2103 sub _get_payments {
2104 $main::lxdebug->enter_sub();
2105
2106   my ($self, $dbh, $key) = @_;
2107
2108   $key = "all_payments" unless ($key);
2109
2110   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
2111  
2112   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2113
2114   $main::lxdebug->leave_sub();
2115 }
2116
2117 sub _get_customers {
2118   $main::lxdebug->enter_sub();
2119
2120   my ($self, $dbh, $key, $limit) = @_;
2121
2122   $key = "all_customers" unless ($key);
2123   $limit_clause = "LIMIT $limit" if $limit;
2124
2125   my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name $limit_clause|;
2126
2127   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2128
2129   $main::lxdebug->leave_sub();
2130 }
2131
2132 sub _get_vendors {
2133   $main::lxdebug->enter_sub();
2134
2135   my ($self, $dbh, $key) = @_;
2136
2137   $key = "all_vendors" unless ($key);
2138
2139   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
2140
2141   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2142
2143   $main::lxdebug->leave_sub();
2144 }
2145
2146 sub _get_departments {
2147   $main::lxdebug->enter_sub();
2148
2149   my ($self, $dbh, $key) = @_;
2150
2151   $key = "all_departments" unless ($key);
2152
2153   my $query = qq|SELECT * FROM department ORDER BY description|;
2154
2155   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2156
2157   $main::lxdebug->leave_sub();
2158 }
2159
2160 sub _get_warehouses {
2161   $main::lxdebug->enter_sub();
2162
2163   my ($self, $dbh, $param) = @_;
2164
2165   my ($key, $bins_key, $q_access, @values);
2166
2167   if ('' eq ref $param) {
2168     $key = $param;
2169   } else {
2170     $key      = $param->{key};
2171     $bins_key = $param->{bins};
2172
2173     if ($param->{access}) {
2174       $q_access =
2175         qq| AND EXISTS (
2176               SELECT wa.employee_id
2177               FROM warehouse_access wa
2178               WHERE (wa.employee_id  = (SELECT id FROM employee WHERE login = ?))
2179                 AND (wa.warehouse_id = w.id)
2180                 AND (wa.access IN ('ro', 'rw')))|;
2181       push @values, $param->{access};
2182     }
2183
2184     if ($param->{no_personal}) {
2185       $q_access .= qq| AND (w.personal_warehouse_of IS NULL)|;
2186
2187     } elsif ($param->{personal}) {
2188       $q_access .= qq| AND (w.personal_warehouse_of = ?)|;
2189       push @values, conv_i($param->{personal});
2190     }
2191   }
2192
2193   my $query = qq|SELECT w.* FROM warehouse w
2194                  WHERE (NOT w.invalid) AND
2195                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
2196                    $q_access
2197                  ORDER BY w.sortkey|;
2198
2199   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
2200
2201   if ($bins_key) {
2202     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
2203     my $sth = prepare_query($self, $dbh, $query);
2204
2205     foreach my $warehouse (@{ $self->{$key} }) {
2206       do_statement($self, $sth, $query, $warehouse->{id});
2207       $warehouse->{$bins_key} = [];
2208
2209       while (my $ref = $sth->fetchrow_hashref()) {
2210         push @{ $warehouse->{$bins_key} }, $ref;
2211       }
2212     }
2213     $sth->finish();
2214   }
2215
2216   $main::lxdebug->leave_sub();
2217 }
2218
2219 sub _get_simple {
2220   $main::lxdebug->enter_sub();
2221
2222   my ($self, $dbh, $table, $key, $sortkey) = @_;
2223
2224   my $query  = qq|SELECT * FROM $table|;
2225   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
2226
2227   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2228
2229   $main::lxdebug->leave_sub();
2230 }
2231
2232 sub _get_groups {
2233   $main::lxdebug->enter_sub();
2234
2235   my ($self, $dbh, $key) = @_;
2236
2237   $key ||= "all_groups";
2238
2239   my $groups = $main::auth->read_groups();
2240
2241   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2242
2243   $main::lxdebug->leave_sub();
2244 }
2245
2246 sub get_lists {
2247   $main::lxdebug->enter_sub();
2248
2249   my $self = shift;
2250   my %params = @_;
2251
2252   my $dbh = $self->get_standard_dbh(\%main::myconfig);
2253   my ($sth, $query, $ref);
2254
2255   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
2256   my $vc_id = $self->{"${vc}_id"};
2257
2258   if ($params{"contacts"}) {
2259     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
2260   }
2261
2262   if ($params{"shipto"}) {
2263     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
2264   }
2265
2266   if ($params{"projects"} || $params{"all_projects"}) {
2267     $self->_get_projects($dbh, $params{"all_projects"} ?
2268                          $params{"all_projects"} : $params{"projects"},
2269                          $params{"all_projects"} ? 1 : 0);
2270   }
2271
2272   if ($params{"printers"}) {
2273     $self->_get_printers($dbh, $params{"printers"});
2274   }
2275
2276   if ($params{"languages"}) {
2277     $self->_get_languages($dbh, $params{"languages"});
2278   }
2279
2280   if ($params{"charts"}) {
2281     $self->_get_charts($dbh, $params{"charts"});
2282   }
2283
2284   if ($params{"taxcharts"}) {
2285     $self->_get_taxcharts($dbh, $params{"taxcharts"});
2286   }
2287
2288   if ($params{"taxzones"}) {
2289     $self->_get_taxzones($dbh, $params{"taxzones"});
2290   }
2291
2292   if ($params{"employees"}) {
2293     $self->_get_employees($dbh, "all_employees", $params{"employees"});
2294   }
2295   
2296   if ($params{"salesmen"}) {
2297     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
2298   }
2299
2300   if ($params{"business_types"}) {
2301     $self->_get_business_types($dbh, $params{"business_types"});
2302   }
2303
2304   if ($params{"dunning_configs"}) {
2305     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
2306   }
2307   
2308   if($params{"currencies"}) {
2309     $self->_get_currencies($dbh, $params{"currencies"});
2310   }
2311   
2312   if($params{"customers"}) {
2313     if (ref $params{"customers"} eq 'HASH') {
2314       $self->_get_customers($dbh, $params{"customers"}{key}, $params{"customers"}{limit});
2315     } else {
2316       $self->_get_customers($dbh, $params{"customers"});
2317     }
2318   }
2319   
2320   if($params{"vendors"}) {
2321     if (ref $params{"vendors"} eq 'HASH') {
2322       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
2323     } else {
2324       $self->_get_vendors($dbh, $params{"vendors"});
2325     }
2326   }
2327   
2328   if($params{"payments"}) {
2329     $self->_get_payments($dbh, $params{"payments"});
2330   }
2331
2332   if($params{"departments"}) {
2333     $self->_get_departments($dbh, $params{"departments"});
2334   }
2335
2336   if ($params{price_factors}) {
2337     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
2338   }
2339
2340   if ($params{warehouses}) {
2341     $self->_get_warehouses($dbh, $params{warehouses});
2342   }
2343
2344   if ($params{groups}) {
2345     $self->_get_groups($dbh, $params{groups});
2346   }
2347   if ($params{partsgroup}) {
2348     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
2349   }
2350
2351   $main::lxdebug->leave_sub();
2352 }
2353
2354 # this sub gets the id and name from $table
2355 sub get_name {
2356   $main::lxdebug->enter_sub();
2357
2358   my ($self, $myconfig, $table) = @_;
2359
2360   # connect to database
2361   my $dbh = $self->get_standard_dbh($myconfig);
2362
2363   $table = $table eq "customer" ? "customer" : "vendor";
2364   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
2365
2366   my ($query, @values);
2367
2368   if (!$self->{openinvoices}) {
2369     my $where;
2370     if ($self->{customernumber} ne "") {
2371       $where = qq|(vc.customernumber ILIKE ?)|;
2372       push(@values, '%' . $self->{customernumber} . '%');
2373     } else {
2374       $where = qq|(vc.name ILIKE ?)|;
2375       push(@values, '%' . $self->{$table} . '%');
2376     }
2377
2378     $query =
2379       qq~SELECT vc.id, vc.name,
2380            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2381          FROM $table vc
2382          WHERE $where AND (NOT vc.obsolete)
2383          ORDER BY vc.name~;
2384   } else {
2385     $query =
2386       qq~SELECT DISTINCT vc.id, vc.name,
2387            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2388          FROM $arap a
2389          JOIN $table vc ON (a.${table}_id = vc.id)
2390          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
2391          ORDER BY vc.name~;
2392     push(@values, '%' . $self->{$table} . '%');
2393   }
2394
2395   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
2396
2397   $main::lxdebug->leave_sub();
2398
2399   return scalar(@{ $self->{name_list} });
2400 }
2401
2402 # the selection sub is used in the AR, AP, IS, IR and OE module
2403 #
2404 sub all_vc {
2405   $main::lxdebug->enter_sub();
2406
2407   my ($self, $myconfig, $table, $module) = @_;
2408
2409   my $ref;
2410   my $dbh = $self->get_standard_dbh($myconfig);
2411
2412   $table = $table eq "customer" ? "customer" : "vendor";
2413
2414   my $query = qq|SELECT count(*) FROM $table|;
2415   my ($count) = selectrow_query($self, $dbh, $query);
2416
2417   # build selection list
2418   if ($count < $myconfig->{vclimit}) {
2419     $query = qq|SELECT id, name, salesman_id
2420                 FROM $table WHERE NOT obsolete
2421                 ORDER BY name|;
2422     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2423   }
2424
2425   # get self
2426   $self->get_employee($dbh);
2427
2428   # setup sales contacts
2429   $query = qq|SELECT e.id, e.name
2430               FROM employee e
2431               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
2432   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2433
2434   # this is for self
2435   push(@{ $self->{all_employees} },
2436        { id   => $self->{employee_id},
2437          name => $self->{employee} });
2438
2439   # sort the whole thing
2440   @{ $self->{all_employees} } =
2441     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
2442
2443   if ($module eq 'AR') {
2444
2445     # prepare query for departments
2446     $query = qq|SELECT id, description
2447                 FROM department
2448                 WHERE role = 'P'
2449                 ORDER BY description|;
2450
2451   } else {
2452     $query = qq|SELECT id, description
2453                 FROM department
2454                 ORDER BY description|;
2455   }
2456
2457   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2458
2459   # get languages
2460   $query = qq|SELECT id, description
2461               FROM language
2462               ORDER BY id|;
2463
2464   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2465
2466   # get printer
2467   $query = qq|SELECT printer_description, id
2468               FROM printers
2469               ORDER BY printer_description|;
2470
2471   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2472
2473   # get payment terms
2474   $query = qq|SELECT id, description
2475               FROM payment_terms
2476               ORDER BY sortkey|;
2477
2478   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2479
2480   $main::lxdebug->leave_sub();
2481 }
2482
2483 sub language_payment {
2484   $main::lxdebug->enter_sub();
2485
2486   my ($self, $myconfig) = @_;
2487
2488   my $dbh = $self->get_standard_dbh($myconfig);
2489   # get languages
2490   my $query = qq|SELECT id, description
2491                  FROM language
2492                  ORDER BY id|;
2493
2494   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2495
2496   # get printer
2497   $query = qq|SELECT printer_description, id
2498               FROM printers
2499               ORDER BY printer_description|;
2500
2501   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2502
2503   # get payment terms
2504   $query = qq|SELECT id, description
2505               FROM payment_terms
2506               ORDER BY sortkey|;
2507
2508   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2509
2510   # get buchungsgruppen
2511   $query = qq|SELECT id, description
2512               FROM buchungsgruppen|;
2513
2514   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2515
2516   $main::lxdebug->leave_sub();
2517 }
2518
2519 # this is only used for reports
2520 sub all_departments {
2521   $main::lxdebug->enter_sub();
2522
2523   my ($self, $myconfig, $table) = @_;
2524
2525   my $dbh = $self->get_standard_dbh($myconfig);
2526   my $where;
2527
2528   if ($table eq 'customer') {
2529     $where = "WHERE role = 'P' ";
2530   }
2531
2532   my $query = qq|SELECT id, description
2533                  FROM department
2534                  $where
2535                  ORDER BY description|;
2536   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2537
2538   delete($self->{all_departments}) unless (@{ $self->{all_departments} });
2539
2540   $main::lxdebug->leave_sub();
2541 }
2542
2543 sub create_links {
2544   $main::lxdebug->enter_sub();
2545
2546   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2547
2548   my ($fld, $arap);
2549   if ($table eq "customer") {
2550     $fld = "buy";
2551     $arap = "ar";
2552   } else {
2553     $table = "vendor";
2554     $fld = "sell";
2555     $arap = "ap";
2556   }
2557
2558   $self->all_vc($myconfig, $table, $module);
2559
2560   # get last customers or vendors
2561   my ($query, $sth, $ref);
2562
2563   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2564   my %xkeyref = ();
2565
2566   if (!$self->{id}) {
2567
2568     my $transdate = "current_date";
2569     if ($self->{transdate}) {
2570       $transdate = $dbh->quote($self->{transdate});
2571     }
2572
2573     # now get the account numbers
2574     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2575                 FROM chart c, taxkeys tk
2576                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2577                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2578                 ORDER BY c.accno|;
2579
2580     $sth = $dbh->prepare($query);
2581
2582     do_statement($self, $sth, $query, '%' . $module . '%');
2583
2584     $self->{accounts} = "";
2585     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2586
2587       foreach my $key (split(/:/, $ref->{link})) {
2588         if ($key =~ /\Q$module\E/) {
2589
2590           # cross reference for keys
2591           $xkeyref{ $ref->{accno} } = $key;
2592
2593           push @{ $self->{"${module}_links"}{$key} },
2594             { accno       => $ref->{accno},
2595               description => $ref->{description},
2596               taxkey      => $ref->{taxkey_id},
2597               tax_id      => $ref->{tax_id} };
2598
2599           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2600         }
2601       }
2602     }
2603   }
2604
2605   # get taxkeys and description
2606   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2607   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2608
2609   if (($module eq "AP") || ($module eq "AR")) {
2610     # get tax rates and description
2611     $query = qq|SELECT * FROM tax|;
2612     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2613   }
2614
2615   if ($self->{id}) {
2616     $query =
2617       qq|SELECT
2618            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2619            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
2620            a.intnotes, a.department_id, a.amount AS oldinvtotal,
2621            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2622            c.name AS $table,
2623            d.description AS department,
2624            e.name AS employee
2625          FROM $arap a
2626          JOIN $table c ON (a.${table}_id = c.id)
2627          LEFT JOIN employee e ON (e.id = a.employee_id)
2628          LEFT JOIN department d ON (d.id = a.department_id)
2629          WHERE a.id = ?|;
2630     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2631
2632     foreach $key (keys %$ref) {
2633       $self->{$key} = $ref->{$key};
2634     }
2635
2636     my $transdate = "current_date";
2637     if ($self->{transdate}) {
2638       $transdate = $dbh->quote($self->{transdate});
2639     }
2640
2641     # now get the account numbers
2642     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2643                 FROM chart c
2644                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2645                 WHERE c.link LIKE ?
2646                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2647                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
2648                 ORDER BY c.accno|;
2649
2650     $sth = $dbh->prepare($query);
2651     do_statement($self, $sth, $query, "%$module%");
2652
2653     $self->{accounts} = "";
2654     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2655
2656       foreach my $key (split(/:/, $ref->{link})) {
2657         if ($key =~ /\Q$module\E/) {
2658
2659           # cross reference for keys
2660           $xkeyref{ $ref->{accno} } = $key;
2661
2662           push @{ $self->{"${module}_links"}{$key} },
2663             { accno       => $ref->{accno},
2664               description => $ref->{description},
2665               taxkey      => $ref->{taxkey_id},
2666               tax_id      => $ref->{tax_id} };
2667
2668           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2669         }
2670       }
2671     }
2672
2673
2674     # get amounts from individual entries
2675     $query =
2676       qq|SELECT
2677            c.accno, c.description,
2678            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
2679            p.projectnumber,
2680            t.rate, t.id
2681          FROM acc_trans a
2682          LEFT JOIN chart c ON (c.id = a.chart_id)
2683          LEFT JOIN project p ON (p.id = a.project_id)
2684          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
2685                                     WHERE (tk.taxkey_id=a.taxkey) AND
2686                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
2687                                         THEN tk.chart_id = a.chart_id
2688                                         ELSE 1 = 1
2689                                         END)
2690                                        OR (c.link='%tax%')) AND
2691                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
2692          WHERE a.trans_id = ?
2693          AND a.fx_transaction = '0'
2694          ORDER BY a.oid, a.transdate|;
2695     $sth = $dbh->prepare($query);
2696     do_statement($self, $sth, $query, $self->{id});
2697
2698     # get exchangerate for currency
2699     $self->{exchangerate} =
2700       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2701     my $index = 0;
2702
2703     # store amounts in {acc_trans}{$key} for multiple accounts
2704     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2705       $ref->{exchangerate} =
2706         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2707       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2708         $index++;
2709       }
2710       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2711         $ref->{amount} *= -1;
2712       }
2713       $ref->{index} = $index;
2714
2715       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2716     }
2717
2718     $sth->finish;
2719     $query =
2720       qq|SELECT
2721            d.curr AS currencies, d.closedto, d.revtrans,
2722            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2723            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2724          FROM defaults d|;
2725     $ref = selectfirst_hashref_query($self, $dbh, $query);
2726     map { $self->{$_} = $ref->{$_} } keys %$ref;
2727
2728   } else {
2729
2730     # get date
2731     $query =
2732        qq|SELECT
2733             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
2734             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2735             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2736           FROM defaults d|;
2737     $ref = selectfirst_hashref_query($self, $dbh, $query);
2738     map { $self->{$_} = $ref->{$_} } keys %$ref;
2739
2740     if ($self->{"$self->{vc}_id"}) {
2741
2742       # only setup currency
2743       ($self->{currency}) = split(/:/, $self->{currencies});
2744
2745     } else {
2746
2747       $self->lastname_used($dbh, $myconfig, $table, $module);
2748
2749       # get exchangerate for currency
2750       $self->{exchangerate} =
2751         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2752
2753     }
2754
2755   }
2756
2757   $main::lxdebug->leave_sub();
2758 }
2759
2760 sub lastname_used {
2761   $main::lxdebug->enter_sub();
2762
2763   my ($self, $dbh, $myconfig, $table, $module) = @_;
2764
2765   my ($arap, $where);
2766
2767   $table         = $table eq "customer" ? "customer" : "vendor";
2768   my %column_map = ("a.curr"                  => "currency",
2769                     "a.${table}_id"           => "${table}_id",
2770                     "a.department_id"         => "department_id",
2771                     "d.description"           => "department",
2772                     "ct.name"                 => $table,
2773                     "current_date + ct.terms" => "duedate",
2774     );
2775
2776   if ($self->{type} =~ /delivery_order/) {
2777     $arap  = 'delivery_orders';
2778     delete $column_map{"a.curr"};
2779
2780   } elsif ($self->{type} =~ /_order/) {
2781     $arap  = 'oe';
2782     $where = "quotation = '0'";
2783
2784   } elsif ($self->{type} =~ /_quotation/) {
2785     $arap  = 'oe';
2786     $where = "quotation = '1'";
2787
2788   } elsif ($table eq 'customer') {
2789     $arap  = 'ar';
2790
2791   } else {
2792     $arap  = 'ap';
2793
2794   }
2795
2796   $where           = "($where) AND" if ($where);
2797   my $query        = qq|SELECT MAX(id) FROM $arap
2798                         WHERE $where ${table}_id > 0|;
2799   my ($trans_id)   = selectrow_query($self, $dbh, $query);
2800   $trans_id       *= 1;
2801
2802   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
2803   $query           = qq|SELECT $column_spec
2804                         FROM $arap a
2805                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
2806                         LEFT JOIN department d  ON (a.department_id = d.id)
2807                         WHERE a.id = ?|;
2808   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
2809
2810   map { $self->{$_} = $ref->{$_} } values %column_map;
2811
2812   $main::lxdebug->leave_sub();
2813 }
2814
2815 sub current_date {
2816   $main::lxdebug->enter_sub();
2817
2818   my ($self, $myconfig, $thisdate, $days) = @_;
2819
2820   my $dbh = $self->get_standard_dbh($myconfig);
2821   my $query;
2822
2823   $days *= 1;
2824   if ($thisdate) {
2825     my $dateformat = $myconfig->{dateformat};
2826     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2827     $thisdate = $dbh->quote($thisdate);
2828     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
2829   } else {
2830     $query = qq|SELECT current_date AS thisdate|;
2831   }
2832
2833   ($thisdate) = selectrow_query($self, $dbh, $query);
2834
2835   $main::lxdebug->leave_sub();
2836
2837   return $thisdate;
2838 }
2839
2840 sub like {
2841   $main::lxdebug->enter_sub();
2842
2843   my ($self, $string) = @_;
2844
2845   if ($string !~ /%/) {
2846     $string = "%$string%";
2847   }
2848
2849   $string =~ s/\'/\'\'/g;
2850
2851   $main::lxdebug->leave_sub();
2852
2853   return $string;
2854 }
2855
2856 sub redo_rows {
2857   $main::lxdebug->enter_sub();
2858
2859   my ($self, $flds, $new, $count, $numrows) = @_;
2860
2861   my @ndx = ();
2862
2863   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
2864
2865   my $i = 0;
2866
2867   # fill rows
2868   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
2869     $i++;
2870     $j = $item->{ndx} - 1;
2871     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
2872   }
2873
2874   # delete empty rows
2875   for $i ($count + 1 .. $numrows) {
2876     map { delete $self->{"${_}_$i"} } @{$flds};
2877   }
2878
2879   $main::lxdebug->leave_sub();
2880 }
2881
2882 sub update_status {
2883   $main::lxdebug->enter_sub();
2884
2885   my ($self, $myconfig) = @_;
2886
2887   my ($i, $id);
2888
2889   my $dbh = $self->dbconnect_noauto($myconfig);
2890
2891   my $query = qq|DELETE FROM status
2892                  WHERE (formname = ?) AND (trans_id = ?)|;
2893   my $sth = prepare_query($self, $dbh, $query);
2894
2895   if ($self->{formname} =~ /(check|receipt)/) {
2896     for $i (1 .. $self->{rowcount}) {
2897       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
2898     }
2899   } else {
2900     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
2901   }
2902   $sth->finish();
2903
2904   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2905   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2906
2907   my %queued = split / /, $self->{queued};
2908   my @values;
2909
2910   if ($self->{formname} =~ /(check|receipt)/) {
2911
2912     # this is a check or receipt, add one entry for each lineitem
2913     my ($accno) = split /--/, $self->{account};
2914     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
2915                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
2916     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
2917     $sth = prepare_query($self, $dbh, $query);
2918
2919     for $i (1 .. $self->{rowcount}) {
2920       if ($self->{"checked_$i"}) {
2921         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
2922       }
2923     }
2924     $sth->finish();
2925
2926   } else {
2927     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2928                 VALUES (?, ?, ?, ?, ?)|;
2929     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
2930              $queued{$self->{formname}}, $self->{formname});
2931   }
2932
2933   $dbh->commit;
2934   $dbh->disconnect;
2935
2936   $main::lxdebug->leave_sub();
2937 }
2938
2939 sub save_status {
2940   $main::lxdebug->enter_sub();
2941
2942   my ($self, $dbh) = @_;
2943
2944   my ($query, $printed, $emailed);
2945
2946   my $formnames  = $self->{printed};
2947   my $emailforms = $self->{emailed};
2948
2949   $query = qq|DELETE FROM status
2950                  WHERE (formname = ?) AND (trans_id = ?)|;
2951   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
2952
2953   # this only applies to the forms
2954   # checks and receipts are posted when printed or queued
2955
2956   if ($self->{queued}) {
2957     my %queued = split / /, $self->{queued};
2958
2959     foreach my $formname (keys %queued) {
2960       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2961       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2962
2963       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2964                   VALUES (?, ?, ?, ?, ?)|;
2965       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
2966
2967       $formnames  =~ s/\Q$self->{formname}\E//;
2968       $emailforms =~ s/\Q$self->{formname}\E//;
2969
2970     }
2971   }
2972
2973   # save printed, emailed info
2974   $formnames  =~ s/^ +//g;
2975   $emailforms =~ s/^ +//g;
2976
2977   my %status = ();
2978   map { $status{$_}{printed} = 1 } split / +/, $formnames;
2979   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
2980
2981   foreach my $formname (keys %status) {
2982     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
2983     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
2984
2985     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
2986                 VALUES (?, ?, ?, ?)|;
2987     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
2988   }
2989
2990   $main::lxdebug->leave_sub();
2991 }
2992
2993 #--- 4 locale ---#
2994 # $main::locale->text('SAVED')
2995 # $main::locale->text('DELETED')
2996 # $main::locale->text('ADDED')
2997 # $main::locale->text('PAYMENT POSTED')
2998 # $main::locale->text('POSTED')
2999 # $main::locale->text('POSTED AS NEW')
3000 # $main::locale->text('ELSE')
3001 # $main::locale->text('SAVED FOR DUNNING')
3002 # $main::locale->text('DUNNING STARTED')
3003 # $main::locale->text('PRINTED')
3004 # $main::locale->text('MAILED')
3005 # $main::locale->text('SCREENED')
3006 # $main::locale->text('CANCELED')
3007 # $main::locale->text('invoice')
3008 # $main::locale->text('proforma')
3009 # $main::locale->text('sales_order')
3010 # $main::locale->text('packing_list')
3011 # $main::locale->text('pick_list')
3012 # $main::locale->text('purchase_order')
3013 # $main::locale->text('bin_list')
3014 # $main::locale->text('sales_quotation')
3015 # $main::locale->text('request_quotation')
3016
3017 sub save_history {
3018   $main::lxdebug->enter_sub();
3019
3020   my $self = shift();
3021   my $dbh = shift();
3022
3023   if(!exists $self->{employee_id}) {
3024     &get_employee($self, $dbh);
3025   }
3026
3027   my $query =
3028    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
3029    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
3030   my @values = (conv_i($self->{id}), $self->{login},
3031                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
3032   do_query($self, $dbh, $query, @values);
3033
3034   $main::lxdebug->leave_sub();
3035 }
3036
3037 sub get_history {
3038   $main::lxdebug->enter_sub();
3039
3040   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
3041   my ($orderBy, $desc) = split(/\-\-/, $order);
3042   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
3043   my @tempArray;
3044   my $i = 0;
3045   if ($trans_id ne "") {
3046     my $query =
3047       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 | .
3048       qq|FROM history_erp h | .
3049       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
3050       qq|WHERE trans_id = | . $trans_id
3051       . $restriction . qq| |
3052       . $order;
3053       
3054     my $sth = $dbh->prepare($query) || $self->dberror($query);
3055
3056     $sth->execute() || $self->dberror("$query");
3057
3058     while(my $hash_ref = $sth->fetchrow_hashref()) {
3059       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
3060       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
3061       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
3062       $tempArray[$i++] = $hash_ref;
3063     }
3064     $main::lxdebug->leave_sub() and return \@tempArray 
3065       if ($i > 0 && $tempArray[0] ne "");
3066   }
3067   $main::lxdebug->leave_sub();
3068   return 0;
3069 }
3070
3071 sub update_defaults {
3072   $main::lxdebug->enter_sub();
3073
3074   my ($self, $myconfig, $fld, $provided_dbh) = @_;
3075
3076   my $dbh;
3077   if ($provided_dbh) {
3078     $dbh = $provided_dbh;
3079   } else {
3080     $dbh = $self->dbconnect_noauto($myconfig);
3081   }
3082   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
3083   my $sth   = $dbh->prepare($query);
3084
3085   $sth->execute || $self->dberror($query);
3086   my ($var) = $sth->fetchrow_array;
3087   $sth->finish;
3088
3089   if ($var =~ m/\d+$/) {
3090     my $new_var  = (substr $var, $-[0]) * 1 + 1;
3091     my $len_diff = length($var) - $-[0] - length($new_var);
3092     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3093
3094   } else {
3095     $var = $var . '1';
3096   }
3097
3098   $query = qq|UPDATE defaults SET $fld = ?|;
3099   do_query($self, $dbh, $query, $var);
3100
3101   if (!$provided_dbh) {
3102     $dbh->commit;
3103     $dbh->disconnect;
3104   }
3105
3106   $main::lxdebug->leave_sub();
3107
3108   return $var;
3109 }
3110
3111 sub update_business {
3112   $main::lxdebug->enter_sub();
3113
3114   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
3115
3116   my $dbh;
3117   if ($provided_dbh) {
3118     $dbh = $provided_dbh;
3119   } else {
3120     $dbh = $self->dbconnect_noauto($myconfig);
3121   }
3122   my $query =
3123     qq|SELECT customernumberinit FROM business
3124        WHERE id = ? FOR UPDATE|;
3125   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
3126
3127   if ($var =~ m/\d+$/) {
3128     my $new_var  = (substr $var, $-[0]) * 1 + 1;
3129     my $len_diff = length($var) - $-[0] - length($new_var);
3130     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3131
3132   } else {
3133     $var = $var . '1';
3134   }
3135
3136   $query = qq|UPDATE business
3137               SET customernumberinit = ?
3138               WHERE id = ?|;
3139   do_query($self, $dbh, $query, $var, $business_id);
3140
3141   if (!$provided_dbh) {
3142     $dbh->commit;
3143     $dbh->disconnect;
3144   }
3145
3146   $main::lxdebug->leave_sub();
3147
3148   return $var;
3149 }
3150
3151 sub get_partsgroup {
3152   $main::lxdebug->enter_sub();
3153
3154   my ($self, $myconfig, $p) = @_;
3155   my $target = $p->{target} || 'all_partsgroup';
3156
3157   my $dbh = $self->get_standard_dbh($myconfig);
3158
3159   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
3160                  FROM partsgroup pg
3161                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
3162   my @values;
3163
3164   if ($p->{searchitems} eq 'part') {
3165     $query .= qq|WHERE p.inventory_accno_id > 0|;
3166   }
3167   if ($p->{searchitems} eq 'service') {
3168     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
3169   }
3170   if ($p->{searchitems} eq 'assembly') {
3171     $query .= qq|WHERE p.assembly = '1'|;
3172   }
3173   if ($p->{searchitems} eq 'labor') {
3174     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
3175   }
3176
3177   $query .= qq|ORDER BY partsgroup|;
3178
3179   if ($p->{all}) {
3180     $query = qq|SELECT id, partsgroup FROM partsgroup
3181                 ORDER BY partsgroup|;
3182   }
3183
3184   if ($p->{language_code}) {
3185     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
3186                   t.description AS translation
3187                 FROM partsgroup pg
3188                 JOIN parts p ON (p.partsgroup_id = pg.id)
3189                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
3190                 ORDER BY translation|;
3191     @values = ($p->{language_code});
3192   }
3193
3194   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
3195
3196   $main::lxdebug->leave_sub();
3197 }
3198
3199 sub get_pricegroup {
3200   $main::lxdebug->enter_sub();
3201
3202   my ($self, $myconfig, $p) = @_;
3203
3204   my $dbh = $self->get_standard_dbh($myconfig);
3205
3206   my $query = qq|SELECT p.id, p.pricegroup
3207                  FROM pricegroup p|;
3208
3209   $query .= qq| ORDER BY pricegroup|;
3210
3211   if ($p->{all}) {
3212     $query = qq|SELECT id, pricegroup FROM pricegroup
3213                 ORDER BY pricegroup|;
3214   }
3215
3216   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
3217
3218   $main::lxdebug->leave_sub();
3219 }
3220
3221 sub all_years {
3222 # usage $form->all_years($myconfig, [$dbh])
3223 # return list of all years where bookings found
3224 # (@all_years)
3225
3226   $main::lxdebug->enter_sub();
3227
3228   my ($self, $myconfig, $dbh) = @_;
3229
3230   $dbh ||= $self->get_standard_dbh($myconfig);
3231
3232   # get years
3233   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
3234                    (SELECT MAX(transdate) FROM acc_trans)|;
3235   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
3236
3237   if ($myconfig->{dateformat} =~ /^yy/) {
3238     ($startdate) = split /\W/, $startdate;
3239     ($enddate) = split /\W/, $enddate;
3240   } else {
3241     (@_) = split /\W/, $startdate;
3242     $startdate = $_[2];
3243     (@_) = split /\W/, $enddate;
3244     $enddate = $_[2];
3245   }
3246
3247   my @all_years;
3248   $startdate = substr($startdate,0,4);
3249   $enddate = substr($enddate,0,4);
3250
3251   while ($enddate >= $startdate) {
3252     push @all_years, $enddate--;
3253   }
3254
3255   return @all_years;
3256
3257   $main::lxdebug->leave_sub();
3258 }
3259
3260 sub backup_vars {
3261   $main::lxdebug->enter_sub();
3262   my $self = shift;
3263   my @vars = @_;
3264
3265   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if $self->{$_} } @vars;
3266
3267   $main::lxdebug->leave_sub();
3268 }
3269
3270 sub restore_vars {
3271   $main::lxdebug->enter_sub();
3272
3273   my $self = shift;
3274   my @vars = @_;
3275
3276   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if $self->{_VAR_BACKUP}->{$_} } @vars;
3277
3278   $main::lxdebug->leave_sub();
3279 }
3280
3281 1;