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