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