b9263004be7bdbfd395a0758391ad106a3fbee96
[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, $adjust) = @_;
951
952   return 0 if !defined $amount;
953
954   if ($adjust) {
955     my $precision = $::instance_conf->get_precision || 0.01;
956     return $self->round_amount( $self->round_amount($amount / $precision, 0) * $precision, $places);
957   }
958
959   # We use Perl's knowledge of string representation for
960   # rounding. First, convert the floating point number to a string
961   # with a high number of places. Then split the string on the decimal
962   # sign and use integer calculation for rounding the decimal places
963   # part. If an overflow occurs then apply that overflow to the part
964   # before the decimal sign as well using integer arithmetic again.
965
966   my $int_amount = int(abs $amount);
967   my $str_places = max(min(10, 16 - length("$int_amount") - $places), $places);
968   my $amount_str = sprintf '%.*f', $places + $str_places, abs($amount);
969
970   return $amount unless $amount_str =~ m{^(\d+)\.(\d+)$};
971
972   my ($pre, $post)      = ($1, $2);
973   my $decimals          = '1' . substr($post, 0, $places);
974
975   my $propagation_limit = $Config{i32size} == 4 ? 7 : 18;
976   my $add_for_rounding  = substr($post, $places, 1) >= 5 ? 1 : 0;
977
978   if ($places > $propagation_limit) {
979     $decimals = Math::BigInt->new($decimals)->badd($add_for_rounding);
980     $pre      = Math::BigInt->new($decimals)->badd(1) if substr($decimals, 0, 1) eq '2';
981
982   } else {
983     $decimals += $add_for_rounding;
984     $pre      += 1 if substr($decimals, 0, 1) eq '2';
985   }
986
987   $amount  = ("${pre}." . substr($decimals, 1)) * ($amount <=> 0);
988
989   return $amount;
990 }
991
992 sub parse_template {
993   $main::lxdebug->enter_sub();
994
995   my ($self, $myconfig) = @_;
996   my ($out, $out_mode);
997
998   local (*IN, *OUT);
999
1000   my $defaults  = SL::DB::Default->get;
1001   my $userspath = $::lx_office_conf{paths}->{userspath};
1002
1003   $self->{"cwd"} = getcwd();
1004   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
1005
1006   my $ext_for_format;
1007
1008   my $template_type;
1009   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
1010     $template_type  = 'OpenDocument';
1011     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
1012
1013   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
1014     $template_type    = 'LaTeX';
1015     $ext_for_format   = 'pdf';
1016
1017   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
1018     $template_type  = 'HTML';
1019     $ext_for_format = 'html';
1020
1021   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
1022     $template_type  = 'XML';
1023     $ext_for_format = 'xml';
1024
1025   } elsif ( $self->{"format"} =~ /elster(?:winston|taxbird)/i ) {
1026     $template_type = 'XML';
1027
1028   } elsif ( $self->{"format"} =~ /excel/i ) {
1029     $template_type  = 'Excel';
1030     $ext_for_format = 'xls';
1031
1032   } elsif ( defined $self->{'format'}) {
1033     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
1034
1035   } elsif ( $self->{'format'} eq '' ) {
1036     $self->error("No Outputformat given: $self->{'format'}");
1037
1038   } else { #Catch the rest
1039     $self->error("Outputformat not defined: $self->{'format'}");
1040   }
1041
1042   my $template = SL::Template::create(type      => $template_type,
1043                                       file_name => $self->{IN},
1044                                       form      => $self,
1045                                       myconfig  => $myconfig,
1046                                       userspath => $userspath,
1047                                       %{ $self->{TEMPLATE_DRIVER_OPTIONS} || {} });
1048
1049   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
1050   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" } if exists $self->{ $self->{"formname"} . "notes" };
1051
1052   if (!$self->{employee_id}) {
1053     $self->{"employee_${_}"} = $myconfig->{$_} for qw(email tel fax name signature);
1054     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
1055   }
1056
1057   $self->{"myconfig_${_}"} = $myconfig->{$_} for grep { $_ ne 'dbpasswd' } keys %{ $myconfig };
1058   $self->{$_}              = $defaults->$_   for qw(co_ustid);
1059   $self->{"myconfig_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
1060   $self->{AUTH}            = $::auth;
1061   $self->{INSTANCE_CONF}   = $::instance_conf;
1062   $self->{LOCALE}          = $::locale;
1063   $self->{LXCONFIG}        = $::lx_office_conf;
1064   $self->{LXDEBUG}         = $::lxdebug;
1065   $self->{MYCONFIG}        = \%::myconfig;
1066
1067   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
1068
1069   # OUT is used for the media, screen, printer, email
1070   # for postscript we store a copy in a temporary file
1071   my ($temp_fh, $suffix);
1072   $suffix =  $self->{IN};
1073   $suffix =~ s/.*\.//;
1074   ($temp_fh, $self->{tmpfile}) = File::Temp::tempfile(
1075     'kivitendo-printXXXXXX',
1076     SUFFIX => '.' . ($suffix || 'tex'),
1077     DIR    => $userspath,
1078     UNLINK => ($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})? 0 : 1,
1079   );
1080   close $temp_fh;
1081   (undef, undef, $self->{template_meta}{tmpfile}) = File::Spec->splitpath( $self->{tmpfile} );
1082
1083   $out              = $self->{OUT};
1084   $out_mode         = $self->{OUT_MODE} || '>';
1085   $self->{OUT}      = "$self->{tmpfile}";
1086   $self->{OUT_MODE} = '>';
1087
1088   my $result;
1089   my $command_formatter = sub {
1090     my ($out_mode, $out) = @_;
1091     return $out_mode eq '|-' ? SL::Template::create(type => 'ShellCommand', form => $self)->parse($out) : $out;
1092   };
1093
1094   if ($self->{OUT}) {
1095     $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
1096     open(OUT, $self->{OUT_MODE}, $self->{OUT}) or $self->error("error on opening $self->{OUT} with mode $self->{OUT_MODE} : $!");
1097   } else {
1098     *OUT = ($::dispatcher->get_standard_filehandles)[1];
1099     $self->header;
1100   }
1101
1102   if (!$template->parse(*OUT)) {
1103     $self->cleanup();
1104     $self->error("$self->{IN} : " . $template->get_error());
1105   }
1106
1107   close OUT if $self->{OUT};
1108   # check only one flag (webdav_documents)
1109   # therefore copy to webdav, even if we do not have the webdav feature enabled (just archive)
1110   my $copy_to_webdav =  $::instance_conf->get_webdav_documents && !$self->{preview} && $self->{tmpdir} && $self->{tmpfile} && $self->{type};
1111
1112   if ($self->{media} eq 'file') {
1113     copy(join('/', $self->{cwd}, $userspath, $self->{tmpfile}), $out =~ m|^/| ? $out : join('/', $self->{cwd}, $out)) if $template->uses_temp_file;
1114     Common::copy_file_to_webdav_folder($self)                                                                         if $copy_to_webdav;
1115     $self->cleanup;
1116     chdir("$self->{cwd}");
1117
1118     $::lxdebug->leave_sub();
1119
1120     return;
1121   }
1122
1123   Common::copy_file_to_webdav_folder($self) if $copy_to_webdav;
1124
1125   if ($self->{media} eq 'email') {
1126
1127     my $mail = Mailer->new;
1128
1129     map { $mail->{$_} = $self->{$_} }
1130       qw(cc bcc subject message version format);
1131     $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
1132     $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1133     $mail->{fileid} = time() . '.' . $$ . '.';
1134     my $full_signature     =  $self->create_email_signature();
1135     $full_signature        =~ s/\r//g;
1136
1137     # if we send html or plain text inline
1138     if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
1139       $mail->{contenttype}    =  "text/html";
1140       $mail->{message}        =~ s/\r//g;
1141       $mail->{message}        =~ s/\n/<br>\n/g;
1142       $full_signature         =~ s/\n/<br>\n/g;
1143       $mail->{message}       .=  $full_signature;
1144
1145       open(IN, "<:encoding(UTF-8)", $self->{tmpfile})
1146         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1147       $mail->{message} .= $_ while <IN>;
1148       close(IN);
1149
1150     } else {
1151
1152       if (!$self->{"do_not_attach"}) {
1153         my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
1154         $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
1155         $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
1156                                    "name"     => $attachment_name }];
1157       }
1158
1159       $mail->{message} .= $full_signature;
1160     }
1161
1162     my $err = $mail->send();
1163     $self->error($self->cleanup . "$err") if ($err);
1164
1165   } else {
1166
1167     $self->{OUT}      = $out;
1168     $self->{OUT_MODE} = $out_mode;
1169
1170     my $numbytes = (-s $self->{tmpfile});
1171     open(IN, "<", $self->{tmpfile})
1172       or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1173     binmode IN;
1174
1175     $self->{copies} = 1 unless $self->{media} eq 'printer';
1176
1177     chdir("$self->{cwd}");
1178     #print(STDERR "Kopien $self->{copies}\n");
1179     #print(STDERR "OUT $self->{OUT}\n");
1180     for my $i (1 .. $self->{copies}) {
1181       if ($self->{OUT}) {
1182         $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
1183
1184         open  OUT, $self->{OUT_MODE}, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
1185         print OUT $_ while <IN>;
1186         close OUT;
1187         seek  IN, 0, 0;
1188
1189       } else {
1190         my %headers = ('-type'       => $template->get_mime_type,
1191                        '-connection' => 'close',
1192                        '-charset'    => 'UTF-8');
1193
1194         $self->{attachment_filename} ||= $self->generate_attachment_filename;
1195
1196         if ($self->{attachment_filename}) {
1197           %headers = (
1198             %headers,
1199             '-attachment'     => $self->{attachment_filename},
1200             '-content-length' => $numbytes,
1201             '-charset'        => '',
1202           );
1203         }
1204
1205         print $::request->cgi->header(%headers);
1206
1207         $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
1208       }
1209     }
1210
1211     close(IN);
1212   }
1213
1214   $self->cleanup;
1215
1216   chdir("$self->{cwd}");
1217   $main::lxdebug->leave_sub();
1218 }
1219
1220 sub get_formname_translation {
1221   $main::lxdebug->enter_sub();
1222   my ($self, $formname) = @_;
1223
1224   $formname ||= $self->{formname};
1225
1226   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
1227   local $::locale = Locale->new($self->{recipient_locale});
1228
1229   my %formname_translations = (
1230     bin_list                => $main::locale->text('Bin List'),
1231     credit_note             => $main::locale->text('Credit Note'),
1232     invoice                 => $main::locale->text('Invoice'),
1233     pick_list               => $main::locale->text('Pick List'),
1234     proforma                => $main::locale->text('Proforma Invoice'),
1235     purchase_order          => $main::locale->text('Purchase Order'),
1236     request_quotation       => $main::locale->text('RFQ'),
1237     sales_order             => $main::locale->text('Confirmation'),
1238     sales_quotation         => $main::locale->text('Quotation'),
1239     storno_invoice          => $main::locale->text('Storno Invoice'),
1240     sales_delivery_order    => $main::locale->text('Delivery Order'),
1241     purchase_delivery_order => $main::locale->text('Delivery Order'),
1242     dunning                 => $main::locale->text('Dunning'),
1243     letter                  => $main::locale->text('Letter')
1244   );
1245
1246   $main::lxdebug->leave_sub();
1247   return $formname_translations{$formname};
1248 }
1249
1250 sub get_number_prefix_for_type {
1251   $main::lxdebug->enter_sub();
1252   my ($self) = @_;
1253
1254   my $prefix =
1255       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
1256     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
1257     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
1258     : ($self->{type} =~ /letter/)                             ? 'letter'
1259     :                                                           'ord';
1260
1261   # better default like this?
1262   # : ($self->{type} =~ /(sales|purcharse)_order/           :  'ord';
1263   # :                                                           'prefix_undefined';
1264
1265   $main::lxdebug->leave_sub();
1266   return $prefix;
1267 }
1268
1269 sub get_extension_for_format {
1270   $main::lxdebug->enter_sub();
1271   my ($self)    = @_;
1272
1273   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
1274                 : $self->{format} =~ /postscript/i   ? ".ps"
1275                 : $self->{format} =~ /opendocument/i ? ".odt"
1276                 : $self->{format} =~ /excel/i        ? ".xls"
1277                 : $self->{format} =~ /html/i         ? ".html"
1278                 :                                      "";
1279
1280   $main::lxdebug->leave_sub();
1281   return $extension;
1282 }
1283
1284 sub generate_attachment_filename {
1285   $main::lxdebug->enter_sub();
1286   my ($self) = @_;
1287
1288   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
1289   my $recipient_locale = Locale->new($self->{recipient_locale});
1290
1291   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1292   my $prefix              = $self->get_number_prefix_for_type();
1293
1294   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
1295     $attachment_filename .= ' (' . $recipient_locale->text('Preview') . ')' . $self->get_extension_for_format();
1296
1297   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
1298     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
1299
1300   } elsif ($attachment_filename) {
1301     $attachment_filename .=  $self->get_extension_for_format();
1302
1303   } else {
1304     $attachment_filename = "";
1305   }
1306
1307   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
1308   $attachment_filename =~ s|[\s/\\]+|_|g;
1309
1310   $main::lxdebug->leave_sub();
1311   return $attachment_filename;
1312 }
1313
1314 sub generate_email_subject {
1315   $main::lxdebug->enter_sub();
1316   my ($self) = @_;
1317
1318   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1319   my $prefix  = $self->get_number_prefix_for_type();
1320
1321   if ($subject && $self->{"${prefix}number"}) {
1322     $subject .= " " . $self->{"${prefix}number"}
1323   }
1324
1325   $main::lxdebug->leave_sub();
1326   return $subject;
1327 }
1328
1329 sub cleanup {
1330   $main::lxdebug->enter_sub();
1331
1332   my ($self, $application) = @_;
1333
1334   my $error_code = $?;
1335
1336   chdir("$self->{tmpdir}");
1337
1338   my @err = ();
1339   if ((-1 == $error_code) || (127 == (($error_code) >> 8))) {
1340     push @err, $::locale->text('The application "#1" was not found on the system.', $application || 'pdflatex') . ' ' . $::locale->text('Please contact your administrator.');
1341
1342   } elsif (-f "$self->{tmpfile}.err") {
1343     open(FH, "<:encoding(UTF-8)", "$self->{tmpfile}.err");
1344     @err = <FH>;
1345     close(FH);
1346   }
1347
1348   if ($self->{tmpfile} && !($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})) {
1349     $self->{tmpfile} =~ s|.*/||g;
1350     # strip extension
1351     $self->{tmpfile} =~ s/\.\w+$//g;
1352     my $tmpfile = $self->{tmpfile};
1353     unlink(<$tmpfile.*>);
1354   }
1355
1356   chdir("$self->{cwd}");
1357
1358   $main::lxdebug->leave_sub();
1359
1360   return "@err";
1361 }
1362
1363 sub datetonum {
1364   $main::lxdebug->enter_sub();
1365
1366   my ($self, $date, $myconfig) = @_;
1367   my ($yy, $mm, $dd);
1368
1369   if ($date && $date =~ /\D/) {
1370
1371     if ($myconfig->{dateformat} =~ /^yy/) {
1372       ($yy, $mm, $dd) = split /\D/, $date;
1373     }
1374     if ($myconfig->{dateformat} =~ /^mm/) {
1375       ($mm, $dd, $yy) = split /\D/, $date;
1376     }
1377     if ($myconfig->{dateformat} =~ /^dd/) {
1378       ($dd, $mm, $yy) = split /\D/, $date;
1379     }
1380
1381     $dd *= 1;
1382     $mm *= 1;
1383     $yy = ($yy < 70) ? $yy + 2000 : $yy;
1384     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1385
1386     $dd = "0$dd" if ($dd < 10);
1387     $mm = "0$mm" if ($mm < 10);
1388
1389     $date = "$yy$mm$dd";
1390   }
1391
1392   $main::lxdebug->leave_sub();
1393
1394   return $date;
1395 }
1396
1397 # Database routines used throughout
1398
1399 sub dbconnect {
1400   $main::lxdebug->enter_sub(2);
1401
1402   my ($self, $myconfig) = @_;
1403
1404   # connect to database
1405   my $dbh = SL::DBConnect->connect or $self->dberror;
1406
1407   # set db options
1408   if ($myconfig->{dboptions}) {
1409     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1410   }
1411
1412   $main::lxdebug->leave_sub(2);
1413
1414   return $dbh;
1415 }
1416
1417 sub dbconnect_noauto {
1418   $main::lxdebug->enter_sub();
1419
1420   my ($self, $myconfig) = @_;
1421
1422   # connect to database
1423   my $dbh = SL::DBConnect->connect(SL::DBConnect->get_connect_args(AutoCommit => 0)) or $self->dberror;
1424
1425   # set db options
1426   if ($myconfig->{dboptions}) {
1427     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1428   }
1429
1430   $main::lxdebug->leave_sub();
1431
1432   return $dbh;
1433 }
1434
1435 sub get_standard_dbh {
1436   $main::lxdebug->enter_sub(2);
1437
1438   my $self     = shift;
1439   my $myconfig = shift || \%::myconfig;
1440
1441   if ($standard_dbh && !$standard_dbh->{Active}) {
1442     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
1443     undef $standard_dbh;
1444   }
1445
1446   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
1447
1448   $main::lxdebug->leave_sub(2);
1449
1450   return $standard_dbh;
1451 }
1452
1453 sub set_standard_dbh {
1454   my ($self, $dbh) = @_;
1455   my $old_dbh      = $standard_dbh;
1456   $standard_dbh    = $dbh;
1457
1458   return $old_dbh;
1459 }
1460
1461 sub date_closed {
1462   $main::lxdebug->enter_sub();
1463
1464   my ($self, $date, $myconfig) = @_;
1465   my $dbh = $self->get_standard_dbh;
1466
1467   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
1468   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
1469
1470   # Falls $date = '' - Fehlermeldung aus der Datenbank. Ich denke,
1471   # es ist sicher ein conv_date vorher IMMER auszuführen.
1472   # Testfälle ohne definiertes closedto:
1473   #   Leere Datumseingabe i.O.
1474   #     SELECT 1 FROM defaults WHERE '' < closedto
1475   #   normale Zahlungsbuchung Ã¼ber Rechnungsmaske i.O.
1476   #     SELECT 1 FROM defaults WHERE '10.05.2011' < closedto
1477   # Testfälle mit definiertem closedto (30.04.2011):
1478   #  Leere Datumseingabe i.O.
1479   #   SELECT 1 FROM defaults WHERE '' < closedto
1480   # normale Buchung im geschloßenem Zeitraum i.O.
1481   #   SELECT 1 FROM defaults WHERE '21.04.2011' < closedto
1482   #     Fehlermeldung: Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!
1483   # normale Buchung in aktiver Buchungsperiode i.O.
1484   #   SELECT 1 FROM defaults WHERE '01.05.2011' < closedto
1485
1486   my ($closed) = $sth->fetchrow_array;
1487
1488   $main::lxdebug->leave_sub();
1489
1490   return $closed;
1491 }
1492
1493 # prevents bookings to the to far away future
1494 sub date_max_future {
1495   $main::lxdebug->enter_sub();
1496
1497   my ($self, $date, $myconfig) = @_;
1498   my $dbh = $self->get_standard_dbh;
1499
1500   my $query = "SELECT 1 FROM defaults WHERE ? - current_date > max_future_booking_interval";
1501   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
1502
1503   my ($max_future_booking_interval) = $sth->fetchrow_array;
1504
1505   $main::lxdebug->leave_sub();
1506
1507   return $max_future_booking_interval;
1508 }
1509
1510
1511 sub update_balance {
1512   $main::lxdebug->enter_sub();
1513
1514   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1515
1516   # if we have a value, go do it
1517   if ($value != 0) {
1518
1519     # retrieve balance from table
1520     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1521     my $sth = prepare_execute_query($self, $dbh, $query, @values);
1522     my ($balance) = $sth->fetchrow_array;
1523     $sth->finish;
1524
1525     $balance += $value;
1526
1527     # update balance
1528     $query = "UPDATE $table SET $field = $balance WHERE $where";
1529     do_query($self, $dbh, $query, @values);
1530   }
1531   $main::lxdebug->leave_sub();
1532 }
1533
1534 sub update_exchangerate {
1535   $main::lxdebug->enter_sub();
1536
1537   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1538   my ($query);
1539   # some sanity check for currency
1540   if ($curr eq '') {
1541     $main::lxdebug->leave_sub();
1542     return;
1543   }
1544   $query = qq|SELECT name AS curr FROM currencies WHERE id=(SELECT currency_id FROM defaults)|;
1545
1546   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
1547
1548   if ($curr eq $defaultcurrency) {
1549     $main::lxdebug->leave_sub();
1550     return;
1551   }
1552
1553   $query = qq|SELECT e.currency_id FROM exchangerate e
1554                  WHERE e.currency_id = (SELECT cu.id FROM currencies cu WHERE cu.name=?) AND e.transdate = ?
1555                  FOR UPDATE|;
1556   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1557
1558   if ($buy == 0) {
1559     $buy = "";
1560   }
1561   if ($sell == 0) {
1562     $sell = "";
1563   }
1564
1565   $buy = conv_i($buy, "NULL");
1566   $sell = conv_i($sell, "NULL");
1567
1568   my $set;
1569   if ($buy != 0 && $sell != 0) {
1570     $set = "buy = $buy, sell = $sell";
1571   } elsif ($buy != 0) {
1572     $set = "buy = $buy";
1573   } elsif ($sell != 0) {
1574     $set = "sell = $sell";
1575   }
1576
1577   if ($sth->fetchrow_array) {
1578     $query = qq|UPDATE exchangerate
1579                 SET $set
1580                 WHERE currency_id = (SELECT id FROM currencies WHERE name = ?)
1581                 AND transdate = ?|;
1582
1583   } else {
1584     $query = qq|INSERT INTO exchangerate (currency_id, buy, sell, transdate)
1585                 VALUES ((SELECT id FROM currencies WHERE name = ?), $buy, $sell, ?)|;
1586   }
1587   $sth->finish;
1588   do_query($self, $dbh, $query, $curr, $transdate);
1589
1590   $main::lxdebug->leave_sub();
1591 }
1592
1593 sub save_exchangerate {
1594   $main::lxdebug->enter_sub();
1595
1596   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1597
1598   my $dbh = $self->dbconnect($myconfig);
1599
1600   my ($buy, $sell);
1601
1602   $buy  = $rate if $fld eq 'buy';
1603   $sell = $rate if $fld eq 'sell';
1604
1605
1606   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1607
1608
1609   $dbh->disconnect;
1610
1611   $main::lxdebug->leave_sub();
1612 }
1613
1614 sub get_exchangerate {
1615   $main::lxdebug->enter_sub();
1616
1617   my ($self, $dbh, $curr, $transdate, $fld) = @_;
1618   my ($query);
1619
1620   unless ($transdate && $curr) {
1621     $main::lxdebug->leave_sub();
1622     return 1;
1623   }
1624
1625   $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
1626
1627   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
1628
1629   if ($curr eq $defaultcurrency) {
1630     $main::lxdebug->leave_sub();
1631     return 1;
1632   }
1633
1634   $query = qq|SELECT e.$fld FROM exchangerate e
1635                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
1636   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1637
1638
1639
1640   $main::lxdebug->leave_sub();
1641
1642   return $exchangerate;
1643 }
1644
1645 sub check_exchangerate {
1646   $main::lxdebug->enter_sub();
1647
1648   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1649
1650   if ($fld !~/^buy|sell$/) {
1651     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
1652   }
1653
1654   unless ($transdate) {
1655     $main::lxdebug->leave_sub();
1656     return "";
1657   }
1658
1659   my ($defaultcurrency) = $self->get_default_currency($myconfig);
1660
1661   if ($currency eq $defaultcurrency) {
1662     $main::lxdebug->leave_sub();
1663     return 1;
1664   }
1665
1666   my $dbh   = $self->get_standard_dbh($myconfig);
1667   my $query = qq|SELECT e.$fld FROM exchangerate e
1668                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
1669
1670   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1671
1672   $main::lxdebug->leave_sub();
1673
1674   return $exchangerate;
1675 }
1676
1677 sub get_all_currencies {
1678   $main::lxdebug->enter_sub();
1679
1680   my $self     = shift;
1681   my $myconfig = shift || \%::myconfig;
1682   my $dbh      = $self->get_standard_dbh($myconfig);
1683
1684   my $query = qq|SELECT name FROM currencies|;
1685   my @currencies = map { $_->{name} } selectall_hashref_query($self, $dbh, $query);
1686
1687   $main::lxdebug->leave_sub();
1688
1689   return @currencies;
1690 }
1691
1692 sub get_default_currency {
1693   $main::lxdebug->enter_sub();
1694
1695   my ($self, $myconfig) = @_;
1696   my $dbh      = $self->get_standard_dbh($myconfig);
1697   my $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
1698
1699   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
1700
1701   $main::lxdebug->leave_sub();
1702
1703   return $defaultcurrency;
1704 }
1705
1706 sub set_payment_options {
1707   my ($self, $myconfig, $transdate) = @_;
1708
1709   my $terms = $self->{payment_id} ? SL::DB::PaymentTerm->new(id => $self->{payment_id})->load : undef;
1710   return if !$terms;
1711
1712   $transdate                  ||= $self->{invdate} || $self->{transdate};
1713   my $due_date                  = $self->{duedate} || $self->{reqdate};
1714
1715   $self->{$_}                   = $terms->$_ for qw(terms_netto terms_skonto percent_skonto);
1716   $self->{payment_terms}        = $terms->description_long;
1717   $self->{payment_description}  = $terms->description;
1718   $self->{netto_date}           = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'net')->to_kivitendo;
1719   $self->{skonto_date}          = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'discount')->to_kivitendo;
1720
1721   my ($invtotal, $total);
1722   my (%amounts, %formatted_amounts);
1723
1724   if ($self->{type} =~ /_order$/) {
1725     $amounts{invtotal} = $self->{ordtotal};
1726     $amounts{total}    = $self->{ordtotal};
1727
1728   } elsif ($self->{type} =~ /_quotation$/) {
1729     $amounts{invtotal} = $self->{quototal};
1730     $amounts{total}    = $self->{quototal};
1731
1732   } else {
1733     $amounts{invtotal} = $self->{invtotal};
1734     $amounts{total}    = $self->{total};
1735   }
1736   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
1737
1738   $amounts{skonto_in_percent}  = 100.0 * $self->{percent_skonto};
1739   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
1740   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
1741   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
1742
1743   foreach (keys %amounts) {
1744     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
1745     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
1746   }
1747
1748   if ($self->{"language_id"}) {
1749     my $dbh   = $self->get_standard_dbh($myconfig);
1750     my $query =
1751       qq|SELECT t.translation, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1752       qq|FROM generic_translations t | .
1753       qq|LEFT JOIN language l ON t.language_id = l.id | .
1754       qq|WHERE (t.language_id = ?)
1755            AND (t.translation_id = ?)
1756            AND (t.translation_type = 'SL::DB::PaymentTerm/description_long')|;
1757     my ($description_long, $output_numberformat, $output_dateformat,
1758       $output_longdates) =
1759       selectrow_query($self, $dbh, $query,
1760                       $self->{"language_id"}, $self->{"payment_id"});
1761
1762     $self->{payment_terms} = $description_long if ($description_long);
1763
1764     if ($output_dateformat) {
1765       foreach my $key (qw(netto_date skonto_date)) {
1766         $self->{$key} =
1767           $main::locale->reformat_date($myconfig, $self->{$key},
1768                                        $output_dateformat,
1769                                        $output_longdates);
1770       }
1771     }
1772
1773     if ($output_numberformat &&
1774         ($output_numberformat ne $myconfig->{"numberformat"})) {
1775       my $saved_numberformat = $myconfig->{"numberformat"};
1776       $myconfig->{"numberformat"} = $output_numberformat;
1777       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
1778       $myconfig->{"numberformat"} = $saved_numberformat;
1779     }
1780   }
1781
1782   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1783   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1784   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1785   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1786   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1787   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1788   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1789   $self->{payment_terms} =~ s/<\%bic\%>/$self->{bic}/g;
1790   $self->{payment_terms} =~ s/<\%iban\%>/$self->{iban}/g;
1791   $self->{payment_terms} =~ s/<\%mandate_date_of_signature\%>/$self->{mandate_date_of_signature}/g;
1792   $self->{payment_terms} =~ s/<\%mandator_id\%>/$self->{mandator_id}/g;
1793
1794   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
1795
1796   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
1797
1798 }
1799
1800 sub get_template_language {
1801   $main::lxdebug->enter_sub();
1802
1803   my ($self, $myconfig) = @_;
1804
1805   my $template_code = "";
1806
1807   if ($self->{language_id}) {
1808     my $dbh = $self->get_standard_dbh($myconfig);
1809     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1810     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1811   }
1812
1813   $main::lxdebug->leave_sub();
1814
1815   return $template_code;
1816 }
1817
1818 sub get_printer_code {
1819   $main::lxdebug->enter_sub();
1820
1821   my ($self, $myconfig) = @_;
1822
1823   my $template_code = "";
1824
1825   if ($self->{printer_id}) {
1826     my $dbh = $self->get_standard_dbh($myconfig);
1827     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1828     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1829   }
1830
1831   $main::lxdebug->leave_sub();
1832
1833   return $template_code;
1834 }
1835
1836 sub get_shipto {
1837   $main::lxdebug->enter_sub();
1838
1839   my ($self, $myconfig) = @_;
1840
1841   my $template_code = "";
1842
1843   if ($self->{shipto_id}) {
1844     my $dbh = $self->get_standard_dbh($myconfig);
1845     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1846     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1847     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1848   }
1849
1850   $main::lxdebug->leave_sub();
1851 }
1852
1853 sub add_shipto {
1854   $main::lxdebug->enter_sub();
1855
1856   my ($self, $dbh, $id, $module) = @_;
1857
1858   my $shipto;
1859   my @values;
1860
1861   foreach my $item (qw(name department_1 department_2 street zipcode city country
1862                        contact cp_gender phone fax email)) {
1863     if ($self->{"shipto$item"}) {
1864       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1865     }
1866     push(@values, $self->{"shipto${item}"});
1867   }
1868
1869   if ($shipto) {
1870     if ($self->{shipto_id}) {
1871       my $query = qq|UPDATE shipto set
1872                        shiptoname = ?,
1873                        shiptodepartment_1 = ?,
1874                        shiptodepartment_2 = ?,
1875                        shiptostreet = ?,
1876                        shiptozipcode = ?,
1877                        shiptocity = ?,
1878                        shiptocountry = ?,
1879                        shiptocontact = ?,
1880                        shiptocp_gender = ?,
1881                        shiptophone = ?,
1882                        shiptofax = ?,
1883                        shiptoemail = ?
1884                      WHERE shipto_id = ?|;
1885       do_query($self, $dbh, $query, @values, $self->{shipto_id});
1886     } else {
1887       my $query = qq|SELECT * FROM shipto
1888                      WHERE shiptoname = ? AND
1889                        shiptodepartment_1 = ? AND
1890                        shiptodepartment_2 = ? AND
1891                        shiptostreet = ? AND
1892                        shiptozipcode = ? AND
1893                        shiptocity = ? AND
1894                        shiptocountry = ? AND
1895                        shiptocontact = ? AND
1896                        shiptocp_gender = ? AND
1897                        shiptophone = ? AND
1898                        shiptofax = ? AND
1899                        shiptoemail = ? AND
1900                        module = ? AND
1901                        trans_id = ?|;
1902       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
1903       if(!$insert_check){
1904         $query =
1905           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
1906                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
1907                                  shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
1908              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1909         do_query($self, $dbh, $query, $id, @values, $module);
1910       }
1911     }
1912   }
1913
1914   $main::lxdebug->leave_sub();
1915 }
1916
1917 sub get_employee {
1918   $main::lxdebug->enter_sub();
1919
1920   my ($self, $dbh) = @_;
1921
1922   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
1923
1924   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
1925   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
1926   $self->{"employee_id"} *= 1;
1927
1928   $main::lxdebug->leave_sub();
1929 }
1930
1931 sub get_employee_data {
1932   $main::lxdebug->enter_sub();
1933
1934   my $self     = shift;
1935   my %params   = @_;
1936   my $defaults = SL::DB::Default->get;
1937
1938   Common::check_params(\%params, qw(prefix));
1939   Common::check_params_x(\%params, qw(id));
1940
1941   if (!$params{id}) {
1942     $main::lxdebug->leave_sub();
1943     return;
1944   }
1945
1946   my $myconfig = \%main::myconfig;
1947   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
1948
1949   my ($login, $deleted)  = selectrow_query($self, $dbh, qq|SELECT login,deleted FROM employee WHERE id = ?|, conv_i($params{id}));
1950
1951   if ($login) {
1952     # login already fetched and still the same client (mandant) | same for both cases (delete|!delete)
1953     $self->{$params{prefix} . '_login'}   = $login;
1954     $self->{$params{prefix} . "_${_}"}    = $defaults->$_ for qw(address businessnumber co_ustid company duns taxnumber);
1955
1956     if (!$deleted) {
1957       # get employee data from auth.user_config
1958       my $user = User->new(login => $login);
1959       $self->{$params{prefix} . "_${_}"} = $user->{$_} for qw(email fax name signature tel);
1960     } else {
1961       # get saved employee data from employee
1962       my $employee = SL::DB::Manager::Employee->find_by(id => conv_i($params{id}));
1963       $self->{$params{prefix} . "_${_}"} = $employee->{"deleted_$_"} for qw(email fax signature tel);
1964       $self->{$params{prefix} . "_name"} = $employee->name;
1965     }
1966  }
1967   $main::lxdebug->leave_sub();
1968 }
1969
1970 sub _get_contacts {
1971   $main::lxdebug->enter_sub();
1972
1973   my ($self, $dbh, $id, $key) = @_;
1974
1975   $key = "all_contacts" unless ($key);
1976
1977   if (!$id) {
1978     $self->{$key} = [];
1979     $main::lxdebug->leave_sub();
1980     return;
1981   }
1982
1983   my $query =
1984     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
1985     qq|FROM contacts | .
1986     qq|WHERE cp_cv_id = ? | .
1987     qq|ORDER BY lower(cp_name)|;
1988
1989   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
1990
1991   $main::lxdebug->leave_sub();
1992 }
1993
1994 sub _get_projects {
1995   $main::lxdebug->enter_sub();
1996
1997   my ($self, $dbh, $key) = @_;
1998
1999   my ($all, $old_id, $where, @values);
2000
2001   if (ref($key) eq "HASH") {
2002     my $params = $key;
2003
2004     $key = "ALL_PROJECTS";
2005
2006     foreach my $p (keys(%{$params})) {
2007       if ($p eq "all") {
2008         $all = $params->{$p};
2009       } elsif ($p eq "old_id") {
2010         $old_id = $params->{$p};
2011       } elsif ($p eq "key") {
2012         $key = $params->{$p};
2013       }
2014     }
2015   }
2016
2017   if (!$all) {
2018     $where = "WHERE active ";
2019     if ($old_id) {
2020       if (ref($old_id) eq "ARRAY") {
2021         my @ids = grep({ $_ } @{$old_id});
2022         if (@ids) {
2023           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
2024           push(@values, @ids);
2025         }
2026       } else {
2027         $where .= " OR (id = ?) ";
2028         push(@values, $old_id);
2029       }
2030     }
2031   }
2032
2033   my $query =
2034     qq|SELECT id, projectnumber, description, active | .
2035     qq|FROM project | .
2036     $where .
2037     qq|ORDER BY lower(projectnumber)|;
2038
2039   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
2040
2041   $main::lxdebug->leave_sub();
2042 }
2043
2044 sub _get_shipto {
2045   $main::lxdebug->enter_sub();
2046
2047   my ($self, $dbh, $vc_id, $key) = @_;
2048
2049   $key = "all_shipto" unless ($key);
2050
2051   if ($vc_id) {
2052     # get shipping addresses
2053     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
2054
2055     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
2056
2057   } else {
2058     $self->{$key} = [];
2059   }
2060
2061   $main::lxdebug->leave_sub();
2062 }
2063
2064 sub _get_printers {
2065   $main::lxdebug->enter_sub();
2066
2067   my ($self, $dbh, $key) = @_;
2068
2069   $key = "all_printers" unless ($key);
2070
2071   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
2072
2073   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2074
2075   $main::lxdebug->leave_sub();
2076 }
2077
2078 sub _get_charts {
2079   $main::lxdebug->enter_sub();
2080
2081   my ($self, $dbh, $params) = @_;
2082   my ($key);
2083
2084   $key = $params->{key};
2085   $key = "all_charts" unless ($key);
2086
2087   my $transdate = quote_db_date($params->{transdate});
2088
2089   my $query =
2090     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
2091     qq|FROM chart c | .
2092     qq|LEFT JOIN taxkeys tk ON | .
2093     qq|(tk.id = (SELECT id FROM taxkeys | .
2094     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
2095     qq|          ORDER BY startdate DESC LIMIT 1)) | .
2096     qq|ORDER BY c.accno|;
2097
2098   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2099
2100   $main::lxdebug->leave_sub();
2101 }
2102
2103 sub _get_taxcharts {
2104   $main::lxdebug->enter_sub();
2105
2106   my ($self, $dbh, $params) = @_;
2107
2108   my $key = "all_taxcharts";
2109   my @where;
2110
2111   if (ref $params eq 'HASH') {
2112     $key = $params->{key} if ($params->{key});
2113     if ($params->{module} eq 'AR') {
2114       push @where, 'chart_categories ~ \'[ACILQ]\'';
2115
2116     } elsif ($params->{module} eq 'AP') {
2117       push @where, 'chart_categories ~ \'[ACELQ]\'';
2118     }
2119
2120   } elsif ($params) {
2121     $key = $params;
2122   }
2123
2124   my $where = @where ? ' WHERE ' . join(' AND ', map { "($_)" } @where) : '';
2125
2126   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey, rate|;
2127
2128   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2129
2130   $main::lxdebug->leave_sub();
2131 }
2132
2133 sub _get_taxzones {
2134   $main::lxdebug->enter_sub();
2135
2136   my ($self, $dbh, $key) = @_;
2137
2138   $key = "all_taxzones" unless ($key);
2139   my $tzfilter = "";
2140   $tzfilter = "WHERE obsolete is FALSE" if $key eq 'ALL_ACTIVE_TAXZONES';
2141
2142   my $query = qq|SELECT * FROM tax_zones $tzfilter ORDER BY sortkey|;
2143
2144   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2145
2146   $main::lxdebug->leave_sub();
2147 }
2148
2149 sub _get_employees {
2150   $main::lxdebug->enter_sub();
2151
2152   my ($self, $dbh, $params) = @_;
2153
2154   my $deleted = 0;
2155
2156   my $key;
2157   if (ref $params eq 'HASH') {
2158     $key     = $params->{key};
2159     $deleted = $params->{deleted};
2160
2161   } else {
2162     $key = $params;
2163   }
2164
2165   $key     ||= "all_employees";
2166   my $filter = $deleted ? '' : 'WHERE NOT COALESCE(deleted, FALSE)';
2167   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee $filter ORDER BY lower(name)|);
2168
2169   $main::lxdebug->leave_sub();
2170 }
2171
2172 sub _get_business_types {
2173   $main::lxdebug->enter_sub();
2174
2175   my ($self, $dbh, $key) = @_;
2176
2177   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
2178   $options->{key} ||= "all_business_types";
2179   my $where         = '';
2180
2181   if (exists $options->{salesman}) {
2182     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
2183   }
2184
2185   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
2186
2187   $main::lxdebug->leave_sub();
2188 }
2189
2190 sub _get_languages {
2191   $main::lxdebug->enter_sub();
2192
2193   my ($self, $dbh, $key) = @_;
2194
2195   $key = "all_languages" unless ($key);
2196
2197   my $query = qq|SELECT * FROM language ORDER BY id|;
2198
2199   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2200
2201   $main::lxdebug->leave_sub();
2202 }
2203
2204 sub _get_dunning_configs {
2205   $main::lxdebug->enter_sub();
2206
2207   my ($self, $dbh, $key) = @_;
2208
2209   $key = "all_dunning_configs" unless ($key);
2210
2211   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
2212
2213   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2214
2215   $main::lxdebug->leave_sub();
2216 }
2217
2218 sub _get_currencies {
2219 $main::lxdebug->enter_sub();
2220
2221   my ($self, $dbh, $key) = @_;
2222
2223   $key = "all_currencies" unless ($key);
2224
2225   $self->{$key} = [$self->get_all_currencies()];
2226
2227   $main::lxdebug->leave_sub();
2228 }
2229
2230 sub _get_payments {
2231 $main::lxdebug->enter_sub();
2232
2233   my ($self, $dbh, $key) = @_;
2234
2235   $key = "all_payments" unless ($key);
2236
2237   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
2238
2239   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2240
2241   $main::lxdebug->leave_sub();
2242 }
2243
2244 sub _get_customers {
2245   $main::lxdebug->enter_sub();
2246
2247   my ($self, $dbh, $key) = @_;
2248
2249   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
2250   $options->{key}  ||= "all_customers";
2251   my $limit_clause   = $options->{limit} ? "LIMIT $options->{limit}" : '';
2252
2253   my @where;
2254   push @where, qq|business_id IN (SELECT id FROM business WHERE salesman)| if  $options->{business_is_salesman};
2255   push @where, qq|NOT obsolete|                                            if !$options->{with_obsolete};
2256   my $where_str = @where ? "WHERE " . join(" AND ", map { "($_)" } @where) : '';
2257
2258   my $query = qq|SELECT * FROM customer $where_str ORDER BY name $limit_clause|;
2259   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
2260
2261   $main::lxdebug->leave_sub();
2262 }
2263
2264 sub _get_vendors {
2265   $main::lxdebug->enter_sub();
2266
2267   my ($self, $dbh, $key) = @_;
2268
2269   $key = "all_vendors" unless ($key);
2270
2271   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
2272
2273   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2274
2275   $main::lxdebug->leave_sub();
2276 }
2277
2278 sub _get_departments {
2279   $main::lxdebug->enter_sub();
2280
2281   my ($self, $dbh, $key) = @_;
2282
2283   $key = "all_departments" unless ($key);
2284
2285   my $query = qq|SELECT * FROM department ORDER BY description|;
2286
2287   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2288
2289   $main::lxdebug->leave_sub();
2290 }
2291
2292 sub _get_warehouses {
2293   $main::lxdebug->enter_sub();
2294
2295   my ($self, $dbh, $param) = @_;
2296
2297   my ($key, $bins_key);
2298
2299   if ('' eq ref $param) {
2300     $key = $param;
2301
2302   } else {
2303     $key      = $param->{key};
2304     $bins_key = $param->{bins};
2305   }
2306
2307   my $query = qq|SELECT w.* FROM warehouse w
2308                  WHERE (NOT w.invalid) AND
2309                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
2310                  ORDER BY w.sortkey|;
2311
2312   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2313
2314   if ($bins_key) {
2315     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
2316                 ORDER BY description|;
2317     my $sth = prepare_query($self, $dbh, $query);
2318
2319     foreach my $warehouse (@{ $self->{$key} }) {
2320       do_statement($self, $sth, $query, $warehouse->{id});
2321       $warehouse->{$bins_key} = [];
2322
2323       while (my $ref = $sth->fetchrow_hashref()) {
2324         push @{ $warehouse->{$bins_key} }, $ref;
2325       }
2326     }
2327     $sth->finish();
2328   }
2329
2330   $main::lxdebug->leave_sub();
2331 }
2332
2333 sub _get_simple {
2334   $main::lxdebug->enter_sub();
2335
2336   my ($self, $dbh, $table, $key, $sortkey) = @_;
2337
2338   my $query  = qq|SELECT * FROM $table|;
2339   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
2340
2341   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2342
2343   $main::lxdebug->leave_sub();
2344 }
2345
2346 #sub _get_groups {
2347 #  $main::lxdebug->enter_sub();
2348 #
2349 #  my ($self, $dbh, $key) = @_;
2350 #
2351 #  $key ||= "all_groups";
2352 #
2353 #  my $groups = $main::auth->read_groups();
2354 #
2355 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2356 #
2357 #  $main::lxdebug->leave_sub();
2358 #}
2359
2360 sub get_lists {
2361   $main::lxdebug->enter_sub();
2362
2363   my $self = shift;
2364   my %params = @_;
2365
2366   my $dbh = $self->get_standard_dbh(\%main::myconfig);
2367   my ($sth, $query, $ref);
2368
2369   my ($vc, $vc_id);
2370   if ($params{contacts} || $params{shipto}) {
2371     $vc = 'customer' if $self->{"vc"} eq "customer";
2372     $vc = 'vendor'   if $self->{"vc"} eq "vendor";
2373     die "invalid use of get_lists, need 'vc'" unless $vc;
2374     $vc_id = $self->{"${vc}_id"};
2375   }
2376
2377   if ($params{"contacts"}) {
2378     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
2379   }
2380
2381   if ($params{"shipto"}) {
2382     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
2383   }
2384
2385   if ($params{"projects"} || $params{"all_projects"}) {
2386     $self->_get_projects($dbh, $params{"all_projects"} ?
2387                          $params{"all_projects"} : $params{"projects"},
2388                          $params{"all_projects"} ? 1 : 0);
2389   }
2390
2391   if ($params{"printers"}) {
2392     $self->_get_printers($dbh, $params{"printers"});
2393   }
2394
2395   if ($params{"languages"}) {
2396     $self->_get_languages($dbh, $params{"languages"});
2397   }
2398
2399   if ($params{"charts"}) {
2400     $self->_get_charts($dbh, $params{"charts"});
2401   }
2402
2403   if ($params{"taxcharts"}) {
2404     $self->_get_taxcharts($dbh, $params{"taxcharts"});
2405   }
2406
2407   if ($params{"taxzones"}) {
2408     $self->_get_taxzones($dbh, $params{"taxzones"});
2409   }
2410
2411   if ($params{"employees"}) {
2412     $self->_get_employees($dbh, $params{"employees"});
2413   }
2414
2415   if ($params{"salesmen"}) {
2416     $self->_get_employees($dbh, $params{"salesmen"});
2417   }
2418
2419   if ($params{"business_types"}) {
2420     $self->_get_business_types($dbh, $params{"business_types"});
2421   }
2422
2423   if ($params{"dunning_configs"}) {
2424     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
2425   }
2426
2427   if($params{"currencies"}) {
2428     $self->_get_currencies($dbh, $params{"currencies"});
2429   }
2430
2431   if($params{"customers"}) {
2432     $self->_get_customers($dbh, $params{"customers"});
2433   }
2434
2435   if($params{"vendors"}) {
2436     if (ref $params{"vendors"} eq 'HASH') {
2437       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
2438     } else {
2439       $self->_get_vendors($dbh, $params{"vendors"});
2440     }
2441   }
2442
2443   if($params{"payments"}) {
2444     $self->_get_payments($dbh, $params{"payments"});
2445   }
2446
2447   if($params{"departments"}) {
2448     $self->_get_departments($dbh, $params{"departments"});
2449   }
2450
2451   if ($params{price_factors}) {
2452     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
2453   }
2454
2455   if ($params{warehouses}) {
2456     $self->_get_warehouses($dbh, $params{warehouses});
2457   }
2458
2459 #  if ($params{groups}) {
2460 #    $self->_get_groups($dbh, $params{groups});
2461 #  }
2462
2463   if ($params{partsgroup}) {
2464     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
2465   }
2466
2467   $main::lxdebug->leave_sub();
2468 }
2469
2470 # this sub gets the id and name from $table
2471 sub get_name {
2472   $main::lxdebug->enter_sub();
2473
2474   my ($self, $myconfig, $table) = @_;
2475
2476   # connect to database
2477   my $dbh = $self->get_standard_dbh($myconfig);
2478
2479   $table = $table eq "customer" ? "customer" : "vendor";
2480   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
2481
2482   my ($query, @values);
2483
2484   if (!$self->{openinvoices}) {
2485     my $where;
2486     if ($self->{customernumber} ne "") {
2487       $where = qq|(vc.customernumber ILIKE ?)|;
2488       push(@values, '%' . $self->{customernumber} . '%');
2489     } else {
2490       $where = qq|(vc.name ILIKE ?)|;
2491       push(@values, '%' . $self->{$table} . '%');
2492     }
2493
2494     $query =
2495       qq~SELECT vc.id, vc.name,
2496            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2497          FROM $table vc
2498          WHERE $where AND (NOT vc.obsolete)
2499          ORDER BY vc.name~;
2500   } else {
2501     $query =
2502       qq~SELECT DISTINCT vc.id, vc.name,
2503            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2504          FROM $arap a
2505          JOIN $table vc ON (a.${table}_id = vc.id)
2506          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
2507          ORDER BY vc.name~;
2508     push(@values, '%' . $self->{$table} . '%');
2509   }
2510
2511   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
2512
2513   $main::lxdebug->leave_sub();
2514
2515   return scalar(@{ $self->{name_list} });
2516 }
2517
2518 # the selection sub is used in the AR, AP, IS, IR, DO and OE module
2519 #
2520 sub all_vc {
2521   $main::lxdebug->enter_sub();
2522
2523   my ($self, $myconfig, $table, $module) = @_;
2524
2525   my $ref;
2526   my $dbh = $self->get_standard_dbh;
2527
2528   $table = $table eq "customer" ? "customer" : "vendor";
2529
2530   # build selection list
2531   # Hotfix für Bug 1837 - Besser wäre es alte Buchungsbelege
2532   # OHNE Auswahlliste (reines Textfeld) zu laden. Hilft aber auch
2533   # nicht für veränderbare Belege (oe, do, ...)
2534   my $obsolete = $self->{id} ? '' : "WHERE NOT obsolete";
2535   my $query = qq|SELECT count(*) FROM $table $obsolete|;
2536   my ($count) = selectrow_query($self, $dbh, $query);
2537
2538   if ($count <= $myconfig->{vclimit}) {
2539     $query = qq|SELECT id, name, salesman_id
2540                 FROM $table $obsolete
2541                 ORDER BY name|;
2542     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2543   }
2544
2545   # get self
2546   $self->get_employee($dbh);
2547
2548   # setup sales contacts
2549   $query = qq|SELECT e.id, e.name
2550               FROM employee e
2551               WHERE (e.sales = '1') AND (NOT e.id = ?)
2552               ORDER BY name|;
2553   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2554
2555   # this is for self
2556   push(@{ $self->{all_employees} },
2557        { id   => $self->{employee_id},
2558          name => $self->{employee} });
2559
2560     # prepare query for departments
2561     $query = qq|SELECT id, description
2562                 FROM department
2563                 ORDER BY description|;
2564
2565   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2566
2567   # get languages
2568   $query = qq|SELECT id, description
2569               FROM language
2570               ORDER BY id|;
2571
2572   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2573
2574   # get printer
2575   $query = qq|SELECT printer_description, id
2576               FROM printers
2577               ORDER BY printer_description|;
2578
2579   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2580
2581   # get payment terms
2582   $query = qq|SELECT id, description
2583               FROM payment_terms
2584               ORDER BY sortkey|;
2585
2586   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2587
2588   $main::lxdebug->leave_sub();
2589 }
2590
2591 sub mtime_ischanged {
2592   my ($self, $table, $option) = @_;
2593
2594   return                                       unless $self->{id};
2595   croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
2596
2597   my $query       = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
2598   my $ref         = selectfirst_hashref_query($self, $self->get_standard_dbh, $query, $self->{id});
2599   $ref->{mtime} ||= $ref->{itime};
2600
2601   if ($self->{lastmtime} && $self->{lastmtime} ne $ref->{mtime} ) {
2602       $self->error(($option eq 'mail') ?
2603         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") :
2604         t8("The document has been changed by another user. Please reopen it in another window and copy the changes to the new window")
2605       );
2606     ::end_of_request();
2607   }
2608 }
2609
2610 sub language_payment {
2611   $main::lxdebug->enter_sub();
2612
2613   my ($self, $myconfig) = @_;
2614
2615   my $dbh = $self->get_standard_dbh($myconfig);
2616   # get languages
2617   my $query = qq|SELECT id, description
2618                  FROM language
2619                  ORDER BY id|;
2620
2621   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2622
2623   # get printer
2624   $query = qq|SELECT printer_description, id
2625               FROM printers
2626               ORDER BY printer_description|;
2627
2628   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2629
2630   # get payment terms
2631   $query = qq|SELECT id, description
2632               FROM payment_terms
2633               ORDER BY sortkey|;
2634
2635   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2636
2637   # get buchungsgruppen
2638   $query = qq|SELECT id, description
2639               FROM buchungsgruppen|;
2640
2641   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2642
2643   $main::lxdebug->leave_sub();
2644 }
2645
2646 # this is only used for reports
2647 sub all_departments {
2648   $main::lxdebug->enter_sub();
2649
2650   my ($self, $myconfig, $table) = @_;
2651
2652   my $dbh = $self->get_standard_dbh($myconfig);
2653
2654   my $query = qq|SELECT id, description
2655                  FROM department
2656                  ORDER BY description|;
2657   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2658
2659   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
2660
2661   $main::lxdebug->leave_sub();
2662 }
2663
2664 sub create_links {
2665   $main::lxdebug->enter_sub();
2666
2667   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2668
2669   my ($fld, $arap);
2670   if ($table eq "customer") {
2671     $fld = "buy";
2672     $arap = "ar";
2673   } else {
2674     $table = "vendor";
2675     $fld = "sell";
2676     $arap = "ap";
2677   }
2678
2679   $self->all_vc($myconfig, $table, $module);
2680
2681   # get last customers or vendors
2682   my ($query, $sth, $ref);
2683
2684   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2685   my %xkeyref = ();
2686
2687   if (!$self->{id}) {
2688
2689     my $transdate = "current_date";
2690     if ($self->{transdate}) {
2691       $transdate = $dbh->quote($self->{transdate});
2692     }
2693
2694     # now get the account numbers
2695 #    $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2696 #                FROM chart c, taxkeys tk
2697 #                WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2698 #                  (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2699 #                ORDER BY c.accno|;
2700
2701 #  same query as above, but without expensive subquery for each row. about 80% faster
2702     $query = qq|
2703       SELECT c.accno, c.description, c.link, c.taxkey_id, tk2.tax_id
2704         FROM chart c
2705         -- find newest entries in taxkeys
2706         INNER JOIN (
2707           SELECT chart_id, MAX(startdate) AS startdate
2708           FROM taxkeys
2709           WHERE (startdate <= $transdate)
2710           GROUP BY chart_id
2711         ) tk ON (c.id = tk.chart_id)
2712         -- and load all of those entries
2713         INNER JOIN taxkeys tk2
2714            ON (tk.chart_id = tk2.chart_id AND tk.startdate = tk2.startdate)
2715        WHERE (c.link LIKE ?)
2716       ORDER BY c.accno|;
2717
2718     $sth = $dbh->prepare($query);
2719
2720     do_statement($self, $sth, $query, '%' . $module . '%');
2721
2722     $self->{accounts} = "";
2723     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2724
2725       foreach my $key (split(/:/, $ref->{link})) {
2726         if ($key =~ /\Q$module\E/) {
2727
2728           # cross reference for keys
2729           $xkeyref{ $ref->{accno} } = $key;
2730
2731           push @{ $self->{"${module}_links"}{$key} },
2732             { accno       => $ref->{accno},
2733               description => $ref->{description},
2734               taxkey      => $ref->{taxkey_id},
2735               tax_id      => $ref->{tax_id} };
2736
2737           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2738         }
2739       }
2740     }
2741   }
2742
2743   # get taxkeys and description
2744   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2745   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2746
2747   if (($module eq "AP") || ($module eq "AR")) {
2748     # get tax rates and description
2749     $query = qq|SELECT * FROM tax|;
2750     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2751   }
2752
2753   my $extra_columns = '';
2754   $extra_columns   .= 'a.direct_debit, ' if ($module eq 'AR') || ($module eq 'AP');
2755
2756   if ($self->{id}) {
2757     $query =
2758       qq|SELECT
2759            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2760            a.duedate, a.ordnumber, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.notes,
2761            a.mtime, a.itime,
2762            a.intnotes, a.department_id, a.amount AS oldinvtotal,
2763            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2764            a.globalproject_id, ${extra_columns}
2765            c.name AS $table,
2766            d.description AS department,
2767            e.name AS employee
2768          FROM $arap a
2769          JOIN $table c ON (a.${table}_id = c.id)
2770          LEFT JOIN employee e ON (e.id = a.employee_id)
2771          LEFT JOIN department d ON (d.id = a.department_id)
2772          WHERE a.id = ?|;
2773     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2774
2775     foreach my $key (keys %$ref) {
2776       $self->{$key} = $ref->{$key};
2777     }
2778     $self->{mtime}   ||= $self->{itime};
2779     $self->{lastmtime} = $self->{mtime};
2780     my $transdate = "current_date";
2781     if ($self->{transdate}) {
2782       $transdate = $dbh->quote($self->{transdate});
2783     }
2784
2785     # now get the account numbers
2786     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2787                 FROM chart c
2788                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2789                 WHERE c.link LIKE ?
2790                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2791                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
2792                 ORDER BY c.accno|;
2793
2794     $sth = $dbh->prepare($query);
2795     do_statement($self, $sth, $query, "%$module%");
2796
2797     $self->{accounts} = "";
2798     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2799
2800       foreach my $key (split(/:/, $ref->{link})) {
2801         if ($key =~ /\Q$module\E/) {
2802
2803           # cross reference for keys
2804           $xkeyref{ $ref->{accno} } = $key;
2805
2806           push @{ $self->{"${module}_links"}{$key} },
2807             { accno       => $ref->{accno},
2808               description => $ref->{description},
2809               taxkey      => $ref->{taxkey_id},
2810               tax_id      => $ref->{tax_id} };
2811
2812           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2813         }
2814       }
2815     }
2816
2817
2818     # get amounts from individual entries
2819     $query =
2820       qq|SELECT
2821            c.accno, c.description,
2822            a.acc_trans_id, a.source, a.amount, a.memo, a.transdate, a.gldate, a.cleared, a.project_id, a.taxkey,
2823            p.projectnumber,
2824            t.rate, t.id
2825          FROM acc_trans a
2826          LEFT JOIN chart c ON (c.id = a.chart_id)
2827          LEFT JOIN project p ON (p.id = a.project_id)
2828          LEFT JOIN tax t ON (t.id= a.tax_id)
2829          WHERE a.trans_id = ?
2830          AND a.fx_transaction = '0'
2831          ORDER BY a.acc_trans_id, a.transdate|;
2832     $sth = $dbh->prepare($query);
2833     do_statement($self, $sth, $query, $self->{id});
2834
2835     # get exchangerate for currency
2836     $self->{exchangerate} =
2837       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2838     my $index = 0;
2839
2840     # store amounts in {acc_trans}{$key} for multiple accounts
2841     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
2842       $ref->{exchangerate} =
2843         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2844       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2845         $index++;
2846       }
2847       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2848         $ref->{amount} *= -1;
2849       }
2850       $ref->{index} = $index;
2851
2852       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2853     }
2854
2855     $sth->finish;
2856     #check das:
2857     $query =
2858       qq|SELECT
2859            d.closedto, d.revtrans,
2860            (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
2861            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2862            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2863          FROM defaults d|;
2864     $ref = selectfirst_hashref_query($self, $dbh, $query);
2865     map { $self->{$_} = $ref->{$_} } keys %$ref;
2866
2867   } else {
2868
2869     # get date
2870     $query =
2871        qq|SELECT
2872             current_date AS transdate, d.closedto, d.revtrans,
2873             (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
2874             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2875             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2876           FROM defaults d|;
2877     $ref = selectfirst_hashref_query($self, $dbh, $query);
2878     map { $self->{$_} = $ref->{$_} } keys %$ref;
2879
2880     if ($self->{"$self->{vc}_id"}) {
2881
2882       # only setup currency
2883       ($self->{currency}) = $self->{defaultcurrency} if !$self->{currency};
2884
2885     } else {
2886
2887       $self->lastname_used($dbh, $myconfig, $table, $module);
2888
2889       # get exchangerate for currency
2890       $self->{exchangerate} =
2891         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2892
2893     }
2894
2895   }
2896
2897   $main::lxdebug->leave_sub();
2898 }
2899
2900 sub lastname_used {
2901   $main::lxdebug->enter_sub();
2902
2903   my ($self, $dbh, $myconfig, $table, $module) = @_;
2904
2905   my ($arap, $where);
2906
2907   $table         = $table eq "customer" ? "customer" : "vendor";
2908   my %column_map = ("a.${table}_id"           => "${table}_id",
2909                     "a.department_id"         => "department_id",
2910                     "d.description"           => "department",
2911                     "ct.name"                 => $table,
2912                     "cu.name"                 => "currency",
2913     );
2914
2915   if ($self->{type} =~ /delivery_order/) {
2916     $arap  = 'delivery_orders';
2917     delete $column_map{"cu.currency"};
2918
2919   } elsif ($self->{type} =~ /_order/) {
2920     $arap  = 'oe';
2921     $where = "quotation = '0'";
2922
2923   } elsif ($self->{type} =~ /_quotation/) {
2924     $arap  = 'oe';
2925     $where = "quotation = '1'";
2926
2927   } elsif ($table eq 'customer') {
2928     $arap  = 'ar';
2929
2930   } else {
2931     $arap  = 'ap';
2932
2933   }
2934
2935   $where           = "($where) AND" if ($where);
2936   my $query        = qq|SELECT MAX(id) FROM $arap
2937                         WHERE $where ${table}_id > 0|;
2938   my ($trans_id)   = selectrow_query($self, $dbh, $query);
2939   $trans_id       *= 1;
2940
2941   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
2942   $query           = qq|SELECT $column_spec
2943                         FROM $arap a
2944                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
2945                         LEFT JOIN department d  ON (a.department_id = d.id)
2946                         LEFT JOIN currencies cu ON (cu.id=ct.currency_id)
2947                         WHERE a.id = ?|;
2948   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
2949
2950   map { $self->{$_} = $ref->{$_} } values %column_map;
2951
2952   $main::lxdebug->leave_sub();
2953 }
2954
2955 sub current_date {
2956   $main::lxdebug->enter_sub();
2957
2958   my $self     = shift;
2959   my $myconfig = shift || \%::myconfig;
2960   my ($thisdate, $days) = @_;
2961
2962   my $dbh = $self->get_standard_dbh($myconfig);
2963   my $query;
2964
2965   $days *= 1;
2966   if ($thisdate) {
2967     my $dateformat = $myconfig->{dateformat};
2968     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2969     $thisdate = $dbh->quote($thisdate);
2970     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
2971   } else {
2972     $query = qq|SELECT current_date AS thisdate|;
2973   }
2974
2975   ($thisdate) = selectrow_query($self, $dbh, $query);
2976
2977   $main::lxdebug->leave_sub();
2978
2979   return $thisdate;
2980 }
2981
2982 sub like {
2983   $main::lxdebug->enter_sub();
2984
2985   my ($self, $string) = @_;
2986
2987   if ($string !~ /%/) {
2988     $string = "%$string%";
2989   }
2990
2991   $string =~ s/\'/\'\'/g;
2992
2993   $main::lxdebug->leave_sub();
2994
2995   return $string;
2996 }
2997
2998 sub redo_rows {
2999   $main::lxdebug->enter_sub();
3000
3001   my ($self, $flds, $new, $count, $numrows) = @_;
3002
3003   my @ndx = ();
3004
3005   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
3006
3007   my $i = 0;
3008
3009   # fill rows
3010   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
3011     $i++;
3012     my $j = $item->{ndx} - 1;
3013     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
3014   }
3015
3016   # delete empty rows
3017   for $i ($count + 1 .. $numrows) {
3018     map { delete $self->{"${_}_$i"} } @{$flds};
3019   }
3020
3021   $main::lxdebug->leave_sub();
3022 }
3023
3024 sub update_status {
3025   $main::lxdebug->enter_sub();
3026
3027   my ($self, $myconfig) = @_;
3028
3029   my ($i, $id);
3030
3031   my $dbh = $self->dbconnect_noauto($myconfig);
3032
3033   my $query = qq|DELETE FROM status
3034                  WHERE (formname = ?) AND (trans_id = ?)|;
3035   my $sth = prepare_query($self, $dbh, $query);
3036
3037   if ($self->{formname} =~ /(check|receipt)/) {
3038     for $i (1 .. $self->{rowcount}) {
3039       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
3040     }
3041   } else {
3042     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
3043   }
3044   $sth->finish();
3045
3046   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3047   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3048
3049   my %queued = split / /, $self->{queued};
3050   my @values;
3051
3052   if ($self->{formname} =~ /(check|receipt)/) {
3053
3054     # this is a check or receipt, add one entry for each lineitem
3055     my ($accno) = split /--/, $self->{account};
3056     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
3057                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
3058     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
3059     $sth = prepare_query($self, $dbh, $query);
3060
3061     for $i (1 .. $self->{rowcount}) {
3062       if ($self->{"checked_$i"}) {
3063         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
3064       }
3065     }
3066     $sth->finish();
3067
3068   } else {
3069     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3070                 VALUES (?, ?, ?, ?, ?)|;
3071     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
3072              $queued{$self->{formname}}, $self->{formname});
3073   }
3074
3075   $dbh->commit;
3076   $dbh->disconnect;
3077
3078   $main::lxdebug->leave_sub();
3079 }
3080
3081 sub save_status {
3082   $main::lxdebug->enter_sub();
3083
3084   my ($self, $dbh) = @_;
3085
3086   my ($query, $printed, $emailed);
3087
3088   my $formnames  = $self->{printed};
3089   my $emailforms = $self->{emailed};
3090
3091   $query = qq|DELETE FROM status
3092                  WHERE (formname = ?) AND (trans_id = ?)|;
3093   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
3094
3095   # this only applies to the forms
3096   # checks and receipts are posted when printed or queued
3097
3098   if ($self->{queued}) {
3099     my %queued = split / /, $self->{queued};
3100
3101     foreach my $formname (keys %queued) {
3102       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3103       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3104
3105       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3106                   VALUES (?, ?, ?, ?, ?)|;
3107       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
3108
3109       $formnames  =~ s/\Q$self->{formname}\E//;
3110       $emailforms =~ s/\Q$self->{formname}\E//;
3111
3112     }
3113   }
3114
3115   # save printed, emailed info
3116   $formnames  =~ s/^ +//g;
3117   $emailforms =~ s/^ +//g;
3118
3119   my %status = ();
3120   map { $status{$_}{printed} = 1 } split / +/, $formnames;
3121   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
3122
3123   foreach my $formname (keys %status) {
3124     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
3125     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
3126
3127     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
3128                 VALUES (?, ?, ?, ?)|;
3129     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
3130   }
3131
3132   $main::lxdebug->leave_sub();
3133 }
3134
3135 #--- 4 locale ---#
3136 # $main::locale->text('SAVED')
3137 # $main::locale->text('DELETED')
3138 # $main::locale->text('ADDED')
3139 # $main::locale->text('PAYMENT POSTED')
3140 # $main::locale->text('POSTED')
3141 # $main::locale->text('POSTED AS NEW')
3142 # $main::locale->text('ELSE')
3143 # $main::locale->text('SAVED FOR DUNNING')
3144 # $main::locale->text('DUNNING STARTED')
3145 # $main::locale->text('PRINTED')
3146 # $main::locale->text('MAILED')
3147 # $main::locale->text('SCREENED')
3148 # $main::locale->text('CANCELED')
3149 # $main::locale->text('invoice')
3150 # $main::locale->text('proforma')
3151 # $main::locale->text('sales_order')
3152 # $main::locale->text('pick_list')
3153 # $main::locale->text('purchase_order')
3154 # $main::locale->text('bin_list')
3155 # $main::locale->text('sales_quotation')
3156 # $main::locale->text('request_quotation')
3157
3158 sub save_history {
3159   $main::lxdebug->enter_sub();
3160
3161   my $self = shift;
3162   my $dbh  = shift || $self->get_standard_dbh;
3163
3164   if(!exists $self->{employee_id}) {
3165     &get_employee($self, $dbh);
3166   }
3167
3168   my $query =
3169    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
3170    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
3171   my @values = (conv_i($self->{id}), $self->{login},
3172                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
3173   do_query($self, $dbh, $query, @values);
3174
3175   $dbh->commit;
3176
3177   $main::lxdebug->leave_sub();
3178 }
3179
3180 sub get_history {
3181   $main::lxdebug->enter_sub();
3182
3183   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
3184   my ($orderBy, $desc) = split(/\-\-/, $order);
3185   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
3186   my @tempArray;
3187   my $i = 0;
3188   if ($trans_id ne "") {
3189     my $query =
3190       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 | .
3191       qq|FROM history_erp h | .
3192       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
3193       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
3194       $order;
3195
3196     my $sth = $dbh->prepare($query) || $self->dberror($query);
3197
3198     $sth->execute() || $self->dberror("$query");
3199
3200     while(my $hash_ref = $sth->fetchrow_hashref()) {
3201       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
3202       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
3203       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
3204       $tempArray[$i++] = $hash_ref;
3205     }
3206     $main::lxdebug->leave_sub() and return \@tempArray
3207       if ($i > 0 && $tempArray[0] ne "");
3208   }
3209   $main::lxdebug->leave_sub();
3210   return 0;
3211 }
3212
3213 sub get_partsgroup {
3214   $main::lxdebug->enter_sub();
3215
3216   my ($self, $myconfig, $p) = @_;
3217   my $target = $p->{target} || 'all_partsgroup';
3218
3219   my $dbh = $self->get_standard_dbh($myconfig);
3220
3221   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
3222                  FROM partsgroup pg
3223                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
3224   my @values;
3225
3226   if ($p->{searchitems} eq 'part') {
3227     $query .= qq|WHERE p.inventory_accno_id > 0|;
3228   }
3229   if ($p->{searchitems} eq 'service') {
3230     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
3231   }
3232   if ($p->{searchitems} eq 'assembly') {
3233     $query .= qq|WHERE p.assembly = '1'|;
3234   }
3235   if ($p->{searchitems} eq 'labor') {
3236     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
3237   }
3238
3239   $query .= qq|ORDER BY partsgroup|;
3240
3241   if ($p->{all}) {
3242     $query = qq|SELECT id, partsgroup FROM partsgroup
3243                 ORDER BY partsgroup|;
3244   }
3245
3246   if ($p->{language_code}) {
3247     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
3248                   t.description AS translation
3249                 FROM partsgroup pg
3250                 JOIN parts p ON (p.partsgroup_id = pg.id)
3251                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
3252                 ORDER BY translation|;
3253     @values = ($p->{language_code});
3254   }
3255
3256   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
3257
3258   $main::lxdebug->leave_sub();
3259 }
3260
3261 sub get_pricegroup {
3262   $main::lxdebug->enter_sub();
3263
3264   my ($self, $myconfig, $p) = @_;
3265
3266   my $dbh = $self->get_standard_dbh($myconfig);
3267
3268   my $query = qq|SELECT p.id, p.pricegroup
3269                  FROM pricegroup p|;
3270
3271   $query .= qq| ORDER BY pricegroup|;
3272
3273   if ($p->{all}) {
3274     $query = qq|SELECT id, pricegroup FROM pricegroup
3275                 ORDER BY pricegroup|;
3276   }
3277
3278   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
3279
3280   $main::lxdebug->leave_sub();
3281 }
3282
3283 sub all_years {
3284 # usage $form->all_years($myconfig, [$dbh])
3285 # return list of all years where bookings found
3286 # (@all_years)
3287
3288   $main::lxdebug->enter_sub();
3289
3290   my ($self, $myconfig, $dbh) = @_;
3291
3292   $dbh ||= $self->get_standard_dbh($myconfig);
3293
3294   # get years
3295   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
3296                    (SELECT MAX(transdate) FROM acc_trans)|;
3297   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
3298
3299   if ($myconfig->{dateformat} =~ /^yy/) {
3300     ($startdate) = split /\W/, $startdate;
3301     ($enddate) = split /\W/, $enddate;
3302   } else {
3303     (@_) = split /\W/, $startdate;
3304     $startdate = $_[2];
3305     (@_) = split /\W/, $enddate;
3306     $enddate = $_[2];
3307   }
3308
3309   my @all_years;
3310   $startdate = substr($startdate,0,4);
3311   $enddate = substr($enddate,0,4);
3312
3313   while ($enddate >= $startdate) {
3314     push @all_years, $enddate--;
3315   }
3316
3317   return @all_years;
3318
3319   $main::lxdebug->leave_sub();
3320 }
3321
3322 sub backup_vars {
3323   $main::lxdebug->enter_sub();
3324   my $self = shift;
3325   my @vars = @_;
3326
3327   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
3328
3329   $main::lxdebug->leave_sub();
3330 }
3331
3332 sub restore_vars {
3333   $main::lxdebug->enter_sub();
3334
3335   my $self = shift;
3336   my @vars = @_;
3337
3338   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
3339
3340   $main::lxdebug->leave_sub();
3341 }
3342
3343 sub prepare_for_printing {
3344   my ($self) = @_;
3345
3346   my $defaults         = SL::DB::Default->get;
3347
3348   $self->{templates} ||= $defaults->templates;
3349   $self->{formname}  ||= $self->{type};
3350   $self->{media}     ||= 'email';
3351
3352   die "'media' other than 'email', 'file', 'printer' is not supported yet" unless $self->{media} =~ m/^(?:email|file|printer)$/;
3353
3354   # Several fields that used to reside in %::myconfig (stored in
3355   # auth.user_config) are now stored in defaults. Copy them over for
3356   # compatibility.
3357   $self->{$_} = $defaults->$_ for qw(company address taxnumber co_ustid duns sepa_creditor_id);
3358
3359   $self->{"myconfig_${_}"} = $::myconfig{$_} for grep { $_ ne 'dbpasswd' } keys %::myconfig;
3360
3361   if (!$self->{employee_id}) {
3362     $self->{"employee_${_}"} = $::myconfig{$_} for qw(email tel fax name signature);
3363     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
3364   }
3365
3366   # Load shipping address from database if shipto_id is set.
3367   if ($self->{shipto_id}) {
3368     my $shipto  = SL::DB::Shipto->new(shipto_id => $self->{shipto_id})->load;
3369     $self->{$_} = $shipto->$_ for grep { m{^shipto} } map { $_->name } @{ $shipto->meta->columns };
3370   }
3371
3372   my $language = $self->{language} ? '_' . $self->{language} : '';
3373
3374   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
3375   if ($self->{language_id}) {
3376     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) = AM->get_language_details(\%::myconfig, $self, $self->{language_id});
3377   }
3378
3379   $output_dateformat   ||= $::myconfig{dateformat};
3380   $output_numberformat ||= $::myconfig{numberformat};
3381   $output_longdates    //= 1;
3382
3383   $self->{myconfig_output_dateformat}   = $output_dateformat   // $::myconfig{dateformat};
3384   $self->{myconfig_output_longdates}    = $output_longdates    // 1;
3385   $self->{myconfig_output_numberformat} = $output_numberformat // $::myconfig{numberformat};
3386
3387   # Retrieve accounts for tax calculation.
3388   IC->retrieve_accounts(\%::myconfig, $self, map { $_ => $self->{"id_$_"} } 1 .. $self->{rowcount});
3389
3390   if ($self->{type} =~ /_delivery_order$/) {
3391     DO->order_details(\%::myconfig, $self);
3392   } elsif ($self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/) {
3393     OE->order_details(\%::myconfig, $self);
3394   } else {
3395     IS->invoice_details(\%::myconfig, $self, $::locale);
3396   }
3397
3398   # Chose extension & set source file name
3399   my $extension = 'html';
3400   if ($self->{format} eq 'postscript') {
3401     $self->{postscript}   = 1;
3402     $extension            = 'tex';
3403   } elsif ($self->{"format"} =~ /pdf/) {
3404     $self->{pdf}          = 1;
3405     $extension            = $self->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
3406   } elsif ($self->{"format"} =~ /opendocument/) {
3407     $self->{opendocument} = 1;
3408     $extension            = 'odt';
3409   } elsif ($self->{"format"} =~ /excel/) {
3410     $self->{excel}        = 1;
3411     $extension            = 'xls';
3412   }
3413
3414   my $printer_code    = $self->{printer_code} ? '_' . $self->{printer_code} : '';
3415   my $email_extension = $self->{media} eq 'email' && -f ($defaults->templates . "/$self->{formname}_email${language}.${extension}") ? '_email' : '';
3416   $self->{IN}         = "$self->{formname}${email_extension}${language}${printer_code}.${extension}";
3417
3418   # Format dates.
3419   $self->format_dates($output_dateformat, $output_longdates,
3420                       qw(invdate orddate quodate pldate duedate reqdate transdate shippingdate deliverydate validitydate paymentdate datepaid
3421                          transdate_oe deliverydate_oe employee_startdate employee_enddate),
3422                       grep({ /^(?:datepaid|transdate_oe|reqdate|deliverydate|deliverydate_oe|transdate)_\d+$/ } keys(%{$self})));
3423
3424   $self->reformat_numbers($output_numberformat, 2,
3425                           qw(invtotal ordtotal quototal subtotal linetotal listprice sellprice netprice discount tax taxbase total paid),
3426                           grep({ /^(?:linetotal|listprice|sellprice|netprice|taxbase|discount|paid|subtotal|total|tax)_\d+$/ } keys(%{$self})));
3427
3428   $self->reformat_numbers($output_numberformat, undef, qw(qty price_factor), grep({ /^qty_\d+$/} keys(%{$self})));
3429
3430   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
3431
3432   if (scalar @{ $cvar_date_fields }) {
3433     $self->format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
3434   }
3435
3436   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
3437     $self->reformat_numbers($output_numberformat, $precision, @{ $field_list });
3438   }
3439
3440   $self->{template_meta} = {
3441     formname  => $self->{formname},
3442     language  => SL::DB::Manager::Language->find_by_or_create(id => $self->{language_id} || undef),
3443     format    => $self->{format},
3444     media     => $self->{media},
3445     extension => $extension,
3446     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $self->{printer_id} || undef),
3447     today     => DateTime->today,
3448   };
3449
3450   return $self;
3451 }
3452
3453 sub calculate_arap {
3454   my ($self,$buysell,$taxincluded,$exchangerate,$roundplaces) = @_;
3455
3456   # this function is used to calculate netamount, total_tax and amount for AP and
3457   # AR transactions (Kreditoren-/Debitorenbuchungen) by going over all lines
3458   # (1..$rowcount)
3459   # Thus it needs a fully prepared $form to work on.
3460   # calculate_arap assumes $form->{amount_$i} entries still need to be parsed
3461
3462   # The calculated total values are all rounded (default is to 2 places) and
3463   # returned as parameters rather than directly modifying form.  The aim is to
3464   # make the calculation of AP and AR behave identically.  There is a test-case
3465   # for this function in t/form/arap.t
3466
3467   # While calculating the totals $form->{amount_$i} and $form->{tax_$i} are
3468   # modified and formatted and receive the correct sign for writing straight to
3469   # acc_trans, depending on whether they are ar or ap.
3470
3471   # check parameters
3472   die "taxincluded needed in Form->calculate_arap" unless defined $taxincluded;
3473   die "exchangerate needed in Form->calculate_arap" unless defined $exchangerate;
3474   die 'illegal buysell parameter, has to be \"buy\" or \"sell\" in Form->calculate_arap\n' unless $buysell =~ /^(buy|sell)$/;
3475   $roundplaces = 2 unless $roundplaces;
3476
3477   my $sign = 1;  # adjust final results for writing amount to acc_trans
3478   $sign = -1 if $buysell eq 'buy';
3479
3480   my ($netamount,$total_tax,$amount);
3481
3482   my $tax;
3483
3484   # parse and round amounts, setting correct sign for writing to acc_trans
3485   for my $i (1 .. $self->{rowcount}) {
3486     $self->{"amount_$i"} = $self->round_amount($self->parse_amount(\%::myconfig, $self->{"amount_$i"}) * $exchangerate * $sign, $roundplaces);
3487
3488     $amount += $self->{"amount_$i"} * $sign;
3489   }
3490
3491   for my $i (1 .. $self->{rowcount}) {
3492     next unless $self->{"amount_$i"};
3493     ($self->{"tax_id_$i"}) = split /--/, $self->{"taxchart_$i"};
3494     my $tax_id = $self->{"tax_id_$i"};
3495
3496     my $selected_tax = SL::DB::Manager::Tax->find_by(id => "$tax_id");
3497
3498     if ( $selected_tax ) {
3499
3500       if ( $buysell eq 'sell' ) {
3501         $self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
3502       } else {
3503         $self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
3504       };
3505
3506       $self->{"taxkey_$i"} = $selected_tax->taxkey;
3507       $self->{"taxrate_$i"} = $selected_tax->rate;
3508     };
3509
3510     ($self->{"amount_$i"}, $self->{"tax_$i"}) = $self->calculate_tax($self->{"amount_$i"},$self->{"taxrate_$i"},$taxincluded,$roundplaces);
3511
3512     $netamount  += $self->{"amount_$i"};
3513     $total_tax  += $self->{"tax_$i"};
3514
3515   }
3516   $amount = $netamount + $total_tax;
3517
3518   # due to $sign amount_$i und tax_$i already have the right sign for acc_trans
3519   # but reverse sign of totals for writing amounts to ar
3520   if ( $buysell eq 'buy' ) {
3521     $netamount *= -1;
3522     $amount    *= -1;
3523     $total_tax *= -1;
3524   };
3525
3526   return($netamount,$total_tax,$amount);
3527 }
3528
3529 sub format_dates {
3530   my ($self, $dateformat, $longformat, @indices) = @_;
3531
3532   $dateformat ||= $::myconfig{dateformat};
3533
3534   foreach my $idx (@indices) {
3535     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
3536       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
3537         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $dateformat, $longformat);
3538       }
3539     }
3540
3541     next unless defined $self->{$idx};
3542
3543     if (!ref($self->{$idx})) {
3544       $self->{$idx} = $::locale->reformat_date(\%::myconfig, $self->{$idx}, $dateformat, $longformat);
3545
3546     } elsif (ref($self->{$idx}) eq "ARRAY") {
3547       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
3548         $self->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{$idx}->[$i], $dateformat, $longformat);
3549       }
3550     }
3551   }
3552 }
3553
3554 sub reformat_numbers {
3555   my ($self, $numberformat, $places, @indices) = @_;
3556
3557   return if !$numberformat || ($numberformat eq $::myconfig{numberformat});
3558
3559   foreach my $idx (@indices) {
3560     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
3561       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
3562         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i]);
3563       }
3564     }
3565
3566     next unless defined $self->{$idx};
3567
3568     if (!ref($self->{$idx})) {
3569       $self->{$idx} = $self->parse_amount(\%::myconfig, $self->{$idx});
3570
3571     } elsif (ref($self->{$idx}) eq "ARRAY") {
3572       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
3573         $self->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{$idx}->[$i]);
3574       }
3575     }
3576   }
3577
3578   my $saved_numberformat    = $::myconfig{numberformat};
3579   $::myconfig{numberformat} = $numberformat;
3580
3581   foreach my $idx (@indices) {
3582     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
3583       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
3584         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $places);
3585       }
3586     }
3587
3588     next unless defined $self->{$idx};
3589
3590     if (!ref($self->{$idx})) {
3591       $self->{$idx} = $self->format_amount(\%::myconfig, $self->{$idx}, $places);
3592
3593     } elsif (ref($self->{$idx}) eq "ARRAY") {
3594       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
3595         $self->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{$idx}->[$i], $places);
3596       }
3597     }
3598   }
3599
3600   $::myconfig{numberformat} = $saved_numberformat;
3601 }
3602
3603 sub create_email_signature {
3604
3605   my $client_signature = $::instance_conf->get_signature;
3606   my $user_signature   = $::myconfig{signature};
3607
3608   my $signature = '';
3609   if ( $client_signature or $user_signature ) {
3610     $signature  = "\n\n-- \n";
3611     $signature .= $user_signature   . "\n" if $user_signature;
3612     $signature .= $client_signature . "\n" if $client_signature;
3613   };
3614   return $signature;
3615
3616 };
3617
3618 sub layout {
3619   my ($self) = @_;
3620   $::lxdebug->enter_sub;
3621
3622   my %style_to_script_map = (
3623     v3  => 'v3',
3624     neu => 'new',
3625   );
3626
3627   my $menu_script = $style_to_script_map{$::myconfig{menustyle}} || '';
3628
3629   package main;
3630   require "bin/mozilla/menu$menu_script.pl";
3631   package Form;
3632   require SL::Controller::FrameHeader;
3633
3634
3635   my $layout = SL::Controller::FrameHeader->new->action_header . ::render();
3636
3637   $::lxdebug->leave_sub;
3638   return $layout;
3639 }
3640
3641 sub calculate_tax {
3642   # this function calculates the net amount and tax for the lines in ar, ap and
3643   # gl and is used for update as well as post. When used with update the return
3644   # value of amount isn't needed
3645
3646   # calculate_tax should always work with positive values, or rather as the user inputs them
3647   # calculate_tax uses db/perl numberformat, i.e. parsed numbers
3648   # convert to negative numbers (when necessary) only when writing to acc_trans
3649   # the amount from $form for ap/ar/gl is currently always rounded to 2 decimals before it reaches here
3650   # for post_transaction amount already contains exchangerate and correct sign and is rounded
3651   # calculate_tax doesn't (need to) know anything about exchangerate
3652
3653   my ($self,$amount,$taxrate,$taxincluded,$roundplaces) = @_;
3654
3655   $roundplaces = 2 unless defined $roundplaces;
3656
3657   my $tax;
3658
3659   if ($taxincluded *= 1) {
3660     # calculate tax (unrounded), subtract from amount, round amount and round tax
3661     $tax       = $amount - ($amount / ($taxrate + 1)); # equivalent to: taxrate * amount / (taxrate + 1)
3662     $amount    = $self->round_amount($amount - $tax, $roundplaces);
3663     $tax       = $self->round_amount($tax, $roundplaces);
3664   } else {
3665     $tax       = $amount * $taxrate;
3666     $tax       = $self->round_amount($tax, $roundplaces);
3667   }
3668
3669   $tax = 0 unless $tax;
3670
3671   return ($amount,$tax);
3672 };
3673
3674 1;
3675
3676 __END__
3677
3678 =head1 NAME
3679
3680 SL::Form.pm - main data object.
3681
3682 =head1 SYNOPSIS
3683
3684 This is the main data object of kivitendo.
3685 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
3686 Points of interest for a beginner are:
3687
3688  - $form->error            - renders a generic error in html. accepts an error message
3689  - $form->get_standard_dbh - returns a database connection for the
3690
3691 =head1 SPECIAL FUNCTIONS
3692
3693 =head2 C<redirect_header> $url
3694
3695 Generates a HTTP redirection header for the new C<$url>. Constructs an
3696 absolute URL including scheme, host name and port. If C<$url> is a
3697 relative URL then it is considered relative to kivitendo base URL.
3698
3699 This function C<die>s if headers have already been created with
3700 C<$::form-E<gt>header>.
3701
3702 Examples:
3703
3704   print $::form->redirect_header('oe.pl?action=edit&id=1234');
3705   print $::form->redirect_header('http://www.lx-office.org/');
3706
3707 =head2 C<header>
3708
3709 Generates a general purpose http/html header and includes most of the scripts
3710 and stylesheets needed. Stylesheets can be added with L<use_stylesheet>.
3711
3712 Only one header will be generated. If the method was already called in this
3713 request it will not output anything and return undef. Also if no
3714 HTTP_USER_AGENT is found, no header is generated.
3715
3716 Although header does not accept parameters itself, it will honor special
3717 hashkeys of its Form instance:
3718
3719 =over 4
3720
3721 =item refresh_time
3722
3723 =item refresh_url
3724
3725 If one of these is set, a http-equiv refresh is generated. Missing parameters
3726 default to 3 seconds and the refering url.
3727
3728 =item stylesheet
3729
3730 Either a scalar or an array ref. Will be inlined into the header. Add
3731 stylesheets with the L<use_stylesheet> function.
3732
3733 =item landscape
3734
3735 If true, a css snippet will be generated that sets the page in landscape mode.
3736
3737 =item favicon
3738
3739 Used to override the default favicon.
3740
3741 =item title
3742
3743 A html page title will be generated from this
3744
3745 =item mtime_ischanged
3746
3747 Tries to avoid concurrent write operations to records by checking the database mtime with a fetched one.
3748
3749 Can be used / called with any table, that has itime and mtime attributes.
3750 Valid C<table> names are: oe, ar, ap, delivery_orders, parts.
3751 Can be called wit C<option> mail to generate a different error message.
3752
3753 Returns undef if no save operation has been done yet ($self->{id} not present).
3754 Returns undef if no concurrent write process is detected otherwise a error message.
3755
3756 =back
3757
3758 =cut