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