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