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