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