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