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