Form: globals nicht mehr beim Drucken in Form ablegen
[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
40 use Carp;
41 use Data::Dumper;
42
43 use Carp;
44 use Config;
45 use CGI;
46 use Cwd;
47 use Encode;
48 use File::Copy;
49 use IO::File;
50 use Math::BigInt;
51 use SL::Auth;
52 use SL::Auth::DB;
53 use SL::Auth::LDAP;
54 use SL::AM;
55 use SL::Common;
56 use SL::CVar;
57 use SL::DB;
58 use SL::DBConnect;
59 use SL::DBUtils;
60 use SL::DB::Customer;
61 use SL::DB::Default;
62 use SL::DB::PaymentTerm;
63 use SL::DB::Vendor;
64 use SL::DO;
65 use SL::IC;
66 use SL::IS;
67 use SL::Layout::Dispatcher;
68 use SL::Locale;
69 use SL::Locale::String;
70 use SL::Mailer;
71 use SL::Menu;
72 use SL::MoreCommon qw(uri_encode uri_decode);
73 use SL::OE;
74 use SL::PrefixedNumber;
75 use SL::Request;
76 use SL::Template;
77 use SL::User;
78 use SL::Util;
79 use SL::X;
80 use Template;
81 use URI;
82 use List::Util qw(first max min sum);
83 use List::MoreUtils qw(all any apply);
84 use SL::DB::Tax;
85
86 use strict;
87
88 my $standard_dbh;
89
90 END {
91   disconnect_standard_dbh();
92 }
93
94 sub disconnect_standard_dbh {
95   return unless $standard_dbh;
96
97   $standard_dbh->rollback();
98   undef $standard_dbh;
99 }
100
101 sub read_version {
102   my ($self) = @_;
103
104   open VERSION_FILE, "VERSION";                 # New but flexible code reads version from VERSION-file
105   my $version =  <VERSION_FILE>;
106   $version    =~ s/[^0-9A-Za-z\.\_\-]//g; # only allow numbers, letters, points, underscores and dashes. Prevents injecting of malicious code.
107   close VERSION_FILE;
108
109   return $version;
110 }
111
112 sub new {
113   $main::lxdebug->enter_sub();
114
115   my $type = shift;
116
117   my $self = {};
118
119   no warnings 'once';
120   if ($LXDebug::watch_form) {
121     require SL::Watchdog;
122     tie %{ $self }, 'SL::Watchdog';
123   }
124
125   bless $self, $type;
126
127   $self->{version} = $self->read_version;
128
129   $main::lxdebug->leave_sub();
130
131   return $self;
132 }
133
134 sub read_cgi_input {
135   my ($self) = @_;
136   SL::Request::read_cgi_input($self);
137 }
138
139 sub _flatten_variables_rec {
140   $main::lxdebug->enter_sub(2);
141
142   my $self   = shift;
143   my $curr   = shift;
144   my $prefix = shift;
145   my $key    = shift;
146
147   my @result;
148
149   if ('' eq ref $curr->{$key}) {
150     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
151
152   } elsif ('HASH' eq ref $curr->{$key}) {
153     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
154       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
155     }
156
157   } else {
158     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
159       my $first_array_entry = 1;
160
161       my $element = $curr->{$key}[$idx];
162
163       if ('HASH' eq ref $element) {
164         foreach my $hash_key (sort keys %{ $element }) {
165           push @result, $self->_flatten_variables_rec($element, $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
166           $first_array_entry = 0;
167         }
168       } else {
169         @result = ({ 'key' => $prefix . $key . ($first_array_entry ? '[+]' : '[]'), 'value' => $element });
170       }
171     }
172   }
173
174   $main::lxdebug->leave_sub(2);
175
176   return @result;
177 }
178
179 sub flatten_variables {
180   $main::lxdebug->enter_sub(2);
181
182   my $self = shift;
183   my @keys = @_;
184
185   my @variables;
186
187   foreach (@keys) {
188     push @variables, $self->_flatten_variables_rec($self, '', $_);
189   }
190
191   $main::lxdebug->leave_sub(2);
192
193   return @variables;
194 }
195
196 sub flatten_standard_variables {
197   $main::lxdebug->enter_sub(2);
198
199   my $self      = shift;
200   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
201
202   my @variables;
203
204   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
205     push @variables, $self->_flatten_variables_rec($self, '', $_);
206   }
207
208   $main::lxdebug->leave_sub(2);
209
210   return @variables;
211 }
212
213 sub debug {
214   $main::lxdebug->enter_sub();
215
216   my ($self) = @_;
217
218   print "\n";
219
220   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
221
222   $main::lxdebug->leave_sub();
223 }
224
225 sub dumper {
226   $main::lxdebug->enter_sub(2);
227
228   my $self          = shift;
229   my $password      = $self->{password};
230
231   $self->{password} = 'X' x 8;
232
233   local $Data::Dumper::Sortkeys = 1;
234   my $output                    = Dumper($self);
235
236   $self->{password} = $password;
237
238   $main::lxdebug->leave_sub(2);
239
240   return $output;
241 }
242
243 sub escape {
244   my ($self, $str) = @_;
245
246   return uri_encode($str);
247 }
248
249 sub unescape {
250   my ($self, $str) = @_;
251
252   return uri_decode($str);
253 }
254
255 sub quote {
256   $main::lxdebug->enter_sub();
257   my ($self, $str) = @_;
258
259   if ($str && !ref($str)) {
260     $str =~ s/\"/&quot;/g;
261   }
262
263   $main::lxdebug->leave_sub();
264
265   return $str;
266 }
267
268 sub unquote {
269   $main::lxdebug->enter_sub();
270   my ($self, $str) = @_;
271
272   if ($str && !ref($str)) {
273     $str =~ s/&quot;/\"/g;
274   }
275
276   $main::lxdebug->leave_sub();
277
278   return $str;
279 }
280
281 sub hide_form {
282   $main::lxdebug->enter_sub();
283   my $self = shift;
284
285   if (@_) {
286     map({ print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
287   } else {
288     for (sort keys %$self) {
289       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
290       print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
291     }
292   }
293   $main::lxdebug->leave_sub();
294 }
295
296 sub throw_on_error {
297   my ($self, $code) = @_;
298   local $self->{__ERROR_HANDLER} = sub { die SL::X::FormError->new($_[0]) };
299   $code->();
300 }
301
302 sub error {
303   $main::lxdebug->enter_sub();
304
305   $main::lxdebug->show_backtrace();
306
307   my ($self, $msg) = @_;
308
309   if ($self->{__ERROR_HANDLER}) {
310     $self->{__ERROR_HANDLER}->($msg);
311
312   } elsif ($ENV{HTTP_USER_AGENT}) {
313     $msg =~ s/\n/<br>/g;
314     $self->show_generic_error($msg);
315
316   } else {
317     confess "Error: $msg\n";
318   }
319
320   $main::lxdebug->leave_sub();
321 }
322
323 sub info {
324   $main::lxdebug->enter_sub();
325
326   my ($self, $msg) = @_;
327
328   if ($ENV{HTTP_USER_AGENT}) {
329     $self->header;
330     print $self->parse_html_template('generic/form_info', { message => $msg });
331
332   } elsif ($self->{info_function}) {
333     &{ $self->{info_function} }($msg);
334   } else {
335     print "$msg\n";
336   }
337
338   $main::lxdebug->leave_sub();
339 }
340
341 # calculates the number of rows in a textarea based on the content and column number
342 # can be capped with maxrows
343 sub numtextrows {
344   $main::lxdebug->enter_sub();
345   my ($self, $str, $cols, $maxrows, $minrows) = @_;
346
347   $minrows ||= 1;
348
349   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
350   $maxrows ||= $rows;
351
352   $main::lxdebug->leave_sub();
353
354   return max(min($rows, $maxrows), $minrows);
355 }
356
357 sub dberror {
358   $main::lxdebug->enter_sub();
359
360   my ($self, $msg) = @_;
361
362   $self->error("$msg\n" . $DBI::errstr);
363
364   $main::lxdebug->leave_sub();
365 }
366
367 sub isblank {
368   $main::lxdebug->enter_sub();
369
370   my ($self, $name, $msg) = @_;
371
372   my $curr = $self;
373   foreach my $part (split m/\./, $name) {
374     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
375       $self->error($msg);
376     }
377     $curr = $curr->{$part};
378   }
379
380   $main::lxdebug->leave_sub();
381 }
382
383 sub _get_request_uri {
384   my $self = shift;
385
386   return URI->new($ENV{HTTP_REFERER})->canonical() if $ENV{HTTP_X_FORWARDED_FOR};
387   return URI->new                                  if !$ENV{REQUEST_URI}; # for testing
388
389   my $scheme =  $ENV{HTTPS} && (lc $ENV{HTTPS} eq 'on') ? 'https' : 'http';
390   my $port   =  $ENV{SERVER_PORT};
391   $port      =  undef if (($scheme eq 'http' ) && ($port == 80))
392                       || (($scheme eq 'https') && ($port == 443));
393
394   my $uri    =  URI->new("${scheme}://");
395   $uri->scheme($scheme);
396   $uri->port($port);
397   $uri->host($ENV{HTTP_HOST} || $ENV{SERVER_ADDR});
398   $uri->path_query($ENV{REQUEST_URI});
399   $uri->query('');
400
401   return $uri;
402 }
403
404 sub _add_to_request_uri {
405   my $self              = shift;
406
407   my $relative_new_path = shift;
408   my $request_uri       = shift || $self->_get_request_uri;
409   my $relative_new_uri  = URI->new($relative_new_path);
410   my @request_segments  = $request_uri->path_segments;
411
412   my $new_uri           = $request_uri->clone;
413   $new_uri->path_segments(@request_segments[0..scalar(@request_segments) - 2], $relative_new_uri->path_segments);
414
415   return $new_uri;
416 }
417
418 sub create_http_response {
419   $main::lxdebug->enter_sub();
420
421   my $self     = shift;
422   my %params   = @_;
423
424   my $cgi      = $::request->{cgi};
425
426   my $session_cookie;
427   if (defined $main::auth) {
428     my $uri      = $self->_get_request_uri;
429     my @segments = $uri->path_segments;
430     pop @segments;
431     $uri->path_segments(@segments);
432
433     my $session_cookie_value = $main::auth->get_session_id();
434
435     if ($session_cookie_value) {
436       $session_cookie = $cgi->cookie('-name'   => $main::auth->get_session_cookie_name(),
437                                      '-value'  => $session_cookie_value,
438                                      '-path'   => $uri->path,
439                                      '-secure' => $ENV{HTTPS});
440     }
441   }
442
443   my %cgi_params = ('-type' => $params{content_type});
444   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
445   $cgi_params{'-cookie'}  = $session_cookie  if ($session_cookie);
446
447   map { $cgi_params{'-' . $_} = $params{$_} if exists $params{$_} } qw(content_disposition content_length);
448
449   my $output = $cgi->header(%cgi_params);
450
451   $main::lxdebug->leave_sub();
452
453   return $output;
454 }
455
456 sub header {
457   $::lxdebug->enter_sub;
458
459   my ($self, %params) = @_;
460   my @header;
461
462   $::lxdebug->leave_sub and return if !$ENV{HTTP_USER_AGENT} || $self->{header}++;
463
464   if ($params{no_layout}) {
465     $::request->{layout} = SL::Layout::Dispatcher->new(style => 'none');
466   }
467
468   my $layout = $::request->{layout};
469
470   # standard css for all
471   # this should gradually move to the layouts that need it
472   $layout->use_stylesheet("$_.css") for qw(
473     common main menu list_accounts jquery.autocomplete
474     jquery.multiselect2side
475     ui-lightness/jquery-ui
476     jquery-ui.custom
477     tooltipster themes/tooltipster-light
478   );
479
480   $layout->use_javascript("$_.js") for (qw(
481     jquery jquery-ui jquery.cookie jquery.checkall jquery.download
482     jquery/jquery.form jquery/fixes client_js
483     jquery/jquery.tooltipster.min
484     common part_selection
485   ), "jquery/ui/i18n/jquery.ui.datepicker-$::myconfig{countrycode}");
486
487   $self->{favicon} ||= "favicon.ico";
488   $self->{titlebar} = join ' - ', grep $_, $self->{title}, $self->{login}, $::myconfig{dbname}, $self->{version} if $self->{title} || !$self->{titlebar};
489
490   # build includes
491   if ($self->{refresh_url} || $self->{refresh_time}) {
492     my $refresh_time = $self->{refresh_time} || 3;
493     my $refresh_url  = $self->{refresh_url}  || $ENV{REFERER};
494     push @header, "<meta http-equiv='refresh' content='$refresh_time;$refresh_url'>";
495   }
496
497   my $auto_reload_resources_param = $layout->auto_reload_resources_param;
498
499   push @header, map { qq|<link rel="stylesheet" href="${_}${auto_reload_resources_param}" type="text/css" title="Stylesheet">| } $layout->stylesheets;
500   push @header, "<style type='text/css'>\@page { size:landscape; }</style> "                     if $self->{landscape};
501   push @header, "<link rel='shortcut icon' href='$self->{favicon}' type='image/x-icon'>"         if -f $self->{favicon};
502   push @header, map { qq|<script type="text/javascript" src="${_}${auto_reload_resources_param}"></script>| }                    $layout->javascripts;
503   push @header, $self->{javascript} if $self->{javascript};
504   push @header, map { $_->show_javascript } @{ $self->{AJAX} || [] };
505
506   my  %doctypes = (
507     strict       => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">|,
508     transitional => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">|,
509     frameset     => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">|,
510     html5        => qq|<!DOCTYPE html>|,
511   );
512
513   # output
514   print $self->create_http_response(content_type => 'text/html', charset => 'UTF-8');
515   print $doctypes{$params{doctype} || 'transitional'}, $/;
516   print <<EOT;
517 <html>
518  <head>
519   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
520   <title>$self->{titlebar}</title>
521 EOT
522   print "  $_\n" for @header;
523   print <<EOT;
524   <meta name="robots" content="noindex,nofollow">
525  </head>
526  <body>
527
528 EOT
529   print $::request->{layout}->pre_content;
530   print $::request->{layout}->start_content;
531
532   $layout->header_done;
533
534   $::lxdebug->leave_sub;
535 }
536
537 sub footer {
538   return unless $::request->{layout}->need_footer;
539
540   print $::request->{layout}->end_content;
541   print $::request->{layout}->post_content;
542
543   if (my @inline_scripts = $::request->{layout}->javascripts_inline) {
544     print "<script type='text/javascript'>" . join("; ", @inline_scripts) . "</script>\n";
545   }
546
547   print <<EOL
548  </body>
549 </html>
550 EOL
551 }
552
553 sub ajax_response_header {
554   $main::lxdebug->enter_sub();
555
556   my ($self) = @_;
557
558   my $output = $::request->{cgi}->header('-charset' => 'UTF-8');
559
560   $main::lxdebug->leave_sub();
561
562   return $output;
563 }
564
565 sub redirect_header {
566   my $self     = shift;
567   my $new_url  = shift;
568
569   my $base_uri = $self->_get_request_uri;
570   my $new_uri  = URI->new_abs($new_url, $base_uri);
571
572   die "Headers already sent" if $self->{header};
573   $self->{header} = 1;
574
575   return $::request->{cgi}->redirect($new_uri);
576 }
577
578 sub set_standard_title {
579   $::lxdebug->enter_sub;
580   my $self = shift;
581
582   $self->{titlebar}  = "kivitendo " . $::locale->text('Version') . " $self->{version}";
583   $self->{titlebar} .= "- $::myconfig{name}"   if $::myconfig{name};
584   $self->{titlebar} .= "- $::myconfig{dbname}" if $::myconfig{name};
585
586   $::lxdebug->leave_sub;
587 }
588
589 sub _prepare_html_template {
590   $main::lxdebug->enter_sub();
591
592   my ($self, $file, $additional_params) = @_;
593   my $language;
594
595   if (!%::myconfig || !$::myconfig{"countrycode"}) {
596     $language = $::lx_office_conf{system}->{language};
597   } else {
598     $language = $main::myconfig{"countrycode"};
599   }
600   $language = "de" unless ($language);
601
602   if (-f "templates/webpages/${file}.html") {
603     $file = "templates/webpages/${file}.html";
604
605   } elsif (ref $file eq 'SCALAR') {
606     # file is a scalarref, use inline mode
607   } else {
608     my $info = "Web page template '${file}' not found.\n";
609     $::form->header;
610     print qq|<pre>$info</pre>|;
611     ::end_of_request();
612   }
613
614   $additional_params->{AUTH}          = $::auth;
615   $additional_params->{INSTANCE_CONF} = $::instance_conf;
616   $additional_params->{LOCALE}        = $::locale;
617   $additional_params->{LXCONFIG}      = \%::lx_office_conf;
618   $additional_params->{LXDEBUG}       = $::lxdebug;
619   $additional_params->{MYCONFIG}      = \%::myconfig;
620
621   $main::lxdebug->leave_sub();
622
623   return $file;
624 }
625
626 sub parse_html_template {
627   $main::lxdebug->enter_sub();
628
629   my ($self, $file, $additional_params) = @_;
630
631   $additional_params ||= { };
632
633   my $real_file = $self->_prepare_html_template($file, $additional_params);
634   my $template  = $self->template || $self->init_template;
635
636   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
637
638   my $output;
639   $template->process($real_file, $additional_params, \$output) || die $template->error;
640
641   $main::lxdebug->leave_sub();
642
643   return $output;
644 }
645
646 sub init_template {
647   my $self = shift;
648
649   return $self->template if $self->template;
650
651   # Force scripts/locales.pl to pick up the exception handling template.
652   # parse_html_template('generic/exception')
653   return $self->template(Template->new({
654      'INTERPOLATE'  => 0,
655      'EVAL_PERL'    => 0,
656      'ABSOLUTE'     => 1,
657      'CACHE_SIZE'   => 0,
658      'PLUGIN_BASE'  => 'SL::Template::Plugin',
659      'INCLUDE_PATH' => '.:templates/webpages',
660      'COMPILE_EXT'  => '.tcc',
661      'COMPILE_DIR'  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
662      'ERROR'        => 'templates/webpages/generic/exception.html',
663      'ENCODING'     => 'utf8',
664   })) || die;
665 }
666
667 sub template {
668   my $self = shift;
669   $self->{template_object} = shift if @_;
670   return $self->{template_object};
671 }
672
673 sub show_generic_error {
674   $main::lxdebug->enter_sub();
675
676   my ($self, $error, %params) = @_;
677
678   if ($self->{__ERROR_HANDLER}) {
679     $self->{__ERROR_HANDLER}->($error);
680     $main::lxdebug->leave_sub();
681     return;
682   }
683
684   if ($::request->is_ajax) {
685     SL::ClientJS->new
686       ->error($error)
687       ->render(SL::Controller::Base->new);
688     ::end_of_request();
689   }
690
691   my $add_params = {
692     'title_error' => $params{title},
693     'label_error' => $error,
694   };
695
696   if ($params{action}) {
697     my @vars;
698
699     map { delete($self->{$_}); } qw(action);
700     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
701
702     $add_params->{SHOW_BUTTON}  = 1;
703     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
704     $add_params->{VARIABLES}    = \@vars;
705
706   } elsif ($params{back_button}) {
707     $add_params->{SHOW_BACK_BUTTON} = 1;
708   }
709
710   $self->{title} = $params{title} if $params{title};
711
712   $self->header();
713   print $self->parse_html_template("generic/error", $add_params);
714
715   print STDERR "Error: $error\n";
716
717   $main::lxdebug->leave_sub();
718
719   ::end_of_request();
720 }
721
722 sub show_generic_information {
723   $main::lxdebug->enter_sub();
724
725   my ($self, $text, $title) = @_;
726
727   my $add_params = {
728     'title_information' => $title,
729     'label_information' => $text,
730   };
731
732   $self->{title} = $title if ($title);
733
734   $self->header();
735   print $self->parse_html_template("generic/information", $add_params);
736
737   $main::lxdebug->leave_sub();
738
739   ::end_of_request();
740 }
741
742 sub _store_redirect_info_in_session {
743   my ($self) = @_;
744
745   return unless $self->{callback} =~ m:^ ( [^\?/]+ \.pl ) \? (.+) :x;
746
747   my ($controller, $params) = ($1, $2);
748   my $form                  = { map { map { $self->unescape($_) } split /=/, $_, 2 } split m/\&/, $params };
749   $self->{callback}         = "${controller}?RESTORE_FORM_FROM_SESSION_ID=" . $::auth->save_form_in_session(form => $form);
750 }
751
752 sub redirect {
753   $main::lxdebug->enter_sub();
754
755   my ($self, $msg) = @_;
756
757   if (!$self->{callback}) {
758     $self->info($msg);
759
760   } else {
761     $self->_store_redirect_info_in_session;
762     print $::form->redirect_header($self->{callback});
763   }
764
765   ::end_of_request();
766
767   $main::lxdebug->leave_sub();
768 }
769
770 # sort of columns removed - empty sub
771 sub sort_columns {
772   $main::lxdebug->enter_sub();
773
774   my ($self, @columns) = @_;
775
776   $main::lxdebug->leave_sub();
777
778   return @columns;
779 }
780 #
781 sub format_amount {
782   $main::lxdebug->enter_sub(2);
783
784   my ($self, $myconfig, $amount, $places, $dash) = @_;
785   $amount ||= 0;
786   $dash   ||= '';
787   my $neg = $amount < 0;
788   my $force_places = defined $places && $places >= 0;
789
790   $amount = $self->round_amount($amount, abs $places) if $force_places;
791   $neg    = 0 if $amount == 0; # don't show negative zero
792   $amount = sprintf "%.*f", ($force_places ? $places : 10), abs $amount; # 6 is default for %fa
793
794   # before the sprintf amount was a number, afterwards it's a string. because of the dynamic nature of perl
795   # this is easy to confuse, so keep in mind: before this comment no s///, m//, concat or other strong ops on
796   # $amount. after this comment no +,-,*,/,abs. it will only introduce subtle bugs.
797
798   $amount =~ s/0*$// unless defined $places && $places == 0;             # cull trailing 0s
799
800   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
801   my @p = split(/\./, $amount);                                          # split amount at decimal point
802
803   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1];                             # add 1,000 delimiters
804   $amount = $p[0];
805   if ($places || $p[1]) {
806     $amount .= $d[0]
807             .  ( $p[1] || '' )
808             .  (0 x max(abs($places || 0) - length ($p[1]||''), 0));     # pad the fraction
809   }
810
811   $amount = do {
812     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
813     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
814                         ($neg ? "-$amount"                             : "$amount" )                              ;
815   };
816
817   $main::lxdebug->leave_sub(2);
818   return $amount;
819 }
820
821 sub format_amount_units {
822   $main::lxdebug->enter_sub();
823
824   my $self             = shift;
825   my %params           = @_;
826
827   my $myconfig         = \%main::myconfig;
828   my $amount           = $params{amount} * 1;
829   my $places           = $params{places};
830   my $part_unit_name   = $params{part_unit};
831   my $amount_unit_name = $params{amount_unit};
832   my $conv_units       = $params{conv_units};
833   my $max_places       = $params{max_places};
834
835   if (!$part_unit_name) {
836     $main::lxdebug->leave_sub();
837     return '';
838   }
839
840   my $all_units        = AM->retrieve_all_units;
841
842   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
843     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
844   }
845
846   if (!scalar @{ $conv_units }) {
847     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
848     $main::lxdebug->leave_sub();
849     return $result;
850   }
851
852   my $part_unit  = $all_units->{$part_unit_name};
853   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
854
855   $amount       *= $conv_unit->{factor};
856
857   my @values;
858   my $num;
859
860   foreach my $unit (@$conv_units) {
861     my $last = $unit->{name} eq $part_unit->{name};
862     if (!$last) {
863       $num     = int($amount / $unit->{factor});
864       $amount -= $num * $unit->{factor};
865     }
866
867     if ($last ? $amount : $num) {
868       push @values, { "unit"   => $unit->{name},
869                       "amount" => $last ? $amount / $unit->{factor} : $num,
870                       "places" => $last ? $places : 0 };
871     }
872
873     last if $last;
874   }
875
876   if (!@values) {
877     push @values, { "unit"   => $part_unit_name,
878                     "amount" => 0,
879                     "places" => 0 };
880   }
881
882   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
883
884   $main::lxdebug->leave_sub();
885
886   return $result;
887 }
888
889 sub format_string {
890   $main::lxdebug->enter_sub(2);
891
892   my $self  = shift;
893   my $input = shift;
894
895   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
896   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
897   $input =~ s/\#\#/\#/g;
898
899   $main::lxdebug->leave_sub(2);
900
901   return $input;
902 }
903
904 #
905
906 sub parse_amount {
907   $main::lxdebug->enter_sub(2);
908
909   my ($self, $myconfig, $amount) = @_;
910
911   if (!defined($amount) || ($amount eq '')) {
912     $main::lxdebug->leave_sub(2);
913     return 0;
914   }
915
916   if (   ($myconfig->{numberformat} eq '1.000,00')
917       || ($myconfig->{numberformat} eq '1000,00')) {
918     $amount =~ s/\.//g;
919     $amount =~ s/,/\./g;
920   }
921
922   if ($myconfig->{numberformat} eq "1'000.00") {
923     $amount =~ s/\'//g;
924   }
925
926   $amount =~ s/,//g;
927
928   $main::lxdebug->leave_sub(2);
929
930   # Make sure no code wich is not a math expression ends up in eval().
931   return 0 unless $amount =~ /^ [\s \d \( \) \- \+ \* \/ \. ]* $/x;
932
933   # Prevent numbers from being parsed as octals;
934   $amount =~ s{ (?<! [\d.] ) 0+ (?= [1-9] ) }{}gx;
935
936   return scalar(eval($amount)) * 1 ;
937 }
938
939 sub round_amount {
940   my ($self, $amount, $places, $adjust) = @_;
941
942   return 0 if !defined $amount;
943
944   $places //= 0;
945
946   if ($adjust) {
947     my $precision = $::instance_conf->get_precision || 0.01;
948     return $self->round_amount( $self->round_amount($amount / $precision, 0) * $precision, $places);
949   }
950
951   # We use Perl's knowledge of string representation for
952   # rounding. First, convert the floating point number to a string
953   # with a high number of places. Then split the string on the decimal
954   # sign and use integer calculation for rounding the decimal places
955   # part. If an overflow occurs then apply that overflow to the part
956   # before the decimal sign as well using integer arithmetic again.
957
958   my $int_amount = int(abs $amount);
959   my $str_places = max(min(10, 16 - length("$int_amount") - $places), $places);
960   my $amount_str = sprintf '%.*f', $places + $str_places, abs($amount);
961
962   return $amount unless $amount_str =~ m{^(\d+)\.(\d+)$};
963
964   my ($pre, $post)      = ($1, $2);
965   my $decimals          = '1' . substr($post, 0, $places);
966
967   my $propagation_limit = $Config{i32size} == 4 ? 7 : 18;
968   my $add_for_rounding  = substr($post, $places, 1) >= 5 ? 1 : 0;
969
970   if ($places > $propagation_limit) {
971     $decimals = Math::BigInt->new($decimals)->badd($add_for_rounding);
972     $pre      = Math::BigInt->new($decimals)->badd(1) if substr($decimals, 0, 1) eq '2';
973
974   } else {
975     $decimals += $add_for_rounding;
976     $pre      += 1 if substr($decimals, 0, 1) eq '2';
977   }
978
979   $amount  = ("${pre}." . substr($decimals, 1)) * ($amount <=> 0);
980
981   return $amount;
982 }
983
984 sub parse_template {
985   $main::lxdebug->enter_sub();
986
987   my ($self, $myconfig) = @_;
988   my ($out, $out_mode);
989
990   local (*IN, *OUT);
991
992   my $defaults  = SL::DB::Default->get;
993   my $userspath = $::lx_office_conf{paths}->{userspath};
994
995   $self->{"cwd"} = getcwd();
996   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
997
998   my $ext_for_format;
999
1000   my $template_type;
1001   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
1002     $template_type  = 'OpenDocument';
1003     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
1004
1005   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
1006     $template_type    = 'LaTeX';
1007     $ext_for_format   = 'pdf';
1008
1009   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
1010     $template_type  = 'HTML';
1011     $ext_for_format = 'html';
1012
1013   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
1014     $template_type  = 'XML';
1015     $ext_for_format = 'xml';
1016
1017   } elsif ( $self->{"format"} =~ /elster(?:winston|taxbird)/i ) {
1018     $template_type = 'XML';
1019
1020   } elsif ( $self->{"format"} =~ /excel/i ) {
1021     $template_type  = 'Excel';
1022     $ext_for_format = 'xls';
1023
1024   } elsif ( defined $self->{'format'}) {
1025     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
1026
1027   } elsif ( $self->{'format'} eq '' ) {
1028     $self->error("No Outputformat given: $self->{'format'}");
1029
1030   } else { #Catch the rest
1031     $self->error("Outputformat not defined: $self->{'format'}");
1032   }
1033
1034   my $template = SL::Template::create(type      => $template_type,
1035                                       file_name => $self->{IN},
1036                                       form      => $self,
1037                                       myconfig  => $myconfig,
1038                                       userspath => $userspath,
1039                                       %{ $self->{TEMPLATE_DRIVER_OPTIONS} || {} });
1040
1041   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
1042   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" } if exists $self->{ $self->{"formname"} . "notes" };
1043
1044   if (!$self->{employee_id}) {
1045     $self->{"employee_${_}"} = $myconfig->{$_} for qw(email tel fax name signature);
1046     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
1047   }
1048
1049   $self->{"myconfig_${_}"} = $myconfig->{$_} for grep { $_ ne 'dbpasswd' } keys %{ $myconfig };
1050   $self->{$_}              = $defaults->$_   for qw(co_ustid);
1051   $self->{"myconfig_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
1052   $self->{AUTH}            = $::auth;
1053   $self->{INSTANCE_CONF}   = $::instance_conf;
1054   $self->{LOCALE}          = $::locale;
1055   $self->{LXCONFIG}        = $::lx_office_conf;
1056   $self->{LXDEBUG}         = $::lxdebug;
1057   $self->{MYCONFIG}        = \%::myconfig;
1058
1059   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
1060
1061   # OUT is used for the media, screen, printer, email
1062   # for postscript we store a copy in a temporary file
1063   my ($temp_fh, $suffix);
1064   $suffix =  $self->{IN};
1065   $suffix =~ s/.*\.//;
1066   ($temp_fh, $self->{tmpfile}) = File::Temp::tempfile(
1067     'kivitendo-printXXXXXX',
1068     SUFFIX => '.' . ($suffix || 'tex'),
1069     DIR    => $userspath,
1070     UNLINK => ($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})? 0 : 1,
1071   );
1072   close $temp_fh;
1073   (undef, undef, $self->{template_meta}{tmpfile}) = File::Spec->splitpath( $self->{tmpfile} );
1074
1075   $out              = $self->{OUT};
1076   $out_mode         = $self->{OUT_MODE} || '>';
1077   $self->{OUT}      = "$self->{tmpfile}";
1078   $self->{OUT_MODE} = '>';
1079
1080   my $result;
1081   my $command_formatter = sub {
1082     my ($out_mode, $out) = @_;
1083     return $out_mode eq '|-' ? SL::Template::create(type => 'ShellCommand', form => $self)->parse($out) : $out;
1084   };
1085
1086   if ($self->{OUT}) {
1087     $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
1088     open(OUT, $self->{OUT_MODE}, $self->{OUT}) or $self->error("error on opening $self->{OUT} with mode $self->{OUT_MODE} : $!");
1089   } else {
1090     *OUT = ($::dispatcher->get_standard_filehandles)[1];
1091     $self->header;
1092   }
1093
1094   if (!$template->parse(*OUT)) {
1095     $self->cleanup();
1096     $self->error("$self->{IN} : " . $template->get_error());
1097   }
1098
1099   close OUT if $self->{OUT};
1100   # check only one flag (webdav_documents)
1101   # therefore copy to webdav, even if we do not have the webdav feature enabled (just archive)
1102   my $copy_to_webdav =  $::instance_conf->get_webdav_documents && !$self->{preview} && $self->{tmpdir} && $self->{tmpfile} && $self->{type};
1103
1104   if ($self->{media} eq 'file') {
1105     copy(join('/', $self->{cwd}, $userspath, $self->{tmpfile}), $out =~ m|^/| ? $out : join('/', $self->{cwd}, $out)) if $template->uses_temp_file;
1106     Common::copy_file_to_webdav_folder($self)                                                                         if $copy_to_webdav;
1107     $self->cleanup;
1108     chdir("$self->{cwd}");
1109
1110     $::lxdebug->leave_sub();
1111
1112     return;
1113   }
1114
1115   Common::copy_file_to_webdav_folder($self) if $copy_to_webdav;
1116
1117   if ($self->{media} eq 'email') {
1118
1119     my $mail = Mailer->new;
1120
1121     map { $mail->{$_} = $self->{$_} }
1122       qw(cc bcc subject message version format);
1123     $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
1124     $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1125     $mail->{fileid} = time() . '.' . $$ . '.';
1126     my $full_signature     =  $self->create_email_signature();
1127     $full_signature        =~ s/\r//g;
1128
1129     # if we send html or plain text inline
1130     if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
1131       $mail->{contenttype}    =  "text/html";
1132       $mail->{message}        =~ s/\r//g;
1133       $mail->{message}        =~ s/\n/<br>\n/g;
1134       $full_signature         =~ s/\n/<br>\n/g;
1135       $mail->{message}       .=  $full_signature;
1136
1137       open(IN, "<:encoding(UTF-8)", $self->{tmpfile})
1138         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1139       $mail->{message} .= $_ while <IN>;
1140       close(IN);
1141
1142     } else {
1143
1144       if (!$self->{"do_not_attach"}) {
1145         my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
1146         $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
1147         $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
1148                                    "name"     => $attachment_name }];
1149       }
1150
1151       $mail->{message} .= $full_signature;
1152     }
1153
1154     my $err = $mail->send();
1155     $self->error($self->cleanup . "$err") if ($err);
1156
1157   } else {
1158
1159     $self->{OUT}      = $out;
1160     $self->{OUT_MODE} = $out_mode;
1161
1162     my $numbytes = (-s $self->{tmpfile});
1163     open(IN, "<", $self->{tmpfile})
1164       or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1165     binmode IN;
1166
1167     $self->{copies} = 1 unless $self->{media} eq 'printer';
1168
1169     chdir("$self->{cwd}");
1170     #print(STDERR "Kopien $self->{copies}\n");
1171     #print(STDERR "OUT $self->{OUT}\n");
1172     for my $i (1 .. $self->{copies}) {
1173       if ($self->{OUT}) {
1174         $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
1175
1176         open  OUT, $self->{OUT_MODE}, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
1177         print OUT $_ while <IN>;
1178         close OUT;
1179         seek  IN, 0, 0;
1180
1181       } else {
1182         my %headers = ('-type'       => $template->get_mime_type,
1183                        '-connection' => 'close',
1184                        '-charset'    => 'UTF-8');
1185
1186         $self->{attachment_filename} ||= $self->generate_attachment_filename;
1187
1188         if ($self->{attachment_filename}) {
1189           %headers = (
1190             %headers,
1191             '-attachment'     => $self->{attachment_filename},
1192             '-content-length' => $numbytes,
1193             '-charset'        => '',
1194           );
1195         }
1196
1197         print $::request->cgi->header(%headers);
1198
1199         $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
1200       }
1201     }
1202
1203     close(IN);
1204   }
1205
1206   $self->cleanup;
1207
1208   chdir("$self->{cwd}");
1209   $main::lxdebug->leave_sub();
1210 }
1211
1212 sub get_formname_translation {
1213   $main::lxdebug->enter_sub();
1214   my ($self, $formname) = @_;
1215
1216   $formname ||= $self->{formname};
1217
1218   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
1219   local $::locale = Locale->new($self->{recipient_locale});
1220
1221   my %formname_translations = (
1222     bin_list                => $main::locale->text('Bin List'),
1223     credit_note             => $main::locale->text('Credit Note'),
1224     invoice                 => $main::locale->text('Invoice'),
1225     pick_list               => $main::locale->text('Pick List'),
1226     proforma                => $main::locale->text('Proforma Invoice'),
1227     purchase_order          => $main::locale->text('Purchase Order'),
1228     request_quotation       => $main::locale->text('RFQ'),
1229     sales_order             => $main::locale->text('Confirmation'),
1230     sales_quotation         => $main::locale->text('Quotation'),
1231     storno_invoice          => $main::locale->text('Storno Invoice'),
1232     sales_delivery_order    => $main::locale->text('Delivery Order'),
1233     purchase_delivery_order => $main::locale->text('Delivery Order'),
1234     dunning                 => $main::locale->text('Dunning'),
1235     letter                  => $main::locale->text('Letter')
1236   );
1237
1238   $main::lxdebug->leave_sub();
1239   return $formname_translations{$formname};
1240 }
1241
1242 sub get_number_prefix_for_type {
1243   $main::lxdebug->enter_sub();
1244   my ($self) = @_;
1245
1246   my $prefix =
1247       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
1248     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
1249     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
1250     : ($self->{type} =~ /letter/)                             ? 'letter'
1251     :                                                           'ord';
1252
1253   # better default like this?
1254   # : ($self->{type} =~ /(sales|purcharse)_order/           :  'ord';
1255   # :                                                           'prefix_undefined';
1256
1257   $main::lxdebug->leave_sub();
1258   return $prefix;
1259 }
1260
1261 sub get_extension_for_format {
1262   $main::lxdebug->enter_sub();
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} =~ /excel/i        ? ".xls"
1269                 : $self->{format} =~ /html/i         ? ".html"
1270                 :                                      "";
1271
1272   $main::lxdebug->leave_sub();
1273   return $extension;
1274 }
1275
1276 sub generate_attachment_filename {
1277   $main::lxdebug->enter_sub();
1278   my ($self) = @_;
1279
1280   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
1281   my $recipient_locale = Locale->new($self->{recipient_locale});
1282
1283   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1284   my $prefix              = $self->get_number_prefix_for_type();
1285
1286   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
1287     $attachment_filename .= ' (' . $recipient_locale->text('Preview') . ')' . $self->get_extension_for_format();
1288
1289   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
1290     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
1291
1292   } elsif ($attachment_filename) {
1293     $attachment_filename .=  $self->get_extension_for_format();
1294
1295   } else {
1296     $attachment_filename = "";
1297   }
1298
1299   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
1300   $attachment_filename =~ s|[\s/\\]+|_|g;
1301
1302   $main::lxdebug->leave_sub();
1303   return $attachment_filename;
1304 }
1305
1306 sub generate_email_subject {
1307   $main::lxdebug->enter_sub();
1308   my ($self) = @_;
1309
1310   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1311   my $prefix  = $self->get_number_prefix_for_type();
1312
1313   if ($subject && $self->{"${prefix}number"}) {
1314     $subject .= " " . $self->{"${prefix}number"}
1315   }
1316
1317   $main::lxdebug->leave_sub();
1318   return $subject;
1319 }
1320
1321 sub cleanup {
1322   $main::lxdebug->enter_sub();
1323
1324   my ($self, $application) = @_;
1325
1326   my $error_code = $?;
1327
1328   chdir("$self->{tmpdir}");
1329
1330   my @err = ();
1331   if ((-1 == $error_code) || (127 == (($error_code) >> 8))) {
1332     push @err, $::locale->text('The application "#1" was not found on the system.', $application || 'pdflatex') . ' ' . $::locale->text('Please contact your administrator.');
1333
1334   } elsif (-f "$self->{tmpfile}.err") {
1335     open(FH, "<:encoding(UTF-8)", "$self->{tmpfile}.err");
1336     @err = <FH>;
1337     close(FH);
1338   }
1339
1340   if ($self->{tmpfile} && !($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})) {
1341     $self->{tmpfile} =~ s|.*/||g;
1342     # strip extension
1343     $self->{tmpfile} =~ s/\.\w+$//g;
1344     my $tmpfile = $self->{tmpfile};
1345     unlink(<$tmpfile.*>);
1346   }
1347
1348   chdir("$self->{cwd}");
1349
1350   $main::lxdebug->leave_sub();
1351
1352   return "@err";
1353 }
1354
1355 sub datetonum {
1356   $main::lxdebug->enter_sub();
1357
1358   my ($self, $date, $myconfig) = @_;
1359   my ($yy, $mm, $dd);
1360
1361   if ($date && $date =~ /\D/) {
1362
1363     if ($myconfig->{dateformat} =~ /^yy/) {
1364       ($yy, $mm, $dd) = split /\D/, $date;
1365     }
1366     if ($myconfig->{dateformat} =~ /^mm/) {
1367       ($mm, $dd, $yy) = split /\D/, $date;
1368     }
1369     if ($myconfig->{dateformat} =~ /^dd/) {
1370       ($dd, $mm, $yy) = split /\D/, $date;
1371     }
1372
1373     $dd *= 1;
1374     $mm *= 1;
1375     $yy = ($yy < 70) ? $yy + 2000 : $yy;
1376     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1377
1378     $dd = "0$dd" if ($dd < 10);
1379     $mm = "0$mm" if ($mm < 10);
1380
1381     $date = "$yy$mm$dd";
1382   }
1383
1384   $main::lxdebug->leave_sub();
1385
1386   return $date;
1387 }
1388
1389 # Database routines used throughout
1390
1391 sub dbconnect {
1392   $main::lxdebug->enter_sub(2);
1393
1394   my ($self, $myconfig) = @_;
1395
1396   # connect to database
1397   my $dbh = SL::DBConnect->connect or $self->dberror;
1398
1399   # set db options
1400   if ($myconfig->{dboptions}) {
1401     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1402   }
1403
1404   $main::lxdebug->leave_sub(2);
1405
1406   return $dbh;
1407 }
1408
1409 sub dbconnect_noauto {
1410   $main::lxdebug->enter_sub();
1411
1412   my ($self, $myconfig) = @_;
1413
1414   # connect to database
1415   my $dbh = SL::DBConnect->connect(SL::DBConnect->get_connect_args(AutoCommit => 0)) or $self->dberror;
1416
1417   # set db options
1418   if ($myconfig->{dboptions}) {
1419     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1420   }
1421
1422   $main::lxdebug->leave_sub();
1423
1424   return $dbh;
1425 }
1426
1427 sub get_standard_dbh {
1428   $main::lxdebug->enter_sub(2);
1429
1430   my $self     = shift;
1431   my $myconfig = shift || \%::myconfig;
1432
1433   if ($standard_dbh && !$standard_dbh->{Active}) {
1434     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
1435     undef $standard_dbh;
1436   }
1437
1438   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
1439
1440   $main::lxdebug->leave_sub(2);
1441
1442   return $standard_dbh;
1443 }
1444
1445 sub set_standard_dbh {
1446   my ($self, $dbh) = @_;
1447   my $old_dbh      = $standard_dbh;
1448   $standard_dbh    = $dbh;
1449
1450   return $old_dbh;
1451 }
1452
1453 sub date_closed {
1454   $main::lxdebug->enter_sub();
1455
1456   my ($self, $date, $myconfig) = @_;
1457   my $dbh = $self->get_standard_dbh;
1458
1459   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
1460   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
1461
1462   # Falls $date = '' - Fehlermeldung aus der Datenbank. Ich denke,
1463   # es ist sicher ein conv_date vorher IMMER auszuführen.
1464   # Testfälle ohne definiertes closedto:
1465   #   Leere Datumseingabe i.O.
1466   #     SELECT 1 FROM defaults WHERE '' < closedto
1467   #   normale Zahlungsbuchung Ã¼ber Rechnungsmaske i.O.
1468   #     SELECT 1 FROM defaults WHERE '10.05.2011' < closedto
1469   # Testfälle mit definiertem closedto (30.04.2011):
1470   #  Leere Datumseingabe i.O.
1471   #   SELECT 1 FROM defaults WHERE '' < closedto
1472   # normale Buchung im geschloßenem Zeitraum i.O.
1473   #   SELECT 1 FROM defaults WHERE '21.04.2011' < closedto
1474   #     Fehlermeldung: Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!
1475   # normale Buchung in aktiver Buchungsperiode i.O.
1476   #   SELECT 1 FROM defaults WHERE '01.05.2011' < closedto
1477
1478   my ($closed) = $sth->fetchrow_array;
1479
1480   $main::lxdebug->leave_sub();
1481
1482   return $closed;
1483 }
1484
1485 # prevents bookings to the to far away future
1486 sub date_max_future {
1487   $main::lxdebug->enter_sub();
1488
1489   my ($self, $date, $myconfig) = @_;
1490   my $dbh = $self->get_standard_dbh;
1491
1492   my $query = "SELECT 1 FROM defaults WHERE ? - current_date > max_future_booking_interval";
1493   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
1494
1495   my ($max_future_booking_interval) = $sth->fetchrow_array;
1496
1497   $main::lxdebug->leave_sub();
1498
1499   return $max_future_booking_interval;
1500 }
1501
1502
1503 sub update_balance {
1504   $main::lxdebug->enter_sub();
1505
1506   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1507
1508   # if we have a value, go do it
1509   if ($value != 0) {
1510
1511     # retrieve balance from table
1512     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1513     my $sth = prepare_execute_query($self, $dbh, $query, @values);
1514     my ($balance) = $sth->fetchrow_array;
1515     $sth->finish;
1516
1517     $balance += $value;
1518
1519     # update balance
1520     $query = "UPDATE $table SET $field = $balance WHERE $where";
1521     do_query($self, $dbh, $query, @values);
1522   }
1523   $main::lxdebug->leave_sub();
1524 }
1525
1526 sub update_exchangerate {
1527   $main::lxdebug->enter_sub();
1528
1529   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1530   my ($query);
1531   # some sanity check for currency
1532   if ($curr eq '') {
1533     $main::lxdebug->leave_sub();
1534     return;
1535   }
1536   $query = qq|SELECT name AS curr FROM currencies WHERE id=(SELECT currency_id FROM defaults)|;
1537
1538   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
1539
1540   if ($curr eq $defaultcurrency) {
1541     $main::lxdebug->leave_sub();
1542     return;
1543   }
1544
1545   $query = qq|SELECT e.currency_id FROM exchangerate e
1546                  WHERE e.currency_id = (SELECT cu.id FROM currencies cu WHERE cu.name=?) AND e.transdate = ?
1547                  FOR UPDATE|;
1548   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1549
1550   if ($buy == 0) {
1551     $buy = "";
1552   }
1553   if ($sell == 0) {
1554     $sell = "";
1555   }
1556
1557   $buy = conv_i($buy, "NULL");
1558   $sell = conv_i($sell, "NULL");
1559
1560   my $set;
1561   if ($buy != 0 && $sell != 0) {
1562     $set = "buy = $buy, sell = $sell";
1563   } elsif ($buy != 0) {
1564     $set = "buy = $buy";
1565   } elsif ($sell != 0) {
1566     $set = "sell = $sell";
1567   }
1568
1569   if ($sth->fetchrow_array) {
1570     $query = qq|UPDATE exchangerate
1571                 SET $set
1572                 WHERE currency_id = (SELECT id FROM currencies WHERE name = ?)
1573                 AND transdate = ?|;
1574
1575   } else {
1576     $query = qq|INSERT INTO exchangerate (currency_id, buy, sell, transdate)
1577                 VALUES ((SELECT id FROM currencies WHERE name = ?), $buy, $sell, ?)|;
1578   }
1579   $sth->finish;
1580   do_query($self, $dbh, $query, $curr, $transdate);
1581
1582   $main::lxdebug->leave_sub();
1583 }
1584
1585 sub save_exchangerate {
1586   $main::lxdebug->enter_sub();
1587
1588   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1589
1590   my $dbh = $self->dbconnect($myconfig);
1591
1592   my ($buy, $sell);
1593
1594   $buy  = $rate if $fld eq 'buy';
1595   $sell = $rate if $fld eq 'sell';
1596
1597
1598   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1599
1600
1601   $dbh->disconnect;
1602
1603   $main::lxdebug->leave_sub();
1604 }
1605
1606 sub get_exchangerate {
1607   $main::lxdebug->enter_sub();
1608
1609   my ($self, $dbh, $curr, $transdate, $fld) = @_;
1610   my ($query);
1611
1612   unless ($transdate && $curr) {
1613     $main::lxdebug->leave_sub();
1614     return 1;
1615   }
1616
1617   $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
1618
1619   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
1620
1621   if ($curr eq $defaultcurrency) {
1622     $main::lxdebug->leave_sub();
1623     return 1;
1624   }
1625
1626   $query = qq|SELECT e.$fld FROM exchangerate e
1627                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
1628   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1629
1630
1631
1632   $main::lxdebug->leave_sub();
1633
1634   return $exchangerate;
1635 }
1636
1637 sub check_exchangerate {
1638   $main::lxdebug->enter_sub();
1639
1640   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1641
1642   if ($fld !~/^buy|sell$/) {
1643     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
1644   }
1645
1646   unless ($transdate) {
1647     $main::lxdebug->leave_sub();
1648     return "";
1649   }
1650
1651   my ($defaultcurrency) = $self->get_default_currency($myconfig);
1652
1653   if ($currency eq $defaultcurrency) {
1654     $main::lxdebug->leave_sub();
1655     return 1;
1656   }
1657
1658   my $dbh   = $self->get_standard_dbh($myconfig);
1659   my $query = qq|SELECT e.$fld FROM exchangerate e
1660                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
1661
1662   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1663
1664   $main::lxdebug->leave_sub();
1665
1666   return $exchangerate;
1667 }
1668
1669 sub get_all_currencies {
1670   $main::lxdebug->enter_sub();
1671
1672   my $self     = shift;
1673   my $myconfig = shift || \%::myconfig;
1674   my $dbh      = $self->get_standard_dbh($myconfig);
1675
1676   my $query = qq|SELECT name FROM currencies|;
1677   my @currencies = map { $_->{name} } selectall_hashref_query($self, $dbh, $query);
1678
1679   $main::lxdebug->leave_sub();
1680
1681   return @currencies;
1682 }
1683
1684 sub get_default_currency {
1685   $main::lxdebug->enter_sub();
1686
1687   my ($self, $myconfig) = @_;
1688   my $dbh      = $self->get_standard_dbh($myconfig);
1689   my $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
1690
1691   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
1692
1693   $main::lxdebug->leave_sub();
1694
1695   return $defaultcurrency;
1696 }
1697
1698 sub set_payment_options {
1699   my ($self, $myconfig, $transdate) = @_;
1700
1701   my $terms = $self->{payment_id} ? SL::DB::PaymentTerm->new(id => $self->{payment_id})->load : undef;
1702   return if !$terms;
1703
1704   $transdate                  ||= $self->{invdate} || $self->{transdate};
1705   my $due_date                  = $self->{duedate} || $self->{reqdate};
1706
1707   $self->{$_}                   = $terms->$_ for qw(terms_netto terms_skonto percent_skonto);
1708   $self->{payment_terms}        = $terms->description_long;
1709   $self->{payment_description}  = $terms->description;
1710   $self->{netto_date}           = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'net')->to_kivitendo;
1711   $self->{skonto_date}          = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'discount')->to_kivitendo;
1712
1713   my ($invtotal, $total);
1714   my (%amounts, %formatted_amounts);
1715
1716   if ($self->{type} =~ /_order$/) {
1717     $amounts{invtotal} = $self->{ordtotal};
1718     $amounts{total}    = $self->{ordtotal};
1719
1720   } elsif ($self->{type} =~ /_quotation$/) {
1721     $amounts{invtotal} = $self->{quototal};
1722     $amounts{total}    = $self->{quototal};
1723
1724   } else {
1725     $amounts{invtotal} = $self->{invtotal};
1726     $amounts{total}    = $self->{total};
1727   }
1728   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
1729
1730   $amounts{skonto_in_percent}  = 100.0 * $self->{percent_skonto};
1731   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
1732   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
1733   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
1734
1735   foreach (keys %amounts) {
1736     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
1737     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
1738   }
1739
1740   if ($self->{"language_id"}) {
1741     my $dbh   = $self->get_standard_dbh($myconfig);
1742     my $query =
1743       qq|SELECT t.translation, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1744       qq|FROM generic_translations t | .
1745       qq|LEFT JOIN language l ON t.language_id = l.id | .
1746       qq|WHERE (t.language_id = ?)
1747            AND (t.translation_id = ?)
1748            AND (t.translation_type = 'SL::DB::PaymentTerm/description_long')|;
1749     my ($description_long, $output_numberformat, $output_dateformat,
1750       $output_longdates) =
1751       selectrow_query($self, $dbh, $query,
1752                       $self->{"language_id"}, $self->{"payment_id"});
1753
1754     $self->{payment_terms} = $description_long if ($description_long);
1755
1756     if ($output_dateformat) {
1757       foreach my $key (qw(netto_date skonto_date)) {
1758         $self->{$key} =
1759           $main::locale->reformat_date($myconfig, $self->{$key},
1760                                        $output_dateformat,
1761                                        $output_longdates);
1762       }
1763     }
1764
1765     if ($output_numberformat &&
1766         ($output_numberformat ne $myconfig->{"numberformat"})) {
1767       my $saved_numberformat = $myconfig->{"numberformat"};
1768       $myconfig->{"numberformat"} = $output_numberformat;
1769       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
1770       $myconfig->{"numberformat"} = $saved_numberformat;
1771     }
1772   }
1773
1774   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1775   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1776   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1777   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1778   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1779   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1780   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1781   $self->{payment_terms} =~ s/<\%bic\%>/$self->{bic}/g;
1782   $self->{payment_terms} =~ s/<\%iban\%>/$self->{iban}/g;
1783   $self->{payment_terms} =~ s/<\%mandate_date_of_signature\%>/$self->{mandate_date_of_signature}/g;
1784   $self->{payment_terms} =~ s/<\%mandator_id\%>/$self->{mandator_id}/g;
1785
1786   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
1787
1788   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
1789
1790 }
1791
1792 sub get_template_language {
1793   $main::lxdebug->enter_sub();
1794
1795   my ($self, $myconfig) = @_;
1796
1797   my $template_code = "";
1798
1799   if ($self->{language_id}) {
1800     my $dbh = $self->get_standard_dbh($myconfig);
1801     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1802     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1803   }
1804
1805   $main::lxdebug->leave_sub();
1806
1807   return $template_code;
1808 }
1809
1810 sub get_printer_code {
1811   $main::lxdebug->enter_sub();
1812
1813   my ($self, $myconfig) = @_;
1814
1815   my $template_code = "";
1816
1817   if ($self->{printer_id}) {
1818     my $dbh = $self->get_standard_dbh($myconfig);
1819     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1820     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1821   }
1822
1823   $main::lxdebug->leave_sub();
1824
1825   return $template_code;
1826 }
1827
1828 sub get_shipto {
1829   $main::lxdebug->enter_sub();
1830
1831   my ($self, $myconfig) = @_;
1832
1833   my $template_code = "";
1834
1835   if ($self->{shipto_id}) {
1836     my $dbh = $self->get_standard_dbh($myconfig);
1837     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1838     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1839     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1840
1841     my $cvars = CVar->get_custom_variables(
1842       dbh      => $dbh,
1843       module   => 'ShipTo',
1844       trans_id => $self->{shipto_id},
1845     );
1846     $self->{"shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars };
1847   }
1848
1849   $main::lxdebug->leave_sub();
1850 }
1851
1852 sub add_shipto {
1853   my ($self, $dbh, $id, $module) = @_;
1854
1855   my $shipto;
1856   my @values;
1857
1858   foreach my $item (qw(name department_1 department_2 street zipcode city country gln
1859                        contact cp_gender phone fax email)) {
1860     if ($self->{"shipto$item"}) {
1861       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1862     }
1863     push(@values, $self->{"shipto${item}"});
1864   }
1865
1866   return if !$shipto;
1867
1868   my $shipto_id = $self->{shipto_id};
1869
1870   if ($self->{shipto_id}) {
1871     my $query = qq|UPDATE shipto set
1872                      shiptoname = ?,
1873                      shiptodepartment_1 = ?,
1874                      shiptodepartment_2 = ?,
1875                      shiptostreet = ?,
1876                      shiptozipcode = ?,
1877                      shiptocity = ?,
1878                      shiptocountry = ?,
1879                      shiptogln = ?,
1880                      shiptocontact = ?,
1881                      shiptocp_gender = ?,
1882                      shiptophone = ?,
1883                      shiptofax = ?,
1884                      shiptoemail = ?
1885                    WHERE shipto_id = ?|;
1886     do_query($self, $dbh, $query, @values, $self->{shipto_id});
1887   } else {
1888     my $query = qq|SELECT * FROM shipto
1889                    WHERE shiptoname = ? AND
1890                      shiptodepartment_1 = ? AND
1891                      shiptodepartment_2 = ? AND
1892                      shiptostreet = ? AND
1893                      shiptozipcode = ? AND
1894                      shiptocity = ? AND
1895                      shiptocountry = ? AND
1896                      shiptogln = ? AND
1897                      shiptocontact = ? AND
1898                      shiptocp_gender = ? AND
1899                      shiptophone = ? AND
1900                      shiptofax = ? AND
1901                      shiptoemail = ? AND
1902                      module = ? AND
1903                      trans_id = ?|;
1904     my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
1905     if(!$insert_check){
1906       my $insert_query =
1907         qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
1908                                shiptostreet, shiptozipcode, shiptocity, shiptocountry, shiptogln,
1909                                shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
1910            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1911       do_query($self, $dbh, $insert_query, $id, @values, $module);
1912
1913       $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
1914     }
1915
1916     $shipto_id = $insert_check->{shipto_id};
1917   }
1918
1919   return unless $shipto_id;
1920
1921   CVar->save_custom_variables(
1922     dbh         => $dbh,
1923     module      => 'ShipTo',
1924     trans_id    => $shipto_id,
1925     variables   => $self,
1926     name_prefix => 'shipto',
1927   );
1928 }
1929
1930 sub get_employee {
1931   $main::lxdebug->enter_sub();
1932
1933   my ($self, $dbh) = @_;
1934
1935   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
1936
1937   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
1938   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
1939   $self->{"employee_id"} *= 1;
1940
1941   $main::lxdebug->leave_sub();
1942 }
1943
1944 sub get_employee_data {
1945   $main::lxdebug->enter_sub();
1946
1947   my $self     = shift;
1948   my %params   = @_;
1949   my $defaults = SL::DB::Default->get;
1950
1951   Common::check_params(\%params, qw(prefix));
1952   Common::check_params_x(\%params, qw(id));
1953
1954   if (!$params{id}) {
1955     $main::lxdebug->leave_sub();
1956     return;
1957   }
1958
1959   my $myconfig = \%main::myconfig;
1960   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
1961
1962   my ($login, $deleted)  = selectrow_query($self, $dbh, qq|SELECT login,deleted FROM employee WHERE id = ?|, conv_i($params{id}));
1963
1964   if ($login) {
1965     # login already fetched and still the same client (mandant) | same for both cases (delete|!delete)
1966     $self->{$params{prefix} . '_login'}   = $login;
1967     $self->{$params{prefix} . "_${_}"}    = $defaults->$_ for qw(address businessnumber co_ustid company duns taxnumber);
1968
1969     if (!$deleted) {
1970       # get employee data from auth.user_config
1971       my $user = User->new(login => $login);
1972       $self->{$params{prefix} . "_${_}"} = $user->{$_} for qw(email fax name signature tel);
1973     } else {
1974       # get saved employee data from employee
1975       my $employee = SL::DB::Manager::Employee->find_by(id => conv_i($params{id}));
1976       $self->{$params{prefix} . "_${_}"} = $employee->{"deleted_$_"} for qw(email fax signature tel);
1977       $self->{$params{prefix} . "_name"} = $employee->name;
1978     }
1979  }
1980   $main::lxdebug->leave_sub();
1981 }
1982
1983 sub _get_contacts {
1984   $main::lxdebug->enter_sub();
1985
1986   my ($self, $dbh, $id, $key) = @_;
1987
1988   $key = "all_contacts" unless ($key);
1989
1990   if (!$id) {
1991     $self->{$key} = [];
1992     $main::lxdebug->leave_sub();
1993     return;
1994   }
1995
1996   my $query =
1997     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
1998     qq|FROM contacts | .
1999     qq|WHERE cp_cv_id = ? | .
2000     qq|ORDER BY lower(cp_name)|;
2001
2002   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
2003
2004   $main::lxdebug->leave_sub();
2005 }
2006
2007 sub _get_projects {
2008   $main::lxdebug->enter_sub();
2009
2010   my ($self, $dbh, $key) = @_;
2011
2012   my ($all, $old_id, $where, @values);
2013
2014   if (ref($key) eq "HASH") {
2015     my $params = $key;
2016
2017     $key = "ALL_PROJECTS";
2018
2019     foreach my $p (keys(%{$params})) {
2020       if ($p eq "all") {
2021         $all = $params->{$p};
2022       } elsif ($p eq "old_id") {
2023         $old_id = $params->{$p};
2024       } elsif ($p eq "key") {
2025         $key = $params->{$p};
2026       }
2027     }
2028   }
2029
2030   if (!$all) {
2031     $where = "WHERE active ";
2032     if ($old_id) {
2033       if (ref($old_id) eq "ARRAY") {
2034         my @ids = grep({ $_ } @{$old_id});
2035         if (@ids) {
2036           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
2037           push(@values, @ids);
2038         }
2039       } else {
2040         $where .= " OR (id = ?) ";
2041         push(@values, $old_id);
2042       }
2043     }
2044   }
2045
2046   my $query =
2047     qq|SELECT id, projectnumber, description, active | .
2048     qq|FROM project | .
2049     $where .
2050     qq|ORDER BY lower(projectnumber)|;
2051
2052   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
2053
2054   $main::lxdebug->leave_sub();
2055 }
2056
2057 sub _get_shipto {
2058   $main::lxdebug->enter_sub();
2059
2060   my ($self, $dbh, $vc_id, $key) = @_;
2061
2062   $key = "all_shipto" unless ($key);
2063
2064   if ($vc_id) {
2065     # get shipping addresses
2066     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
2067
2068     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
2069
2070   } else {
2071     $self->{$key} = [];
2072   }
2073
2074   $main::lxdebug->leave_sub();
2075 }
2076
2077 sub _get_printers {
2078   $main::lxdebug->enter_sub();
2079
2080   my ($self, $dbh, $key) = @_;
2081
2082   $key = "all_printers" unless ($key);
2083
2084   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
2085
2086   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2087
2088   $main::lxdebug->leave_sub();
2089 }
2090
2091 sub _get_charts {
2092   $main::lxdebug->enter_sub();
2093
2094   my ($self, $dbh, $params) = @_;
2095   my ($key);
2096
2097   $key = $params->{key};
2098   $key = "all_charts" unless ($key);
2099
2100   my $transdate = quote_db_date($params->{transdate});
2101
2102   my $query =
2103     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
2104     qq|FROM chart c | .
2105     qq|LEFT JOIN taxkeys tk ON | .
2106     qq|(tk.id = (SELECT id FROM taxkeys | .
2107     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
2108     qq|          ORDER BY startdate DESC LIMIT 1)) | .
2109     qq|ORDER BY c.accno|;
2110
2111   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2112
2113   $main::lxdebug->leave_sub();
2114 }
2115
2116 sub _get_taxcharts {
2117   $main::lxdebug->enter_sub();
2118
2119   my ($self, $dbh, $params) = @_;
2120
2121   my $key = "all_taxcharts";
2122   my @where;
2123
2124   if (ref $params eq 'HASH') {
2125     $key = $params->{key} if ($params->{key});
2126     if ($params->{module} eq 'AR') {
2127       push @where, 'chart_categories ~ \'[ACILQ]\'';
2128
2129     } elsif ($params->{module} eq 'AP') {
2130       push @where, 'chart_categories ~ \'[ACELQ]\'';
2131     }
2132
2133   } elsif ($params) {
2134     $key = $params;
2135   }
2136
2137   my $where = @where ? ' WHERE ' . join(' AND ', map { "($_)" } @where) : '';
2138
2139   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey, rate|;
2140
2141   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2142
2143   $main::lxdebug->leave_sub();
2144 }
2145
2146 sub _get_taxzones {
2147   $main::lxdebug->enter_sub();
2148
2149   my ($self, $dbh, $key) = @_;
2150
2151   $key = "all_taxzones" unless ($key);
2152   my $tzfilter = "";
2153   $tzfilter = "WHERE obsolete is FALSE" if $key eq 'ALL_ACTIVE_TAXZONES';
2154
2155   my $query = qq|SELECT * FROM tax_zones $tzfilter ORDER BY sortkey|;
2156
2157   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2158
2159   $main::lxdebug->leave_sub();
2160 }
2161
2162 sub _get_employees {
2163   $main::lxdebug->enter_sub();
2164
2165   my ($self, $dbh, $params) = @_;
2166
2167   my $deleted = 0;
2168
2169   my $key;
2170   if (ref $params eq 'HASH') {
2171     $key     = $params->{key};
2172     $deleted = $params->{deleted};
2173
2174   } else {
2175     $key = $params;
2176   }
2177
2178   $key     ||= "all_employees";
2179   my $filter = $deleted ? '' : 'WHERE NOT COALESCE(deleted, FALSE)';
2180   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee $filter ORDER BY lower(name)|);
2181
2182   $main::lxdebug->leave_sub();
2183 }
2184
2185 sub _get_business_types {
2186   $main::lxdebug->enter_sub();
2187
2188   my ($self, $dbh, $key) = @_;
2189
2190   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
2191   $options->{key} ||= "all_business_types";
2192   my $where         = '';
2193
2194   if (exists $options->{salesman}) {
2195     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
2196   }
2197
2198   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
2199
2200   $main::lxdebug->leave_sub();
2201 }
2202
2203 sub _get_languages {
2204   $main::lxdebug->enter_sub();
2205
2206   my ($self, $dbh, $key) = @_;
2207
2208   $key = "all_languages" unless ($key);
2209
2210   my $query = qq|SELECT * FROM language ORDER BY id|;
2211
2212   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2213
2214   $main::lxdebug->leave_sub();
2215 }
2216
2217 sub _get_dunning_configs {
2218   $main::lxdebug->enter_sub();
2219
2220   my ($self, $dbh, $key) = @_;
2221
2222   $key = "all_dunning_configs" unless ($key);
2223
2224   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
2225
2226   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2227
2228   $main::lxdebug->leave_sub();
2229 }
2230
2231 sub _get_currencies {
2232 $main::lxdebug->enter_sub();
2233
2234   my ($self, $dbh, $key) = @_;
2235
2236   $key = "all_currencies" unless ($key);
2237
2238   $self->{$key} = [$self->get_all_currencies()];
2239
2240   $main::lxdebug->leave_sub();
2241 }
2242
2243 sub _get_payments {
2244 $main::lxdebug->enter_sub();
2245
2246   my ($self, $dbh, $key) = @_;
2247
2248   $key = "all_payments" unless ($key);
2249
2250   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
2251
2252   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2253
2254   $main::lxdebug->leave_sub();
2255 }
2256
2257 sub _get_customers {
2258   $main::lxdebug->enter_sub();
2259
2260   my ($self, $dbh, $key) = @_;
2261
2262   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
2263   $options->{key}  ||= "all_customers";
2264   my $limit_clause   = $options->{limit} ? "LIMIT $options->{limit}" : '';
2265
2266   my @where;
2267   push @where, qq|business_id IN (SELECT id FROM business WHERE salesman)| if  $options->{business_is_salesman};
2268   push @where, qq|NOT obsolete|                                            if !$options->{with_obsolete};
2269   my $where_str = @where ? "WHERE " . join(" AND ", map { "($_)" } @where) : '';
2270
2271   my $query = qq|SELECT * FROM customer $where_str ORDER BY name $limit_clause|;
2272   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
2273
2274   $main::lxdebug->leave_sub();
2275 }
2276
2277 sub _get_vendors {
2278   $main::lxdebug->enter_sub();
2279
2280   my ($self, $dbh, $key) = @_;
2281
2282   $key = "all_vendors" unless ($key);
2283
2284   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
2285
2286   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2287
2288   $main::lxdebug->leave_sub();
2289 }
2290
2291 sub _get_departments {
2292   $main::lxdebug->enter_sub();
2293
2294   my ($self, $dbh, $key) = @_;
2295
2296   $key = "all_departments" unless ($key);
2297
2298   my $query = qq|SELECT * FROM department ORDER BY description|;
2299
2300   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2301
2302   $main::lxdebug->leave_sub();
2303 }
2304
2305 sub _get_warehouses {
2306   $main::lxdebug->enter_sub();
2307
2308   my ($self, $dbh, $param) = @_;
2309
2310   my ($key, $bins_key);
2311
2312   if ('' eq ref $param) {
2313     $key = $param;
2314
2315   } else {
2316     $key      = $param->{key};
2317     $bins_key = $param->{bins};
2318   }
2319
2320   my $query = qq|SELECT w.* FROM warehouse w
2321                  WHERE (NOT w.invalid) AND
2322                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
2323                  ORDER BY w.sortkey|;
2324
2325   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2326
2327   if ($bins_key) {
2328     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
2329                 ORDER BY description|;
2330     my $sth = prepare_query($self, $dbh, $query);
2331
2332     foreach my $warehouse (@{ $self->{$key} }) {
2333       do_statement($self, $sth, $query, $warehouse->{id});
2334       $warehouse->{$bins_key} = [];
2335
2336       while (my $ref = $sth->fetchrow_hashref()) {
2337         push @{ $warehouse->{$bins_key} }, $ref;
2338       }
2339     }
2340     $sth->finish();
2341   }
2342
2343   $main::lxdebug->leave_sub();
2344 }
2345
2346 sub _get_simple {
2347   $main::lxdebug->enter_sub();
2348
2349   my ($self, $dbh, $table, $key, $sortkey) = @_;
2350
2351   my $query  = qq|SELECT * FROM $table|;
2352   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
2353
2354   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2355
2356   $main::lxdebug->leave_sub();
2357 }
2358
2359 #sub _get_groups {
2360 #  $main::lxdebug->enter_sub();
2361 #
2362 #  my ($self, $dbh, $key) = @_;
2363 #
2364 #  $key ||= "all_groups";
2365 #
2366 #  my $groups = $main::auth->read_groups();
2367 #
2368 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2369 #
2370 #  $main::lxdebug->leave_sub();
2371 #}
2372
2373 sub get_lists {
2374   $main::lxdebug->enter_sub();
2375
2376   my $self = shift;
2377   my %params = @_;
2378
2379   my $dbh = $self->get_standard_dbh(\%main::myconfig);
2380   my ($sth, $query, $ref);
2381
2382   my ($vc, $vc_id);
2383   if ($params{contacts} || $params{shipto}) {
2384     $vc = 'customer' if $self->{"vc"} eq "customer";
2385     $vc = 'vendor'   if $self->{"vc"} eq "vendor";
2386     die "invalid use of get_lists, need 'vc'" unless $vc;
2387     $vc_id = $self->{"${vc}_id"};
2388   }
2389
2390   if ($params{"contacts"}) {
2391     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
2392   }
2393
2394   if ($params{"shipto"}) {
2395     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
2396   }
2397
2398   if ($params{"projects"} || $params{"all_projects"}) {
2399     $self->_get_projects($dbh, $params{"all_projects"} ?
2400                          $params{"all_projects"} : $params{"projects"},
2401                          $params{"all_projects"} ? 1 : 0);
2402   }
2403
2404   if ($params{"printers"}) {
2405     $self->_get_printers($dbh, $params{"printers"});
2406   }
2407
2408   if ($params{"languages"}) {
2409     $self->_get_languages($dbh, $params{"languages"});
2410   }
2411
2412   if ($params{"charts"}) {
2413     $self->_get_charts($dbh, $params{"charts"});
2414   }
2415
2416   if ($params{"taxcharts"}) {
2417     $self->_get_taxcharts($dbh, $params{"taxcharts"});
2418   }
2419
2420   if ($params{"taxzones"}) {
2421     $self->_get_taxzones($dbh, $params{"taxzones"});
2422   }
2423
2424   if ($params{"employees"}) {
2425     $self->_get_employees($dbh, $params{"employees"});
2426   }
2427
2428   if ($params{"salesmen"}) {
2429     $self->_get_employees($dbh, $params{"salesmen"});
2430   }
2431
2432   if ($params{"business_types"}) {
2433     $self->_get_business_types($dbh, $params{"business_types"});
2434   }
2435
2436   if ($params{"dunning_configs"}) {
2437     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
2438   }
2439
2440   if($params{"currencies"}) {
2441     $self->_get_currencies($dbh, $params{"currencies"});
2442   }
2443
2444   if($params{"customers"}) {
2445     $self->_get_customers($dbh, $params{"customers"});
2446   }
2447
2448   if($params{"vendors"}) {
2449     if (ref $params{"vendors"} eq 'HASH') {
2450       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
2451     } else {
2452       $self->_get_vendors($dbh, $params{"vendors"});
2453     }
2454   }
2455
2456   if($params{"payments"}) {
2457     $self->_get_payments($dbh, $params{"payments"});
2458   }
2459
2460   if($params{"departments"}) {
2461     $self->_get_departments($dbh, $params{"departments"});
2462   }
2463
2464   if ($params{price_factors}) {
2465     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
2466   }
2467
2468   if ($params{warehouses}) {
2469     $self->_get_warehouses($dbh, $params{warehouses});
2470   }
2471
2472 #  if ($params{groups}) {
2473 #    $self->_get_groups($dbh, $params{groups});
2474 #  }
2475
2476   if ($params{partsgroup}) {
2477     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
2478   }
2479
2480   $main::lxdebug->leave_sub();
2481 }
2482
2483 # this sub gets the id and name from $table
2484 sub get_name {
2485   $main::lxdebug->enter_sub();
2486
2487   my ($self, $myconfig, $table) = @_;
2488
2489   # connect to database
2490   my $dbh = $self->get_standard_dbh($myconfig);
2491
2492   $table = $table eq "customer" ? "customer" : "vendor";
2493   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
2494
2495   my ($query, @values);
2496
2497   if (!$self->{openinvoices}) {
2498     my $where;
2499     if ($self->{customernumber} ne "") {
2500       $where = qq|(vc.customernumber ILIKE ?)|;
2501       push(@values, '%' . $self->{customernumber} . '%');
2502     } else {
2503       $where = qq|(vc.name ILIKE ?)|;
2504       push(@values, '%' . $self->{$table} . '%');
2505     }
2506
2507     $query =
2508       qq~SELECT vc.id, vc.name,
2509            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2510          FROM $table vc
2511          WHERE $where AND (NOT vc.obsolete)
2512          ORDER BY vc.name~;
2513   } else {
2514     $query =
2515       qq~SELECT DISTINCT vc.id, vc.name,
2516            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2517          FROM $arap a
2518          JOIN $table vc ON (a.${table}_id = vc.id)
2519          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
2520          ORDER BY vc.name~;
2521     push(@values, '%' . $self->{$table} . '%');
2522   }
2523
2524   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
2525
2526   $main::lxdebug->leave_sub();
2527
2528   return scalar(@{ $self->{name_list} });
2529 }
2530
2531 # the selection sub is used in the AR, AP, IS, IR, DO and OE module
2532 #
2533 sub all_vc {
2534   $main::lxdebug->enter_sub();
2535
2536   my ($self, $myconfig, $table, $module) = @_;
2537
2538   my $ref;
2539   my $dbh = $self->get_standard_dbh;
2540
2541   $table = $table eq "customer" ? "customer" : "vendor";
2542
2543   # build selection list
2544   # Hotfix für Bug 1837 - Besser wäre es alte Buchungsbelege
2545   # OHNE Auswahlliste (reines Textfeld) zu laden. Hilft aber auch
2546   # nicht für veränderbare Belege (oe, do, ...)
2547   my $obsolete = $self->{id} ? '' : "WHERE NOT obsolete";
2548   my $query = qq|SELECT count(*) FROM $table $obsolete|;
2549   my ($count) = selectrow_query($self, $dbh, $query);
2550
2551   if ($count <= $myconfig->{vclimit}) {
2552     $query = qq|SELECT id, name, salesman_id
2553                 FROM $table $obsolete
2554                 ORDER BY name|;
2555     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2556   }
2557
2558   # get self
2559   $self->get_employee($dbh);
2560
2561   # setup sales contacts
2562   $query = qq|SELECT e.id, e.name
2563               FROM employee e
2564               WHERE (e.sales = '1') AND (NOT e.id = ?)
2565               ORDER BY name|;
2566   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2567
2568   # this is for self
2569   push(@{ $self->{all_employees} },
2570        { id   => $self->{employee_id},
2571          name => $self->{employee} });
2572
2573     # prepare query for departments
2574     $query = qq|SELECT id, description
2575                 FROM department
2576                 ORDER BY description|;
2577
2578   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2579
2580   # get languages
2581   $query = qq|SELECT id, description
2582               FROM language
2583               ORDER BY id|;
2584
2585   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2586
2587   # get printer
2588   $query = qq|SELECT printer_description, id
2589               FROM printers
2590               ORDER BY printer_description|;
2591
2592   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2593
2594   # get payment terms
2595   $query = qq|SELECT id, description
2596               FROM payment_terms
2597               ORDER BY sortkey|;
2598
2599   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2600
2601   $main::lxdebug->leave_sub();
2602 }
2603
2604 sub new_lastmtime {
2605   my ($self, $table, $option) = @_;
2606
2607   return                                       unless $self->{id};
2608   croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
2609
2610   my $query       = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
2611   my $ref         = selectfirst_hashref_query($self, $self->get_standard_dbh, $query, $self->{id});
2612   $ref->{mtime} ||= $ref->{itime};
2613   $self->{lastmtime} = $ref->{mtime};
2614   $main::lxdebug->message(LXDebug->DEBUG2(),"new lastmtime=".$self->{lastmtime});
2615 }
2616
2617 sub mtime_ischanged {
2618   my ($self, $table, $option) = @_;
2619
2620   return                                       unless $self->{id};
2621   croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
2622
2623   my $query       = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
2624   my $ref         = selectfirst_hashref_query($self, $self->get_standard_dbh, $query, $self->{id});
2625   $ref->{mtime} ||= $ref->{itime};
2626
2627   if ($self->{lastmtime} && $self->{lastmtime} ne $ref->{mtime} ) {
2628       $self->error(($option eq 'mail') ?
2629         t8("The document has been changed by another user. No mail was sent. Please reopen it in another window and copy the changes to the new window") :
2630         t8("The document has been changed by another user. Please reopen it in another window and copy the changes to the new window")
2631       );
2632     ::end_of_request();
2633   }
2634 }
2635
2636 sub language_payment {
2637   $main::lxdebug->enter_sub();
2638
2639   my ($self, $myconfig) = @_;
2640
2641   my $dbh = $self->get_standard_dbh($myconfig);
2642   # get languages
2643   my $query = qq|SELECT id, description
2644                  FROM language
2645                  ORDER BY id|;
2646
2647   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2648
2649   # get printer
2650   $query = qq|SELECT printer_description, id
2651               FROM printers
2652               ORDER BY printer_description|;
2653
2654   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2655
2656   # get payment terms
2657   $query = qq|SELECT id, description
2658               FROM payment_terms
2659               ORDER BY sortkey|;
2660
2661   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2662
2663   # get buchungsgruppen
2664   $query = qq|SELECT id, description
2665               FROM buchungsgruppen|;
2666
2667   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2668
2669   $main::lxdebug->leave_sub();
2670 }
2671
2672 # this is only used for reports
2673 sub all_departments {
2674   $main::lxdebug->enter_sub();
2675
2676   my ($self, $myconfig, $table) = @_;
2677
2678   my $dbh = $self->get_standard_dbh($myconfig);
2679
2680   my $query = qq|SELECT id, description
2681                  FROM department
2682                  ORDER BY description|;
2683   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2684
2685   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
2686
2687   $main::lxdebug->leave_sub();
2688 }
2689
2690 sub create_links {
2691   $main::lxdebug->enter_sub();
2692
2693   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2694
2695   my ($fld, $arap);
2696   if ($table eq "customer") {
2697     $fld = "buy";
2698     $arap = "ar";
2699   } else {
2700     $table = "vendor";
2701     $fld = "sell";
2702     $arap = "ap";
2703   }
2704
2705   $self->all_vc($myconfig, $table, $module);
2706
2707   # get last customers or vendors
2708   my ($query, $sth, $ref);
2709
2710   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2711   my %xkeyref = ();
2712
2713   if (!$self->{id}) {
2714
2715     my $transdate = "current_date";
2716     if ($self->{transdate}) {
2717       $transdate = $dbh->quote($self->{transdate});
2718     }
2719
2720     # now get the account numbers
2721 #    $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2722 #                FROM chart c, taxkeys tk
2723 #                WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2724 #                  (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2725 #                ORDER BY c.accno|;
2726
2727 #  same query as above, but without expensive subquery for each row. about 80% faster
2728     $query = qq|
2729       SELECT c.accno, c.description, c.link, c.taxkey_id, tk2.tax_id
2730         FROM chart c
2731         -- find newest entries in taxkeys
2732         INNER JOIN (
2733           SELECT chart_id, MAX(startdate) AS startdate
2734           FROM taxkeys
2735           WHERE (startdate <= $transdate)
2736           GROUP BY chart_id
2737         ) tk ON (c.id = tk.chart_id)
2738         -- and load all of those entries
2739         INNER JOIN taxkeys tk2
2740            ON (tk.chart_id = tk2.chart_id AND tk.startdate = tk2.startdate)
2741        WHERE (c.link LIKE ?)
2742       ORDER BY c.accno|;
2743
2744     $sth = $dbh->prepare($query);
2745
2746     do_statement($self, $sth, $query, '%' . $module . '%');
2747
2748     $self->{accounts} = "";
2749     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2750
2751       foreach my $key (split(/:/, $ref->{link})) {
2752         if ($key =~ /\Q$module\E/) {
2753
2754           # cross reference for keys
2755           $xkeyref{ $ref->{accno} } = $key;
2756
2757           push @{ $self->{"${module}_links"}{$key} },
2758             { accno       => $ref->{accno},
2759               description => $ref->{description},
2760               taxkey      => $ref->{taxkey_id},
2761               tax_id      => $ref->{tax_id} };
2762
2763           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2764         }
2765       }
2766     }
2767   }
2768
2769   # get taxkeys and description
2770   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2771   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2772
2773   if (($module eq "AP") || ($module eq "AR")) {
2774     # get tax rates and description
2775     $query = qq|SELECT * FROM tax|;
2776     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2777   }
2778
2779   my $extra_columns = '';
2780   $extra_columns   .= 'a.direct_debit, ' if ($module eq 'AR') || ($module eq 'AP');
2781
2782   if ($self->{id}) {
2783     $query =
2784       qq|SELECT
2785            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2786            a.duedate, a.ordnumber, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.notes,
2787            a.mtime, a.itime,
2788            a.intnotes, a.department_id, a.amount AS oldinvtotal,
2789            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2790            a.globalproject_id, ${extra_columns}
2791            c.name AS $table,
2792            d.description AS department,
2793            e.name AS employee
2794          FROM $arap a
2795          JOIN $table c ON (a.${table}_id = c.id)
2796          LEFT JOIN employee e ON (e.id = a.employee_id)
2797          LEFT JOIN department d ON (d.id = a.department_id)
2798          WHERE a.id = ?|;
2799     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2800
2801     foreach my $key (keys %$ref) {
2802       $self->{$key} = $ref->{$key};
2803     }
2804     $self->{mtime}   ||= $self->{itime};
2805     $self->{lastmtime} = $self->{mtime};
2806     my $transdate = "current_date";
2807     if ($self->{transdate}) {
2808       $transdate = $dbh->quote($self->{transdate});
2809     }
2810
2811     # now get the account numbers
2812     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2813                 FROM chart c
2814                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2815                 WHERE c.link LIKE ?
2816                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2817                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
2818                 ORDER BY c.accno|;
2819
2820     $sth = $dbh->prepare($query);
2821     do_statement($self, $sth, $query, "%$module%");
2822
2823     $self->{accounts} = "";
2824     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2825
2826       foreach my $key (split(/:/, $ref->{link})) {
2827         if ($key =~ /\Q$module\E/) {
2828
2829           # cross reference for keys
2830           $xkeyref{ $ref->{accno} } = $key;
2831
2832           push @{ $self->{"${module}_links"}{$key} },
2833             { accno       => $ref->{accno},
2834               description => $ref->{description},
2835               taxkey      => $ref->{taxkey_id},
2836               tax_id      => $ref->{tax_id} };
2837
2838           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2839         }
2840       }
2841     }
2842
2843
2844     # get amounts from individual entries
2845     $query =
2846       qq|SELECT
2847            c.accno, c.description,
2848            a.acc_trans_id, a.source, a.amount, a.memo, a.transdate, a.gldate, a.cleared, a.project_id, a.taxkey,
2849            p.projectnumber,
2850            t.rate, t.id
2851          FROM acc_trans a
2852          LEFT JOIN chart c ON (c.id = a.chart_id)
2853          LEFT JOIN project p ON (p.id = a.project_id)
2854          LEFT JOIN tax t ON (t.id= a.tax_id)
2855          WHERE a.trans_id = ?
2856          AND a.fx_transaction = '0'
2857          ORDER BY a.acc_trans_id, a.transdate|;
2858     $sth = $dbh->prepare($query);
2859     do_statement($self, $sth, $query, $self->{id});
2860
2861     # get exchangerate for currency
2862     $self->{exchangerate} =
2863       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2864     my $index = 0;
2865
2866     # store amounts in {acc_trans}{$key} for multiple accounts
2867     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
2868       $ref->{exchangerate} =
2869         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2870       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2871         $index++;
2872       }
2873       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2874         $ref->{amount} *= -1;
2875       }
2876       $ref->{index} = $index;
2877
2878       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2879     }
2880
2881     $sth->finish;
2882     #check das:
2883     $query =
2884       qq|SELECT
2885            d.closedto, d.revtrans,
2886            (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
2887            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2888            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
2889            (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id) AS rndgain_accno,
2890            (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id) AS rndloss_accno
2891          FROM defaults d|;
2892     $ref = selectfirst_hashref_query($self, $dbh, $query);
2893     map { $self->{$_} = $ref->{$_} } keys %$ref;
2894
2895   } else {
2896
2897     # get date
2898     $query =
2899        qq|SELECT
2900             current_date AS transdate, d.closedto, d.revtrans,
2901             (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
2902             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2903             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
2904             (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id) AS rndgain_accno,
2905             (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id) AS rndloss_accno
2906           FROM defaults d|;
2907     $ref = selectfirst_hashref_query($self, $dbh, $query);
2908     map { $self->{$_} = $ref->{$_} } keys %$ref;
2909
2910     if ($self->{"$self->{vc}_id"}) {
2911
2912       # only setup currency
2913       ($self->{currency}) = $self->{defaultcurrency} if !$self->{currency};
2914
2915     } else {
2916
2917       $self->lastname_used($dbh, $myconfig, $table, $module);
2918
2919       # get exchangerate for currency
2920       $self->{exchangerate} =
2921         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2922
2923     }
2924
2925   }
2926
2927   $main::lxdebug->leave_sub();
2928 }
2929
2930 sub lastname_used {
2931   $main::lxdebug->enter_sub();
2932
2933   my ($self, $dbh, $myconfig, $table, $module) = @_;
2934
2935   my ($arap, $where);
2936
2937   $table         = $table eq "customer" ? "customer" : "vendor";
2938   my %column_map = ("a.${table}_id"           => "${table}_id",
2939                     "a.department_id"         => "department_id",
2940                     "d.description"           => "department",
2941                     "ct.name"                 => $table,
2942                     "cu.name"                 => "currency",
2943     );
2944
2945   if ($self->{type} =~ /delivery_order/) {
2946     $arap  = 'delivery_orders';
2947     delete $column_map{"cu.currency"};
2948
2949   } elsif ($self->{type} =~ /_order/) {
2950     $arap  = 'oe';
2951     $where = "quotation = '0'";
2952
2953   } elsif ($self->{type} =~ /_quotation/) {
2954     $arap  = 'oe';
2955     $where = "quotation = '1'";
2956
2957   } elsif ($table eq 'customer') {
2958     $arap  = 'ar';
2959
2960   } else {
2961     $arap  = 'ap';
2962
2963   }
2964
2965   $where           = "($where) AND" if ($where);
2966   my $query        = qq|SELECT MAX(id) FROM $arap
2967                         WHERE $where ${table}_id > 0|;
2968   my ($trans_id)   = selectrow_query($self, $dbh, $query);
2969   $trans_id       *= 1;
2970
2971   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
2972   $query           = qq|SELECT $column_spec
2973                         FROM $arap a
2974                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
2975                         LEFT JOIN department d  ON (a.department_id = d.id)
2976                         LEFT JOIN currencies cu ON (cu.id=ct.currency_id)
2977                         WHERE a.id = ?|;
2978   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
2979
2980   map { $self->{$_} = $ref->{$_} } values %column_map;
2981
2982   $main::lxdebug->leave_sub();
2983 }
2984
2985 sub current_date {
2986   $main::lxdebug->enter_sub();
2987
2988   my $self     = shift;
2989   my $myconfig = shift || \%::myconfig;
2990   my ($thisdate, $days) = @_;
2991
2992   my $dbh = $self->get_standard_dbh($myconfig);
2993   my $query;
2994
2995   $days *= 1;
2996   if ($thisdate) {
2997     my $dateformat = $myconfig->{dateformat};
2998     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2999     $thisdate = $dbh->quote($thisdate);
3000     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
3001   } else {
3002     $query = qq|SELECT current_date AS thisdate|;
3003   }
3004
3005   ($thisdate) = selectrow_query($self, $dbh, $query);
3006
3007   $main::lxdebug->leave_sub();
3008
3009   return $thisdate;
3010 }
3011
3012 sub like {
3013   my ($self, $string) = @_;
3014
3015   return "%" . SL::Util::trim($string // '') . "%";
3016 }
3017
3018 sub redo_rows {
3019   $main::lxdebug->enter_sub();
3020
3021   my ($self, $flds, $new, $count, $numrows) = @_;
3022
3023   my @ndx = ();
3024
3025   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
3026
3027   my $i = 0;
3028
3029   # fill rows
3030   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
3031     $i++;
3032     my $j = $item->{ndx} - 1;
3033     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
3034   }
3035
3036   # delete empty rows
3037   for $i ($count + 1 .. $numrows) {
3038     map { delete $self->{"${_}_$i"} } @{$flds};
3039   }
3040
3041   $main::lxdebug->leave_sub();
3042 }
3043
3044 sub update_status {
3045   $main::lxdebug->enter_sub();
3046
3047   my ($self, $myconfig) = @_;
3048
3049   my ($i, $id);
3050
3051   my $dbh = $self->dbconnect_noauto($myconfig);
3052
3053   my $query = qq|DELETE FROM status
3054                  WHERE (formname = ?) AND (trans_id = ?)|;
3055   my $sth = prepare_query($self, $dbh, $query);
3056
3057   if ($self->{formname} =~ /(check|receipt)/) {
3058     for $i (1 .. $self->{rowcount}) {
3059       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
3060     }
3061   } else {
3062     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
3063   }
3064   $sth->finish();
3065
3066   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3067   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3068
3069   my %queued = split / /, $self->{queued};
3070   my @values;
3071
3072   if ($self->{formname} =~ /(check|receipt)/) {
3073
3074     # this is a check or receipt, add one entry for each lineitem
3075     my ($accno) = split /--/, $self->{account};
3076     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
3077                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
3078     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
3079     $sth = prepare_query($self, $dbh, $query);
3080
3081     for $i (1 .. $self->{rowcount}) {
3082       if ($self->{"checked_$i"}) {
3083         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
3084       }
3085     }
3086     $sth->finish();
3087
3088   } else {
3089     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3090                 VALUES (?, ?, ?, ?, ?)|;
3091     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
3092              $queued{$self->{formname}}, $self->{formname});
3093   }
3094
3095   $dbh->commit;
3096   $dbh->disconnect;
3097
3098   $main::lxdebug->leave_sub();
3099 }
3100
3101 sub save_status {
3102   $main::lxdebug->enter_sub();
3103
3104   my ($self, $dbh) = @_;
3105
3106   my ($query, $printed, $emailed);
3107
3108   my $formnames  = $self->{printed};
3109   my $emailforms = $self->{emailed};
3110
3111   $query = qq|DELETE FROM status
3112                  WHERE (formname = ?) AND (trans_id = ?)|;
3113   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
3114
3115   # this only applies to the forms
3116   # checks and receipts are posted when printed or queued
3117
3118   if ($self->{queued}) {
3119     my %queued = split / /, $self->{queued};
3120
3121     foreach my $formname (keys %queued) {
3122       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3123       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3124
3125       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3126                   VALUES (?, ?, ?, ?, ?)|;
3127       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
3128
3129       $formnames  =~ s/\Q$self->{formname}\E//;
3130       $emailforms =~ s/\Q$self->{formname}\E//;
3131
3132     }
3133   }
3134
3135   # save printed, emailed info
3136   $formnames  =~ s/^ +//g;
3137   $emailforms =~ s/^ +//g;
3138
3139   my %status = ();
3140   map { $status{$_}{printed} = 1 } split / +/, $formnames;
3141   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
3142
3143   foreach my $formname (keys %status) {
3144     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
3145     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
3146
3147     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
3148                 VALUES (?, ?, ?, ?)|;
3149     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
3150   }
3151
3152   $main::lxdebug->leave_sub();
3153 }
3154
3155 #--- 4 locale ---#
3156 # $main::locale->text('SAVED')
3157 # $main::locale->text('DELETED')
3158 # $main::locale->text('ADDED')
3159 # $main::locale->text('PAYMENT POSTED')
3160 # $main::locale->text('POSTED')
3161 # $main::locale->text('POSTED AS NEW')
3162 # $main::locale->text('ELSE')
3163 # $main::locale->text('SAVED FOR DUNNING')
3164 # $main::locale->text('DUNNING STARTED')
3165 # $main::locale->text('PRINTED')
3166 # $main::locale->text('MAILED')
3167 # $main::locale->text('SCREENED')
3168 # $main::locale->text('CANCELED')
3169 # $main::locale->text('invoice')
3170 # $main::locale->text('proforma')
3171 # $main::locale->text('sales_order')
3172 # $main::locale->text('pick_list')
3173 # $main::locale->text('purchase_order')
3174 # $main::locale->text('bin_list')
3175 # $main::locale->text('sales_quotation')
3176 # $main::locale->text('request_quotation')
3177
3178 sub save_history {
3179   $main::lxdebug->enter_sub();
3180
3181   my $self = shift;
3182   my $dbh  = shift || $self->get_standard_dbh;
3183
3184   if(!exists $self->{employee_id}) {
3185     &get_employee($self, $dbh);
3186   }
3187
3188   my $query =
3189    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
3190    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
3191   my @values = (conv_i($self->{id}), $self->{login},
3192                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
3193   do_query($self, $dbh, $query, @values);
3194
3195   $dbh->commit;
3196
3197   $main::lxdebug->leave_sub();
3198 }
3199
3200 sub get_history {
3201   $main::lxdebug->enter_sub();
3202
3203   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
3204   my ($orderBy, $desc) = split(/\-\-/, $order);
3205   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
3206   my @tempArray;
3207   my $i = 0;
3208   if ($trans_id ne "") {
3209     my $query =
3210       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 | .
3211       qq|FROM history_erp h | .
3212       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
3213       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
3214       $order;
3215
3216     my $sth = $dbh->prepare($query) || $self->dberror($query);
3217
3218     $sth->execute() || $self->dberror("$query");
3219
3220     while(my $hash_ref = $sth->fetchrow_hashref()) {
3221       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
3222       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
3223       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
3224       $tempArray[$i++] = $hash_ref;
3225     }
3226     $main::lxdebug->leave_sub() and return \@tempArray
3227       if ($i > 0 && $tempArray[0] ne "");
3228   }
3229   $main::lxdebug->leave_sub();
3230   return 0;
3231 }
3232
3233 sub get_partsgroup {
3234   $main::lxdebug->enter_sub();
3235
3236   my ($self, $myconfig, $p) = @_;
3237   my $target = $p->{target} || 'all_partsgroup';
3238
3239   my $dbh = $self->get_standard_dbh($myconfig);
3240
3241   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
3242                  FROM partsgroup pg
3243                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
3244   my @values;
3245
3246   if ($p->{searchitems} eq 'part') {
3247     $query .= qq|WHERE p.inventory_accno_id > 0|;
3248   }
3249   if ($p->{searchitems} eq 'service') {
3250     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
3251   }
3252   if ($p->{searchitems} eq 'assembly') {
3253     $query .= qq|WHERE p.assembly = '1'|;
3254   }
3255   if ($p->{searchitems} eq 'labor') {
3256     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
3257   }
3258
3259   $query .= qq|ORDER BY partsgroup|;
3260
3261   if ($p->{all}) {
3262     $query = qq|SELECT id, partsgroup FROM partsgroup
3263                 ORDER BY partsgroup|;
3264   }
3265
3266   if ($p->{language_code}) {
3267     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
3268                   t.description AS translation
3269                 FROM partsgroup pg
3270                 JOIN parts p ON (p.partsgroup_id = pg.id)
3271                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
3272                 ORDER BY translation|;
3273     @values = ($p->{language_code});
3274   }
3275
3276   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
3277
3278   $main::lxdebug->leave_sub();
3279 }
3280
3281 sub get_pricegroup {
3282   $main::lxdebug->enter_sub();
3283
3284   my ($self, $myconfig, $p) = @_;
3285
3286   my $dbh = $self->get_standard_dbh($myconfig);
3287
3288   my $query = qq|SELECT p.id, p.pricegroup
3289                  FROM pricegroup p|;
3290
3291   $query .= qq| ORDER BY pricegroup|;
3292
3293   if ($p->{all}) {
3294     $query = qq|SELECT id, pricegroup FROM pricegroup
3295                 ORDER BY pricegroup|;
3296   }
3297
3298   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
3299
3300   $main::lxdebug->leave_sub();
3301 }
3302
3303 sub all_years {
3304 # usage $form->all_years($myconfig, [$dbh])
3305 # return list of all years where bookings found
3306 # (@all_years)
3307
3308   $main::lxdebug->enter_sub();
3309
3310   my ($self, $myconfig, $dbh) = @_;
3311
3312   $dbh ||= $self->get_standard_dbh($myconfig);
3313
3314   # get years
3315   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
3316                    (SELECT MAX(transdate) FROM acc_trans)|;
3317   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
3318
3319   if ($myconfig->{dateformat} =~ /^yy/) {
3320     ($startdate) = split /\W/, $startdate;
3321     ($enddate) = split /\W/, $enddate;
3322   } else {
3323     (@_) = split /\W/, $startdate;
3324     $startdate = $_[2];
3325     (@_) = split /\W/, $enddate;
3326     $enddate = $_[2];
3327   }
3328
3329   my @all_years;
3330   $startdate = substr($startdate,0,4);
3331   $enddate = substr($enddate,0,4);
3332
3333   while ($enddate >= $startdate) {
3334     push @all_years, $enddate--;
3335   }
3336
3337   return @all_years;
3338
3339   $main::lxdebug->leave_sub();
3340 }
3341
3342 sub backup_vars {
3343   $main::lxdebug->enter_sub();
3344   my $self = shift;
3345   my @vars = @_;
3346
3347   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
3348
3349   $main::lxdebug->leave_sub();
3350 }
3351
3352 sub restore_vars {
3353   $main::lxdebug->enter_sub();
3354
3355   my $self = shift;
3356   my @vars = @_;
3357
3358   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
3359
3360   $main::lxdebug->leave_sub();
3361 }
3362
3363 sub prepare_for_printing {
3364   my ($self) = @_;
3365
3366   my $defaults         = SL::DB::Default->get;
3367
3368   $self->{templates} ||= $defaults->templates;
3369   $self->{formname}  ||= $self->{type};
3370   $self->{media}     ||= 'email';
3371
3372   die "'media' other than 'email', 'file', 'printer' is not supported yet" unless $self->{media} =~ m/^(?:email|file|printer)$/;
3373
3374   # Several fields that used to reside in %::myconfig (stored in
3375   # auth.user_config) are now stored in defaults. Copy them over for
3376   # compatibility.
3377   $self->{$_} = $defaults->$_ for qw(company address taxnumber co_ustid duns sepa_creditor_id);
3378
3379   $self->{"myconfig_${_}"} = $::myconfig{$_} for grep { $_ ne 'dbpasswd' } keys %::myconfig;
3380
3381   if (!$self->{employee_id}) {
3382     $self->{"employee_${_}"} = $::myconfig{$_} for qw(email tel fax name signature);
3383     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
3384   }
3385
3386   # Load shipping address from database. If shipto_id is set then it's
3387   # one from the customer's/vendor's master data. Otherwise look an a
3388   # customized address linking back to the current record.
3389   my $shipto_module = $self->{type} =~ /_delivery_order$/                                             ? 'DO'
3390                     : $self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/ ? 'OE'
3391                     :                                                                                   'AR';
3392   my $shipto        = $self->{shipto_id} ? SL::DB::Shipto->new(shipto_id => $self->{shipto_id})->load
3393                     :                      SL::DB::Manager::Shipto->get_first(where => [ module => $shipto_module, trans_id => $self->{id} ]);
3394   if ($shipto) {
3395     $self->{$_} = $shipto->$_ for grep { m{^shipto} } map { $_->name } @{ $shipto->meta->columns };
3396     $self->{"shiptocvar_" . $_->config->name} = $_->value_as_text for @{ $shipto->cvars_by_config };
3397   }
3398
3399   my $language = $self->{language} ? '_' . $self->{language} : '';
3400
3401   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
3402   if ($self->{language_id}) {
3403     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) = AM->get_language_details(\%::myconfig, $self, $self->{language_id});
3404   }
3405
3406   $output_dateformat   ||= $::myconfig{dateformat};
3407   $output_numberformat ||= $::myconfig{numberformat};
3408   $output_longdates    //= 1;
3409
3410   $self->{myconfig_output_dateformat}   = $output_dateformat   // $::myconfig{dateformat};
3411   $self->{myconfig_output_longdates}    = $output_longdates    // 1;
3412   $self->{myconfig_output_numberformat} = $output_numberformat // $::myconfig{numberformat};
3413
3414   # Retrieve accounts for tax calculation.
3415   IC->retrieve_accounts(\%::myconfig, $self, map { $_ => $self->{"id_$_"} } 1 .. $self->{rowcount});
3416
3417   if ($self->{type} =~ /_delivery_order$/) {
3418     DO->order_details(\%::myconfig, $self);
3419   } elsif ($self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/) {
3420     OE->order_details(\%::myconfig, $self);
3421   } else {
3422     IS->invoice_details(\%::myconfig, $self, $::locale);
3423   }
3424
3425   # Chose extension & set source file name
3426   my $extension = 'html';
3427   if ($self->{format} eq 'postscript') {
3428     $self->{postscript}   = 1;
3429     $extension            = 'tex';
3430   } elsif ($self->{"format"} =~ /pdf/) {
3431     $self->{pdf}          = 1;
3432     $extension            = $self->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
3433   } elsif ($self->{"format"} =~ /opendocument/) {
3434     $self->{opendocument} = 1;
3435     $extension            = 'odt';
3436   } elsif ($self->{"format"} =~ /excel/) {
3437     $self->{excel}        = 1;
3438     $extension            = 'xls';
3439   }
3440
3441   my $printer_code    = $self->{printer_code} ? '_' . $self->{printer_code} : '';
3442   my $email_extension = $self->{media} eq 'email' && -f ($defaults->templates . "/$self->{formname}_email${language}.${extension}") ? '_email' : '';
3443   $self->{IN}         = "$self->{formname}${email_extension}${language}${printer_code}.${extension}";
3444
3445   # Format dates.
3446   $self->format_dates($output_dateformat, $output_longdates,
3447                       qw(invdate orddate quodate pldate duedate reqdate transdate shippingdate deliverydate validitydate paymentdate datepaid
3448                          transdate_oe deliverydate_oe employee_startdate employee_enddate),
3449                       grep({ /^(?:datepaid|transdate_oe|reqdate|deliverydate|deliverydate_oe|transdate)_\d+$/ } keys(%{$self})));
3450
3451   $self->reformat_numbers($output_numberformat, 2,
3452                           qw(invtotal ordtotal quototal subtotal linetotal listprice sellprice netprice discount tax taxbase total paid),
3453                           grep({ /^(?:linetotal|listprice|sellprice|netprice|taxbase|discount|paid|subtotal|total|tax)_\d+$/ } keys(%{$self})));
3454
3455   $self->reformat_numbers($output_numberformat, undef, qw(qty price_factor), grep({ /^qty_\d+$/} keys(%{$self})));
3456
3457   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
3458
3459   if (scalar @{ $cvar_date_fields }) {
3460     $self->format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
3461   }
3462
3463   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
3464     $self->reformat_numbers($output_numberformat, $precision, @{ $field_list });
3465   }
3466
3467   $self->{template_meta} = {
3468     formname  => $self->{formname},
3469     language  => SL::DB::Manager::Language->find_by_or_create(id => $self->{language_id} || undef),
3470     format    => $self->{format},
3471     media     => $self->{media},
3472     extension => $extension,
3473     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $self->{printer_id} || undef),
3474     today     => DateTime->today,
3475   };
3476
3477   return $self;
3478 }
3479
3480 sub calculate_arap {
3481   my ($self,$buysell,$taxincluded,$exchangerate,$roundplaces) = @_;
3482
3483   # this function is used to calculate netamount, total_tax and amount for AP and
3484   # AR transactions (Kreditoren-/Debitorenbuchungen) by going over all lines
3485   # (1..$rowcount)
3486   # Thus it needs a fully prepared $form to work on.
3487   # calculate_arap assumes $form->{amount_$i} entries still need to be parsed
3488
3489   # The calculated total values are all rounded (default is to 2 places) and
3490   # returned as parameters rather than directly modifying form.  The aim is to
3491   # make the calculation of AP and AR behave identically.  There is a test-case
3492   # for this function in t/form/arap.t
3493
3494   # While calculating the totals $form->{amount_$i} and $form->{tax_$i} are
3495   # modified and formatted and receive the correct sign for writing straight to
3496   # acc_trans, depending on whether they are ar or ap.
3497
3498   # check parameters
3499   die "taxincluded needed in Form->calculate_arap" unless defined $taxincluded;
3500   die "exchangerate needed in Form->calculate_arap" unless defined $exchangerate;
3501   die 'illegal buysell parameter, has to be \"buy\" or \"sell\" in Form->calculate_arap\n' unless $buysell =~ /^(buy|sell)$/;
3502   $roundplaces = 2 unless $roundplaces;
3503
3504   my $sign = 1;  # adjust final results for writing amount to acc_trans
3505   $sign = -1 if $buysell eq 'buy';
3506
3507   my ($netamount,$total_tax,$amount);
3508
3509   my $tax;
3510
3511   # parse and round amounts, setting correct sign for writing to acc_trans
3512   for my $i (1 .. $self->{rowcount}) {
3513     $self->{"amount_$i"} = $self->round_amount($self->parse_amount(\%::myconfig, $self->{"amount_$i"}) * $exchangerate * $sign, $roundplaces);
3514
3515     $amount += $self->{"amount_$i"} * $sign;
3516   }
3517
3518   for my $i (1 .. $self->{rowcount}) {
3519     next unless $self->{"amount_$i"};
3520     ($self->{"tax_id_$i"}) = split /--/, $self->{"taxchart_$i"};
3521     my $tax_id = $self->{"tax_id_$i"};
3522
3523     my $selected_tax = SL::DB::Manager::Tax->find_by(id => "$tax_id");
3524
3525     if ( $selected_tax ) {
3526
3527       if ( $buysell eq 'sell' ) {
3528         $self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
3529       } else {
3530         $self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
3531       };
3532
3533       $self->{"taxkey_$i"} = $selected_tax->taxkey;
3534       $self->{"taxrate_$i"} = $selected_tax->rate;
3535     };
3536
3537     ($self->{"amount_$i"}, $self->{"tax_$i"}) = $self->calculate_tax($self->{"amount_$i"},$self->{"taxrate_$i"},$taxincluded,$roundplaces);
3538
3539     $netamount  += $self->{"amount_$i"};
3540     $total_tax  += $self->{"tax_$i"};
3541
3542   }
3543   $amount = $netamount + $total_tax;
3544
3545   # due to $sign amount_$i und tax_$i already have the right sign for acc_trans
3546   # but reverse sign of totals for writing amounts to ar
3547   if ( $buysell eq 'buy' ) {
3548     $netamount *= -1;
3549     $amount    *= -1;
3550     $total_tax *= -1;
3551   };
3552
3553   return($netamount,$total_tax,$amount);
3554 }
3555
3556 sub format_dates {
3557   my ($self, $dateformat, $longformat, @indices) = @_;
3558
3559   $dateformat ||= $::myconfig{dateformat};
3560
3561   foreach my $idx (@indices) {
3562     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
3563       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
3564         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $dateformat, $longformat);
3565       }
3566     }
3567
3568     next unless defined $self->{$idx};
3569
3570     if (!ref($self->{$idx})) {
3571       $self->{$idx} = $::locale->reformat_date(\%::myconfig, $self->{$idx}, $dateformat, $longformat);
3572
3573     } elsif (ref($self->{$idx}) eq "ARRAY") {
3574       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
3575         $self->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{$idx}->[$i], $dateformat, $longformat);
3576       }
3577     }
3578   }
3579 }
3580
3581 sub reformat_numbers {
3582   my ($self, $numberformat, $places, @indices) = @_;
3583
3584   return if !$numberformat || ($numberformat eq $::myconfig{numberformat});
3585
3586   foreach my $idx (@indices) {
3587     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
3588       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
3589         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i]);
3590       }
3591     }
3592
3593     next unless defined $self->{$idx};
3594
3595     if (!ref($self->{$idx})) {
3596       $self->{$idx} = $self->parse_amount(\%::myconfig, $self->{$idx});
3597
3598     } elsif (ref($self->{$idx}) eq "ARRAY") {
3599       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
3600         $self->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{$idx}->[$i]);
3601       }
3602     }
3603   }
3604
3605   my $saved_numberformat    = $::myconfig{numberformat};
3606   $::myconfig{numberformat} = $numberformat;
3607
3608   foreach my $idx (@indices) {
3609     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
3610       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
3611         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $places);
3612       }
3613     }
3614
3615     next unless defined $self->{$idx};
3616
3617     if (!ref($self->{$idx})) {
3618       $self->{$idx} = $self->format_amount(\%::myconfig, $self->{$idx}, $places);
3619
3620     } elsif (ref($self->{$idx}) eq "ARRAY") {
3621       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
3622         $self->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{$idx}->[$i], $places);
3623       }
3624     }
3625   }
3626
3627   $::myconfig{numberformat} = $saved_numberformat;
3628 }
3629
3630 sub create_email_signature {
3631
3632   my $client_signature = $::instance_conf->get_signature;
3633   my $user_signature   = $::myconfig{signature};
3634
3635   my $signature = '';
3636   if ( $client_signature or $user_signature ) {
3637     $signature  = "\n\n-- \n";
3638     $signature .= $user_signature   . "\n" if $user_signature;
3639     $signature .= $client_signature . "\n" if $client_signature;
3640   };
3641   return $signature;
3642
3643 };
3644
3645 sub layout {
3646   my ($self) = @_;
3647   $::lxdebug->enter_sub;
3648
3649   my %style_to_script_map = (
3650     v3  => 'v3',
3651     neu => 'new',
3652   );
3653
3654   my $menu_script = $style_to_script_map{$::myconfig{menustyle}} || '';
3655
3656   package main;
3657   require "bin/mozilla/menu$menu_script.pl";
3658   package Form;
3659   require SL::Controller::FrameHeader;
3660
3661
3662   my $layout = SL::Controller::FrameHeader->new->action_header . ::render();
3663
3664   $::lxdebug->leave_sub;
3665   return $layout;
3666 }
3667
3668 sub calculate_tax {
3669   # this function calculates the net amount and tax for the lines in ar, ap and
3670   # gl and is used for update as well as post. When used with update the return
3671   # value of amount isn't needed
3672
3673   # calculate_tax should always work with positive values, or rather as the user inputs them
3674   # calculate_tax uses db/perl numberformat, i.e. parsed numbers
3675   # convert to negative numbers (when necessary) only when writing to acc_trans
3676   # the amount from $form for ap/ar/gl is currently always rounded to 2 decimals before it reaches here
3677   # for post_transaction amount already contains exchangerate and correct sign and is rounded
3678   # calculate_tax doesn't (need to) know anything about exchangerate
3679
3680   my ($self,$amount,$taxrate,$taxincluded,$roundplaces) = @_;
3681
3682   $roundplaces //= 2;
3683   $taxincluded //= 0;
3684
3685   my $tax;
3686
3687   if ($taxincluded) {
3688     # calculate tax (unrounded), subtract from amount, round amount and round tax
3689     $tax       = $amount - ($amount / ($taxrate + 1)); # equivalent to: taxrate * amount / (taxrate + 1)
3690     $amount    = $self->round_amount($amount - $tax, $roundplaces);
3691     $tax       = $self->round_amount($tax, $roundplaces);
3692   } else {
3693     $tax       = $amount * $taxrate;
3694     $tax       = $self->round_amount($tax, $roundplaces);
3695   }
3696
3697   $tax = 0 unless $tax;
3698
3699   return ($amount,$tax);
3700 };
3701
3702 1;
3703
3704 __END__
3705
3706 =head1 NAME
3707
3708 SL::Form.pm - main data object.
3709
3710 =head1 SYNOPSIS
3711
3712 This is the main data object of kivitendo.
3713 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
3714 Points of interest for a beginner are:
3715
3716  - $form->error            - renders a generic error in html. accepts an error message
3717  - $form->get_standard_dbh - returns a database connection for the
3718
3719 =head1 SPECIAL FUNCTIONS
3720
3721 =head2 C<redirect_header> $url
3722
3723 Generates a HTTP redirection header for the new C<$url>. Constructs an
3724 absolute URL including scheme, host name and port. If C<$url> is a
3725 relative URL then it is considered relative to kivitendo base URL.
3726
3727 This function C<die>s if headers have already been created with
3728 C<$::form-E<gt>header>.
3729
3730 Examples:
3731
3732   print $::form->redirect_header('oe.pl?action=edit&id=1234');
3733   print $::form->redirect_header('http://www.lx-office.org/');
3734
3735 =head2 C<header>
3736
3737 Generates a general purpose http/html header and includes most of the scripts
3738 and stylesheets needed. Stylesheets can be added with L<use_stylesheet>.
3739
3740 Only one header will be generated. If the method was already called in this
3741 request it will not output anything and return undef. Also if no
3742 HTTP_USER_AGENT is found, no header is generated.
3743
3744 Although header does not accept parameters itself, it will honor special
3745 hashkeys of its Form instance:
3746
3747 =over 4
3748
3749 =item refresh_time
3750
3751 =item refresh_url
3752
3753 If one of these is set, a http-equiv refresh is generated. Missing parameters
3754 default to 3 seconds and the refering url.
3755
3756 =item stylesheet
3757
3758 Either a scalar or an array ref. Will be inlined into the header. Add
3759 stylesheets with the L<use_stylesheet> function.
3760
3761 =item landscape
3762
3763 If true, a css snippet will be generated that sets the page in landscape mode.
3764
3765 =item favicon
3766
3767 Used to override the default favicon.
3768
3769 =item title
3770
3771 A html page title will be generated from this
3772
3773 =item mtime_ischanged
3774
3775 Tries to avoid concurrent write operations to records by checking the database mtime with a fetched one.
3776
3777 Can be used / called with any table, that has itime and mtime attributes.
3778 Valid C<table> names are: oe, ar, ap, delivery_orders, parts.
3779 Can be called wit C<option> mail to generate a different error message.
3780
3781 Returns undef if no save operation has been done yet ($self->{id} not present).
3782 Returns undef if no concurrent write process is detected otherwise a error message.
3783
3784 =back
3785
3786 =cut