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