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