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