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