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