1 #========= ===========================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (C) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  15 # Contributors: Thomas Bayen <bayen@gmx.de>
 
  16 #               Antti Kaihola <akaihola@siba.fi>
 
  17 #               Moritz Bunkus (tex code)
 
  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.
 
  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
 
  36 #======================================================================
 
  62 use SL::DB::PaymentTerm;
 
  67 use SL::Layout::Dispatcher;
 
  69 use SL::Locale::String;
 
  72 use SL::MoreCommon qw(uri_encode uri_decode);
 
  74 use SL::PrefixedNumber;
 
  82 use List::Util qw(first max min sum);
 
  83 use List::MoreUtils qw(all any apply);
 
  91   disconnect_standard_dbh();
 
  94 sub disconnect_standard_dbh {
 
  95   return unless $standard_dbh;
 
  97   $standard_dbh->rollback();
 
 104   open VERSION_FILE, "VERSION";                 # New but flexible code reads version from VERSION-file
 
 105   my $version =  <VERSION_FILE>;
 
 106   $version    =~ s/[^0-9A-Za-z\.\_\-]//g; # only allow numbers, letters, points, underscores and dashes. Prevents injecting of malicious code.
 
 113   $main::lxdebug->enter_sub();
 
 120   if ($LXDebug::watch_form) {
 
 121     require SL::Watchdog;
 
 122     tie %{ $self }, 'SL::Watchdog';
 
 127   $self->{version} = $self->read_version;
 
 129   $main::lxdebug->leave_sub();
 
 136   SL::Request::read_cgi_input($self);
 
 139 sub _flatten_variables_rec {
 
 140   $main::lxdebug->enter_sub(2);
 
 149   if ('' eq ref $curr->{$key}) {
 
 150     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
 
 152   } elsif ('HASH' eq ref $curr->{$key}) {
 
 153     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
 
 154       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
 
 158     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
 
 159       my $first_array_entry = 1;
 
 161       my $element = $curr->{$key}[$idx];
 
 163       if ('HASH' eq ref $element) {
 
 164         foreach my $hash_key (sort keys %{ $element }) {
 
 165           push @result, $self->_flatten_variables_rec($element, $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
 
 166           $first_array_entry = 0;
 
 169         @result = ({ 'key' => $prefix . $key . ($first_array_entry ? '[+]' : '[]'), 'value' => $element });
 
 174   $main::lxdebug->leave_sub(2);
 
 179 sub flatten_variables {
 
 180   $main::lxdebug->enter_sub(2);
 
 188     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 191   $main::lxdebug->leave_sub(2);
 
 196 sub flatten_standard_variables {
 
 197   $main::lxdebug->enter_sub(2);
 
 200   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
 
 204   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
 
 205     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 208   $main::lxdebug->leave_sub(2);
 
 214   $main::lxdebug->enter_sub();
 
 220   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 222   $main::lxdebug->leave_sub();
 
 226   $main::lxdebug->enter_sub(2);
 
 229   my $password      = $self->{password};
 
 231   $self->{password} = 'X' x 8;
 
 233   local $Data::Dumper::Sortkeys = 1;
 
 234   my $output                    = Dumper($self);
 
 236   $self->{password} = $password;
 
 238   $main::lxdebug->leave_sub(2);
 
 244   my ($self, $str) = @_;
 
 246   return uri_encode($str);
 
 250   my ($self, $str) = @_;
 
 252   return uri_decode($str);
 
 256   $main::lxdebug->enter_sub();
 
 257   my ($self, $str) = @_;
 
 259   if ($str && !ref($str)) {
 
 260     $str =~ s/\"/"/g;
 
 263   $main::lxdebug->leave_sub();
 
 269   $main::lxdebug->enter_sub();
 
 270   my ($self, $str) = @_;
 
 272   if ($str && !ref($str)) {
 
 273     $str =~ s/"/\"/g;
 
 276   $main::lxdebug->leave_sub();
 
 282   $main::lxdebug->enter_sub();
 
 286     map({ print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
 
 288     for (sort keys %$self) {
 
 289       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
 
 290       print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
 
 293   $main::lxdebug->leave_sub();
 
 297   my ($self, $code) = @_;
 
 298   local $self->{__ERROR_HANDLER} = sub { die SL::X::FormError->new($_[0]) };
 
 303   $main::lxdebug->enter_sub();
 
 305   $main::lxdebug->show_backtrace();
 
 307   my ($self, $msg) = @_;
 
 309   if ($self->{__ERROR_HANDLER}) {
 
 310     $self->{__ERROR_HANDLER}->($msg);
 
 312   } elsif ($ENV{HTTP_USER_AGENT}) {
 
 314     $self->show_generic_error($msg);
 
 317     confess "Error: $msg\n";
 
 320   $main::lxdebug->leave_sub();
 
 324   $main::lxdebug->enter_sub();
 
 326   my ($self, $msg) = @_;
 
 328   if ($ENV{HTTP_USER_AGENT}) {
 
 330     print $self->parse_html_template('generic/form_info', { message => $msg });
 
 332   } elsif ($self->{info_function}) {
 
 333     &{ $self->{info_function} }($msg);
 
 338   $main::lxdebug->leave_sub();
 
 341 # calculates the number of rows in a textarea based on the content and column number
 
 342 # can be capped with maxrows
 
 344   $main::lxdebug->enter_sub();
 
 345   my ($self, $str, $cols, $maxrows, $minrows) = @_;
 
 349   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
 
 352   $main::lxdebug->leave_sub();
 
 354   return max(min($rows, $maxrows), $minrows);
 
 358   $main::lxdebug->enter_sub();
 
 360   my ($self, $msg) = @_;
 
 362   $self->error("$msg\n" . $DBI::errstr);
 
 364   $main::lxdebug->leave_sub();
 
 368   $main::lxdebug->enter_sub();
 
 370   my ($self, $name, $msg) = @_;
 
 373   foreach my $part (split m/\./, $name) {
 
 374     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
 
 377     $curr = $curr->{$part};
 
 380   $main::lxdebug->leave_sub();
 
 383 sub _get_request_uri {
 
 386   return URI->new($ENV{HTTP_REFERER})->canonical() if $ENV{HTTP_X_FORWARDED_FOR};
 
 387   return URI->new                                  if !$ENV{REQUEST_URI}; # for testing
 
 389   my $scheme =  $ENV{HTTPS} && (lc $ENV{HTTPS} eq 'on') ? 'https' : 'http';
 
 390   my $port   =  $ENV{SERVER_PORT};
 
 391   $port      =  undef if (($scheme eq 'http' ) && ($port == 80))
 
 392                       || (($scheme eq 'https') && ($port == 443));
 
 394   my $uri    =  URI->new("${scheme}://");
 
 395   $uri->scheme($scheme);
 
 397   $uri->host($ENV{HTTP_HOST} || $ENV{SERVER_ADDR});
 
 398   $uri->path_query($ENV{REQUEST_URI});
 
 404 sub _add_to_request_uri {
 
 407   my $relative_new_path = shift;
 
 408   my $request_uri       = shift || $self->_get_request_uri;
 
 409   my $relative_new_uri  = URI->new($relative_new_path);
 
 410   my @request_segments  = $request_uri->path_segments;
 
 412   my $new_uri           = $request_uri->clone;
 
 413   $new_uri->path_segments(@request_segments[0..scalar(@request_segments) - 2], $relative_new_uri->path_segments);
 
 418 sub create_http_response {
 
 419   $main::lxdebug->enter_sub();
 
 424   my $cgi      = $::request->{cgi};
 
 427   if (defined $main::auth) {
 
 428     my $uri      = $self->_get_request_uri;
 
 429     my @segments = $uri->path_segments;
 
 431     $uri->path_segments(@segments);
 
 433     my $session_cookie_value = $main::auth->get_session_id();
 
 435     if ($session_cookie_value) {
 
 436       $session_cookie = $cgi->cookie('-name'   => $main::auth->get_session_cookie_name(),
 
 437                                      '-value'  => $session_cookie_value,
 
 438                                      '-path'   => $uri->path,
 
 439                                      '-secure' => $ENV{HTTPS});
 
 443   my %cgi_params = ('-type' => $params{content_type});
 
 444   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
 
 445   $cgi_params{'-cookie'}  = $session_cookie  if ($session_cookie);
 
 447   map { $cgi_params{'-' . $_} = $params{$_} if exists $params{$_} } qw(content_disposition content_length);
 
 449   my $output = $cgi->header(%cgi_params);
 
 451   $main::lxdebug->leave_sub();
 
 457   $::lxdebug->enter_sub;
 
 459   my ($self, %params) = @_;
 
 462   $::lxdebug->leave_sub and return if !$ENV{HTTP_USER_AGENT} || $self->{header}++;
 
 464   if ($params{no_layout}) {
 
 465     $::request->{layout} = SL::Layout::Dispatcher->new(style => 'none');
 
 468   my $layout = $::request->{layout};
 
 470   # standard css for all
 
 471   # this should gradually move to the layouts that need it
 
 472   $layout->use_stylesheet("$_.css") for qw(
 
 473     common main menu list_accounts jquery.autocomplete
 
 474     jquery.multiselect2side
 
 475     ui-lightness/jquery-ui
 
 477     tooltipster themes/tooltipster-light
 
 480   $layout->use_javascript("$_.js") for (qw(
 
 481     jquery jquery-ui jquery.cookie jquery.checkall jquery.download
 
 482     jquery/jquery.form jquery/fixes client_js
 
 483     jquery/jquery.tooltipster.min
 
 484     common part_selection
 
 485   ), "jquery/ui/i18n/jquery.ui.datepicker-$::myconfig{countrycode}");
 
 487   $self->{favicon} ||= "favicon.ico";
 
 488   $self->{titlebar} = join ' - ', grep $_, $self->{title}, $self->{login}, $::myconfig{dbname}, $self->{version} if $self->{title} || !$self->{titlebar};
 
 491   if ($self->{refresh_url} || $self->{refresh_time}) {
 
 492     my $refresh_time = $self->{refresh_time} || 3;
 
 493     my $refresh_url  = $self->{refresh_url}  || $ENV{REFERER};
 
 494     push @header, "<meta http-equiv='refresh' content='$refresh_time;$refresh_url'>";
 
 497   my $auto_reload_resources_param = $layout->auto_reload_resources_param;
 
 499   push @header, map { qq|<link rel="stylesheet" href="${_}${auto_reload_resources_param}" type="text/css" title="Stylesheet">| } $layout->stylesheets;
 
 500   push @header, "<style type='text/css'>\@page { size:landscape; }</style> "                     if $self->{landscape};
 
 501   push @header, "<link rel='shortcut icon' href='$self->{favicon}' type='image/x-icon'>"         if -f $self->{favicon};
 
 502   push @header, map { qq|<script type="text/javascript" src="${_}${auto_reload_resources_param}"></script>| }                    $layout->javascripts;
 
 503   push @header, $self->{javascript} if $self->{javascript};
 
 504   push @header, map { $_->show_javascript } @{ $self->{AJAX} || [] };
 
 507     strict       => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">|,
 
 508     transitional => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">|,
 
 509     frameset     => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">|,
 
 510     html5        => qq|<!DOCTYPE html>|,
 
 514   print $self->create_http_response(content_type => 'text/html', charset => 'UTF-8');
 
 515   print $doctypes{$params{doctype} || 'transitional'}, $/;
 
 519   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 
 520   <title>$self->{titlebar}</title>
 
 522   print "  $_\n" for @header;
 
 524   <meta name="robots" content="noindex,nofollow">
 
 529   print $::request->{layout}->pre_content;
 
 530   print $::request->{layout}->start_content;
 
 532   $layout->header_done;
 
 534   $::lxdebug->leave_sub;
 
 538   return unless $::request->{layout}->need_footer;
 
 540   print $::request->{layout}->end_content;
 
 541   print $::request->{layout}->post_content;
 
 543   if (my @inline_scripts = $::request->{layout}->javascripts_inline) {
 
 544     print "<script type='text/javascript'>" . join("; ", @inline_scripts) . "</script>\n";
 
 553 sub ajax_response_header {
 
 554   $main::lxdebug->enter_sub();
 
 558   my $output = $::request->{cgi}->header('-charset' => 'UTF-8');
 
 560   $main::lxdebug->leave_sub();
 
 565 sub redirect_header {
 
 569   my $base_uri = $self->_get_request_uri;
 
 570   my $new_uri  = URI->new_abs($new_url, $base_uri);
 
 572   die "Headers already sent" if $self->{header};
 
 575   return $::request->{cgi}->redirect($new_uri);
 
 578 sub set_standard_title {
 
 579   $::lxdebug->enter_sub;
 
 582   $self->{titlebar}  = "kivitendo " . $::locale->text('Version') . " $self->{version}";
 
 583   $self->{titlebar} .= "- $::myconfig{name}"   if $::myconfig{name};
 
 584   $self->{titlebar} .= "- $::myconfig{dbname}" if $::myconfig{name};
 
 586   $::lxdebug->leave_sub;
 
 589 sub _prepare_html_template {
 
 590   $main::lxdebug->enter_sub();
 
 592   my ($self, $file, $additional_params) = @_;
 
 595   if (!%::myconfig || !$::myconfig{"countrycode"}) {
 
 596     $language = $::lx_office_conf{system}->{language};
 
 598     $language = $main::myconfig{"countrycode"};
 
 600   $language = "de" unless ($language);
 
 602   if (-f "templates/webpages/${file}.html") {
 
 603     $file = "templates/webpages/${file}.html";
 
 605   } elsif (ref $file eq 'SCALAR') {
 
 606     # file is a scalarref, use inline mode
 
 608     my $info = "Web page template '${file}' not found.\n";
 
 610     print qq|<pre>$info</pre>|;
 
 611     $::dispatcher->end_request;
 
 614   $additional_params->{AUTH}          = $::auth;
 
 615   $additional_params->{INSTANCE_CONF} = $::instance_conf;
 
 616   $additional_params->{LOCALE}        = $::locale;
 
 617   $additional_params->{LXCONFIG}      = \%::lx_office_conf;
 
 618   $additional_params->{LXDEBUG}       = $::lxdebug;
 
 619   $additional_params->{MYCONFIG}      = \%::myconfig;
 
 621   $main::lxdebug->leave_sub();
 
 626 sub parse_html_template {
 
 627   $main::lxdebug->enter_sub();
 
 629   my ($self, $file, $additional_params) = @_;
 
 631   $additional_params ||= { };
 
 633   my $real_file = $self->_prepare_html_template($file, $additional_params);
 
 634   my $template  = $self->template || $self->init_template;
 
 636   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 639   $template->process($real_file, $additional_params, \$output) || die $template->error;
 
 641   $main::lxdebug->leave_sub();
 
 649   return $self->template if $self->template;
 
 651   # Force scripts/locales.pl to pick up the exception handling template.
 
 652   # parse_html_template('generic/exception')
 
 653   return $self->template(Template->new({
 
 658      'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 659      'INCLUDE_PATH' => '.:templates/webpages',
 
 660      'COMPILE_EXT'  => '.tcc',
 
 661      'COMPILE_DIR'  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
 
 662      'ERROR'        => 'templates/webpages/generic/exception.html',
 
 663      'ENCODING'     => 'utf8',
 
 669   $self->{template_object} = shift if @_;
 
 670   return $self->{template_object};
 
 673 sub show_generic_error {
 
 674   $main::lxdebug->enter_sub();
 
 676   my ($self, $error, %params) = @_;
 
 678   if ($self->{__ERROR_HANDLER}) {
 
 679     $self->{__ERROR_HANDLER}->($error);
 
 680     $main::lxdebug->leave_sub();
 
 684   if ($::request->is_ajax) {
 
 687       ->render(SL::Controller::Base->new);
 
 688     $::dispatcher->end_request;
 
 692     'title_error' => $params{title},
 
 693     'label_error' => $error,
 
 696   if ($params{action}) {
 
 699     map { delete($self->{$_}); } qw(action);
 
 700     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 702     $add_params->{SHOW_BUTTON}  = 1;
 
 703     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 704     $add_params->{VARIABLES}    = \@vars;
 
 706   } elsif ($params{back_button}) {
 
 707     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 710   $self->{title} = $params{title} if $params{title};
 
 713   print $self->parse_html_template("generic/error", $add_params);
 
 715   print STDERR "Error: $error\n";
 
 717   $main::lxdebug->leave_sub();
 
 719   $::dispatcher->end_request;
 
 722 sub show_generic_information {
 
 723   $main::lxdebug->enter_sub();
 
 725   my ($self, $text, $title) = @_;
 
 728     'title_information' => $title,
 
 729     'label_information' => $text,
 
 732   $self->{title} = $title if ($title);
 
 735   print $self->parse_html_template("generic/information", $add_params);
 
 737   $main::lxdebug->leave_sub();
 
 739   $::dispatcher->end_request;
 
 742 sub _store_redirect_info_in_session {
 
 745   return unless $self->{callback} =~ m:^ ( [^\?/]+ \.pl ) \? (.+) :x;
 
 747   my ($controller, $params) = ($1, $2);
 
 748   my $form                  = { map { map { $self->unescape($_) } split /=/, $_, 2 } split m/\&/, $params };
 
 749   $self->{callback}         = "${controller}?RESTORE_FORM_FROM_SESSION_ID=" . $::auth->save_form_in_session(form => $form);
 
 753   $main::lxdebug->enter_sub();
 
 755   my ($self, $msg) = @_;
 
 757   if (!$self->{callback}) {
 
 761     $self->_store_redirect_info_in_session;
 
 762     print $::form->redirect_header($self->{callback});
 
 765   $::dispatcher->end_request;
 
 767   $main::lxdebug->leave_sub();
 
 770 # sort of columns removed - empty sub
 
 772   $main::lxdebug->enter_sub();
 
 774   my ($self, @columns) = @_;
 
 776   $main::lxdebug->leave_sub();
 
 782   $main::lxdebug->enter_sub(2);
 
 784   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 787   my $neg = $amount < 0;
 
 788   my $force_places = defined $places && $places >= 0;
 
 790   $amount = $self->round_amount($amount, abs $places) if $force_places;
 
 791   $neg    = 0 if $amount == 0; # don't show negative zero
 
 792   $amount = sprintf "%.*f", ($force_places ? $places : 10), abs $amount; # 6 is default for %fa
 
 794   # before the sprintf amount was a number, afterwards it's a string. because of the dynamic nature of perl
 
 795   # this is easy to confuse, so keep in mind: before this comment no s///, m//, concat or other strong ops on
 
 796   # $amount. after this comment no +,-,*,/,abs. it will only introduce subtle bugs.
 
 798   $amount =~ s/0*$// unless defined $places && $places == 0;             # cull trailing 0s
 
 800   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 801   my @p = split(/\./, $amount);                                          # split amount at decimal point
 
 803   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1];                             # add 1,000 delimiters
 
 805   if ($places || $p[1]) {
 
 808             .  (0 x max(abs($places || 0) - length ($p[1]||''), 0));     # pad the fraction
 
 812     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
 813     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
 814                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
 817   $main::lxdebug->leave_sub(2);
 
 821 sub format_amount_units {
 
 822   $main::lxdebug->enter_sub();
 
 827   my $myconfig         = \%main::myconfig;
 
 828   my $amount           = $params{amount} * 1;
 
 829   my $places           = $params{places};
 
 830   my $part_unit_name   = $params{part_unit};
 
 831   my $amount_unit_name = $params{amount_unit};
 
 832   my $conv_units       = $params{conv_units};
 
 833   my $max_places       = $params{max_places};
 
 835   if (!$part_unit_name) {
 
 836     $main::lxdebug->leave_sub();
 
 840   my $all_units        = AM->retrieve_all_units;
 
 842   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
 843     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
 846   if (!scalar @{ $conv_units }) {
 
 847     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
 848     $main::lxdebug->leave_sub();
 
 852   my $part_unit  = $all_units->{$part_unit_name};
 
 853   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
 855   $amount       *= $conv_unit->{factor};
 
 860   foreach my $unit (@$conv_units) {
 
 861     my $last = $unit->{name} eq $part_unit->{name};
 
 863       $num     = int($amount / $unit->{factor});
 
 864       $amount -= $num * $unit->{factor};
 
 867     if ($last ? $amount : $num) {
 
 868       push @values, { "unit"   => $unit->{name},
 
 869                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
 870                       "places" => $last ? $places : 0 };
 
 877     push @values, { "unit"   => $part_unit_name,
 
 882   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
 884   $main::lxdebug->leave_sub();
 
 890   $main::lxdebug->enter_sub(2);
 
 895   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
 896   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
 897   $input =~ s/\#\#/\#/g;
 
 899   $main::lxdebug->leave_sub(2);
 
 907   $main::lxdebug->enter_sub(2);
 
 909   my ($self, $myconfig, $amount) = @_;
 
 911   if (!defined($amount) || ($amount eq '')) {
 
 912     $main::lxdebug->leave_sub(2);
 
 916   if (   ($myconfig->{numberformat} eq '1.000,00')
 
 917       || ($myconfig->{numberformat} eq '1000,00')) {
 
 922   if ($myconfig->{numberformat} eq "1'000.00") {
 
 928   $main::lxdebug->leave_sub(2);
 
 930   # Make sure no code wich is not a math expression ends up in eval().
 
 931   return 0 unless $amount =~ /^ [\s \d \( \) \- \+ \* \/ \. ]* $/x;
 
 933   # Prevent numbers from being parsed as octals;
 
 934   $amount =~ s{ (?<! [\d.] ) 0+ (?= [1-9] ) }{}gx;
 
 936   return scalar(eval($amount)) * 1 ;
 
 940   my ($self, $amount, $places, $adjust) = @_;
 
 942   return 0 if !defined $amount;
 
 947     my $precision = $::instance_conf->get_precision || 0.01;
 
 948     return $self->round_amount( $self->round_amount($amount / $precision, 0) * $precision, $places);
 
 951   # We use Perl's knowledge of string representation for
 
 952   # rounding. First, convert the floating point number to a string
 
 953   # with a high number of places. Then split the string on the decimal
 
 954   # sign and use integer calculation for rounding the decimal places
 
 955   # part. If an overflow occurs then apply that overflow to the part
 
 956   # before the decimal sign as well using integer arithmetic again.
 
 958   my $int_amount = int(abs $amount);
 
 959   my $str_places = max(min(10, 16 - length("$int_amount") - $places), $places);
 
 960   my $amount_str = sprintf '%.*f', $places + $str_places, abs($amount);
 
 962   return $amount unless $amount_str =~ m{^(\d+)\.(\d+)$};
 
 964   my ($pre, $post)      = ($1, $2);
 
 965   my $decimals          = '1' . substr($post, 0, $places);
 
 967   my $propagation_limit = $Config{i32size} == 4 ? 7 : 18;
 
 968   my $add_for_rounding  = substr($post, $places, 1) >= 5 ? 1 : 0;
 
 970   if ($places > $propagation_limit) {
 
 971     $decimals = Math::BigInt->new($decimals)->badd($add_for_rounding);
 
 972     $pre      = Math::BigInt->new($decimals)->badd(1) if substr($decimals, 0, 1) eq '2';
 
 975     $decimals += $add_for_rounding;
 
 976     $pre      += 1 if substr($decimals, 0, 1) eq '2';
 
 979   $amount  = ("${pre}." . substr($decimals, 1)) * ($amount <=> 0);
 
 985   $main::lxdebug->enter_sub();
 
 987   my ($self, $myconfig) = @_;
 
 988   my ($out, $out_mode);
 
 992   my $defaults  = SL::DB::Default->get;
 
 993   my $userspath = $::lx_office_conf{paths}->{userspath};
 
 995   $self->{"cwd"} = getcwd();
 
 996   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1001   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1002     $template_type  = 'OpenDocument';
 
1003     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
1005   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1006     $template_type    = 'LaTeX';
 
1007     $ext_for_format   = 'pdf';
 
1009   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1010     $template_type  = 'HTML';
 
1011     $ext_for_format = 'html';
 
1013   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1014     $template_type  = 'XML';
 
1015     $ext_for_format = 'xml';
 
1017   } elsif ( $self->{"format"} =~ /elster(?:winston|taxbird)/i ) {
 
1018     $template_type = 'XML';
 
1020   } elsif ( $self->{"format"} =~ /excel/i ) {
 
1021     $template_type  = 'Excel';
 
1022     $ext_for_format = 'xls';
 
1024   } elsif ( defined $self->{'format'}) {
 
1025     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1027   } elsif ( $self->{'format'} eq '' ) {
 
1028     $self->error("No Outputformat given: $self->{'format'}");
 
1030   } else { #Catch the rest
 
1031     $self->error("Outputformat not defined: $self->{'format'}");
 
1034   my $template = SL::Template::create(type      => $template_type,
 
1035                                       file_name => $self->{IN},
 
1037                                       myconfig  => $myconfig,
 
1038                                       userspath => $userspath,
 
1039                                       %{ $self->{TEMPLATE_DRIVER_OPTIONS} || {} });
 
1041   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1042   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" } if exists $self->{ $self->{"formname"} . "notes" };
 
1044   if (!$self->{employee_id}) {
 
1045     $self->{"employee_${_}"} = $myconfig->{$_} for qw(email tel fax name signature);
 
1046     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
 
1049   $self->{"myconfig_${_}"} = $myconfig->{$_} for grep { $_ ne 'dbpasswd' } keys %{ $myconfig };
 
1050   $self->{$_}              = $defaults->$_   for qw(co_ustid);
 
1051   $self->{"myconfig_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
 
1052   $self->{AUTH}            = $::auth;
 
1053   $self->{INSTANCE_CONF}   = $::instance_conf;
 
1054   $self->{LOCALE}          = $::locale;
 
1055   $self->{LXCONFIG}        = $::lx_office_conf;
 
1056   $self->{LXDEBUG}         = $::lxdebug;
 
1057   $self->{MYCONFIG}        = \%::myconfig;
 
1059   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1061   # OUT is used for the media, screen, printer, email
 
1062   # for postscript we store a copy in a temporary file
 
1063   my ($temp_fh, $suffix);
 
1064   $suffix =  $self->{IN};
 
1065   $suffix =~ s/.*\.//;
 
1066   ($temp_fh, $self->{tmpfile}) = File::Temp::tempfile(
 
1067     'kivitendo-printXXXXXX',
 
1068     SUFFIX => '.' . ($suffix || 'tex'),
 
1070     UNLINK => ($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})? 0 : 1,
 
1073   (undef, undef, $self->{template_meta}{tmpfile}) = File::Spec->splitpath( $self->{tmpfile} );
 
1075   $out              = $self->{OUT};
 
1076   $out_mode         = $self->{OUT_MODE} || '>';
 
1077   $self->{OUT}      = "$self->{tmpfile}";
 
1078   $self->{OUT_MODE} = '>';
 
1081   my $command_formatter = sub {
 
1082     my ($out_mode, $out) = @_;
 
1083     return $out_mode eq '|-' ? SL::Template::create(type => 'ShellCommand', form => $self)->parse($out) : $out;
 
1087     $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
 
1088     open(OUT, $self->{OUT_MODE}, $self->{OUT}) or $self->error("error on opening $self->{OUT} with mode $self->{OUT_MODE} : $!");
 
1090     *OUT = ($::dispatcher->get_standard_filehandles)[1];
 
1094   if (!$template->parse(*OUT)) {
 
1096     $self->error("$self->{IN} : " . $template->get_error());
 
1099   close OUT if $self->{OUT};
 
1100   # check only one flag (webdav_documents)
 
1101   # therefore copy to webdav, even if we do not have the webdav feature enabled (just archive)
 
1102   my $copy_to_webdav =  $::instance_conf->get_webdav_documents && !$self->{preview} && $self->{tmpdir} && $self->{tmpfile} && $self->{type};
 
1104   if ($self->{media} eq 'file') {
 
1105     copy(join('/', $self->{cwd}, $userspath, $self->{tmpfile}), $out =~ m|^/| ? $out : join('/', $self->{cwd}, $out)) if $template->uses_temp_file;
 
1106     Common::copy_file_to_webdav_folder($self)                                                                         if $copy_to_webdav;
 
1108     chdir("$self->{cwd}");
 
1110     $::lxdebug->leave_sub();
 
1115   Common::copy_file_to_webdav_folder($self) if $copy_to_webdav;
 
1117   if ($self->{media} eq 'email') {
 
1119     my $mail = Mailer->new;
 
1121     map { $mail->{$_} = $self->{$_} }
 
1122       qw(cc bcc subject message version format);
 
1123     $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1124     $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1125     $mail->{fileid} = time() . '.' . $$ . '.';
 
1126     my $full_signature     =  $self->create_email_signature();
 
1127     $full_signature        =~ s/\r//g;
 
1129     # if we send html or plain text inline
 
1130     if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1131       $mail->{contenttype}    =  "text/html";
 
1132       $mail->{message}        =~ s/\r//g;
 
1133       $mail->{message}        =~ s/\n/<br>\n/g;
 
1134       $full_signature         =~ s/\n/<br>\n/g;
 
1135       $mail->{message}       .=  $full_signature;
 
1137       open(IN, "<:encoding(UTF-8)", $self->{tmpfile})
 
1138         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1139       $mail->{message} .= $_ while <IN>;
 
1144       if (!$self->{"do_not_attach"}) {
 
1145         my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1146         $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1147         $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1148                                    "name"     => $attachment_name }];
 
1151       $mail->{message} .= $full_signature;
 
1154     my $err = $mail->send();
 
1155     $self->error($self->cleanup . "$err") if ($err);
 
1159     $self->{OUT}      = $out;
 
1160     $self->{OUT_MODE} = $out_mode;
 
1162     my $numbytes = (-s $self->{tmpfile});
 
1163     open(IN, "<", $self->{tmpfile})
 
1164       or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1167     $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1169     chdir("$self->{cwd}");
 
1170     #print(STDERR "Kopien $self->{copies}\n");
 
1171     #print(STDERR "OUT $self->{OUT}\n");
 
1172     for my $i (1 .. $self->{copies}) {
 
1174         $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
 
1176         open  OUT, $self->{OUT_MODE}, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1177         print OUT $_ while <IN>;
 
1182         my %headers = ('-type'       => $template->get_mime_type,
 
1183                        '-connection' => 'close',
 
1184                        '-charset'    => 'UTF-8');
 
1186         $self->{attachment_filename} ||= $self->generate_attachment_filename;
 
1188         if ($self->{attachment_filename}) {
 
1191             '-attachment'     => $self->{attachment_filename},
 
1192             '-content-length' => $numbytes,
 
1197         print $::request->cgi->header(%headers);
 
1199         $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
 
1208   chdir("$self->{cwd}");
 
1209   $main::lxdebug->leave_sub();
 
1212 sub get_formname_translation {
 
1213   $main::lxdebug->enter_sub();
 
1214   my ($self, $formname) = @_;
 
1216   $formname ||= $self->{formname};
 
1218   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
 
1219   local $::locale = Locale->new($self->{recipient_locale});
 
1221   my %formname_translations = (
 
1222     bin_list                => $main::locale->text('Bin List'),
 
1223     credit_note             => $main::locale->text('Credit Note'),
 
1224     invoice                 => $main::locale->text('Invoice'),
 
1225     pick_list               => $main::locale->text('Pick List'),
 
1226     proforma                => $main::locale->text('Proforma Invoice'),
 
1227     purchase_order          => $main::locale->text('Purchase Order'),
 
1228     request_quotation       => $main::locale->text('RFQ'),
 
1229     sales_order             => $main::locale->text('Confirmation'),
 
1230     sales_quotation         => $main::locale->text('Quotation'),
 
1231     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1232     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1233     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1234     dunning                 => $main::locale->text('Dunning'),
 
1235     letter                  => $main::locale->text('Letter'),
 
1236     ic_supply               => $main::locale->text('Intra-Community supply'),
 
1239   $main::lxdebug->leave_sub();
 
1240   return $formname_translations{$formname};
 
1243 sub get_number_prefix_for_type {
 
1244   $main::lxdebug->enter_sub();
 
1248       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1249     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1250     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1251     : ($self->{type} =~ /letter/)                             ? 'letter'
 
1254   # better default like this?
 
1255   # : ($self->{type} =~ /(sales|purcharse)_order/           :  'ord';
 
1256   # :                                                           'prefix_undefined';
 
1258   $main::lxdebug->leave_sub();
 
1262 sub get_extension_for_format {
 
1263   $main::lxdebug->enter_sub();
 
1266   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1267                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1268                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1269                 : $self->{format} =~ /excel/i        ? ".xls"
 
1270                 : $self->{format} =~ /html/i         ? ".html"
 
1273   $main::lxdebug->leave_sub();
 
1277 sub generate_attachment_filename {
 
1278   $main::lxdebug->enter_sub();
 
1281   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
 
1282   my $recipient_locale = Locale->new($self->{recipient_locale});
 
1284   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1285   my $prefix              = $self->get_number_prefix_for_type();
 
1287   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1288     $attachment_filename .= ' (' . $recipient_locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1290   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1291     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1293   } elsif ($attachment_filename) {
 
1294     $attachment_filename .=  $self->get_extension_for_format();
 
1297     $attachment_filename = "";
 
1300   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1301   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1303   $main::lxdebug->leave_sub();
 
1304   return $attachment_filename;
 
1307 sub generate_email_subject {
 
1308   $main::lxdebug->enter_sub();
 
1311   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1312   my $prefix  = $self->get_number_prefix_for_type();
 
1314   if ($subject && $self->{"${prefix}number"}) {
 
1315     $subject .= " " . $self->{"${prefix}number"}
 
1318   $main::lxdebug->leave_sub();
 
1323   $main::lxdebug->enter_sub();
 
1325   my ($self, $application) = @_;
 
1327   my $error_code = $?;
 
1329   chdir("$self->{tmpdir}");
 
1332   if ((-1 == $error_code) || (127 == (($error_code) >> 8))) {
 
1333     push @err, $::locale->text('The application "#1" was not found on the system.', $application || 'pdflatex') . ' ' . $::locale->text('Please contact your administrator.');
 
1335   } elsif (-f "$self->{tmpfile}.err") {
 
1336     open(FH, "<:encoding(UTF-8)", "$self->{tmpfile}.err");
 
1341   if ($self->{tmpfile} && !($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})) {
 
1342     $self->{tmpfile} =~ s|.*/||g;
 
1344     $self->{tmpfile} =~ s/\.\w+$//g;
 
1345     my $tmpfile = $self->{tmpfile};
 
1346     unlink(<$tmpfile.*>);
 
1349   chdir("$self->{cwd}");
 
1351   $main::lxdebug->leave_sub();
 
1357   $main::lxdebug->enter_sub();
 
1359   my ($self, $date, $myconfig) = @_;
 
1362   if ($date && $date =~ /\D/) {
 
1364     if ($myconfig->{dateformat} =~ /^yy/) {
 
1365       ($yy, $mm, $dd) = split /\D/, $date;
 
1367     if ($myconfig->{dateformat} =~ /^mm/) {
 
1368       ($mm, $dd, $yy) = split /\D/, $date;
 
1370     if ($myconfig->{dateformat} =~ /^dd/) {
 
1371       ($dd, $mm, $yy) = split /\D/, $date;
 
1376     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1377     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1379     $dd = "0$dd" if ($dd < 10);
 
1380     $mm = "0$mm" if ($mm < 10);
 
1382     $date = "$yy$mm$dd";
 
1385   $main::lxdebug->leave_sub();
 
1390 # Database routines used throughout
 
1393   $main::lxdebug->enter_sub(2);
 
1395   my ($self, $myconfig) = @_;
 
1397   # connect to database
 
1398   my $dbh = SL::DBConnect->connect or $self->dberror;
 
1401   if ($myconfig->{dboptions}) {
 
1402     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1405   $main::lxdebug->leave_sub(2);
 
1410 sub dbconnect_noauto {
 
1411   $main::lxdebug->enter_sub();
 
1413   my ($self, $myconfig) = @_;
 
1415   # connect to database
 
1416   my $dbh = SL::DBConnect->connect(SL::DBConnect->get_connect_args(AutoCommit => 0)) or $self->dberror;
 
1419   if ($myconfig->{dboptions}) {
 
1420     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1423   $main::lxdebug->leave_sub();
 
1428 sub get_standard_dbh {
 
1429   $main::lxdebug->enter_sub(2);
 
1432   my $myconfig = shift || \%::myconfig;
 
1434   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1435     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1436     undef $standard_dbh;
 
1439   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1441   $main::lxdebug->leave_sub(2);
 
1443   return $standard_dbh;
 
1446 sub set_standard_dbh {
 
1447   my ($self, $dbh) = @_;
 
1448   my $old_dbh      = $standard_dbh;
 
1449   $standard_dbh    = $dbh;
 
1455   $main::lxdebug->enter_sub();
 
1457   my ($self, $date, $myconfig) = @_;
 
1458   my $dbh = $self->get_standard_dbh;
 
1460   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1461   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
 
1463   # Falls $date = '' - Fehlermeldung aus der Datenbank. Ich denke,
 
1464   # es ist sicher ein conv_date vorher IMMER auszuführen.
 
1465   # Testfälle ohne definiertes closedto:
 
1466   #   Leere Datumseingabe i.O.
 
1467   #     SELECT 1 FROM defaults WHERE '' < closedto
 
1468   #   normale Zahlungsbuchung Ã¼ber Rechnungsmaske i.O.
 
1469   #     SELECT 1 FROM defaults WHERE '10.05.2011' < closedto
 
1470   # Testfälle mit definiertem closedto (30.04.2011):
 
1471   #  Leere Datumseingabe i.O.
 
1472   #   SELECT 1 FROM defaults WHERE '' < closedto
 
1473   # normale Buchung im geschloßenem Zeitraum i.O.
 
1474   #   SELECT 1 FROM defaults WHERE '21.04.2011' < closedto
 
1475   #     Fehlermeldung: Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!
 
1476   # normale Buchung in aktiver Buchungsperiode i.O.
 
1477   #   SELECT 1 FROM defaults WHERE '01.05.2011' < closedto
 
1479   my ($closed) = $sth->fetchrow_array;
 
1481   $main::lxdebug->leave_sub();
 
1486 # prevents bookings to the to far away future
 
1487 sub date_max_future {
 
1488   $main::lxdebug->enter_sub();
 
1490   my ($self, $date, $myconfig) = @_;
 
1491   my $dbh = $self->get_standard_dbh;
 
1493   my $query = "SELECT 1 FROM defaults WHERE ? - current_date > max_future_booking_interval";
 
1494   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
 
1496   my ($max_future_booking_interval) = $sth->fetchrow_array;
 
1498   $main::lxdebug->leave_sub();
 
1500   return $max_future_booking_interval;
 
1504 sub update_balance {
 
1505   $main::lxdebug->enter_sub();
 
1507   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1509   # if we have a value, go do it
 
1512     # retrieve balance from table
 
1513     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1514     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1515     my ($balance) = $sth->fetchrow_array;
 
1521     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1522     do_query($self, $dbh, $query, @values);
 
1524   $main::lxdebug->leave_sub();
 
1527 sub update_exchangerate {
 
1528   $main::lxdebug->enter_sub();
 
1530   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1532   # some sanity check for currency
 
1534     $main::lxdebug->leave_sub();
 
1537   $query = qq|SELECT name AS curr FROM currencies WHERE id=(SELECT currency_id FROM defaults)|;
 
1539   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
 
1541   if ($curr eq $defaultcurrency) {
 
1542     $main::lxdebug->leave_sub();
 
1546   $query = qq|SELECT e.currency_id FROM exchangerate e
 
1547                  WHERE e.currency_id = (SELECT cu.id FROM currencies cu WHERE cu.name=?) AND e.transdate = ?
 
1549   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1558   $buy = conv_i($buy, "NULL");
 
1559   $sell = conv_i($sell, "NULL");
 
1562   if ($buy != 0 && $sell != 0) {
 
1563     $set = "buy = $buy, sell = $sell";
 
1564   } elsif ($buy != 0) {
 
1565     $set = "buy = $buy";
 
1566   } elsif ($sell != 0) {
 
1567     $set = "sell = $sell";
 
1570   if ($sth->fetchrow_array) {
 
1571     $query = qq|UPDATE exchangerate
 
1573                 WHERE currency_id = (SELECT id FROM currencies WHERE name = ?)
 
1577     $query = qq|INSERT INTO exchangerate (currency_id, buy, sell, transdate)
 
1578                 VALUES ((SELECT id FROM currencies WHERE name = ?), $buy, $sell, ?)|;
 
1581   do_query($self, $dbh, $query, $curr, $transdate);
 
1583   $main::lxdebug->leave_sub();
 
1586 sub save_exchangerate {
 
1587   $main::lxdebug->enter_sub();
 
1589   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1591   my $dbh = $self->dbconnect($myconfig);
 
1595   $buy  = $rate if $fld eq 'buy';
 
1596   $sell = $rate if $fld eq 'sell';
 
1599   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1604   $main::lxdebug->leave_sub();
 
1607 sub get_exchangerate {
 
1608   $main::lxdebug->enter_sub();
 
1610   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1613   unless ($transdate && $curr) {
 
1614     $main::lxdebug->leave_sub();
 
1618   $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
 
1620   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
 
1622   if ($curr eq $defaultcurrency) {
 
1623     $main::lxdebug->leave_sub();
 
1627   $query = qq|SELECT e.$fld FROM exchangerate e
 
1628                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
 
1629   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1633   $main::lxdebug->leave_sub();
 
1635   return $exchangerate;
 
1638 sub check_exchangerate {
 
1639   $main::lxdebug->enter_sub();
 
1641   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1643   if ($fld !~/^buy|sell$/) {
 
1644     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1647   unless ($transdate) {
 
1648     $main::lxdebug->leave_sub();
 
1652   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1654   if ($currency eq $defaultcurrency) {
 
1655     $main::lxdebug->leave_sub();
 
1659   my $dbh   = $self->get_standard_dbh($myconfig);
 
1660   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1661                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
 
1663   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1665   $main::lxdebug->leave_sub();
 
1667   return $exchangerate;
 
1670 sub get_all_currencies {
 
1671   $main::lxdebug->enter_sub();
 
1674   my $myconfig = shift || \%::myconfig;
 
1675   my $dbh      = $self->get_standard_dbh($myconfig);
 
1677   my $query = qq|SELECT name FROM currencies|;
 
1678   my @currencies = map { $_->{name} } selectall_hashref_query($self, $dbh, $query);
 
1680   $main::lxdebug->leave_sub();
 
1685 sub get_default_currency {
 
1686   $main::lxdebug->enter_sub();
 
1688   my ($self, $myconfig) = @_;
 
1689   my $dbh      = $self->get_standard_dbh($myconfig);
 
1690   my $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
 
1692   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
 
1694   $main::lxdebug->leave_sub();
 
1696   return $defaultcurrency;
 
1699 sub set_payment_options {
 
1700   my ($self, $myconfig, $transdate, $type) = @_;
 
1702   my $terms = $self->{payment_id} ? SL::DB::PaymentTerm->new(id => $self->{payment_id})->load : undef;
 
1705   my $is_invoice                = $type =~ m{invoice}i;
 
1707   $transdate                  ||= $self->{invdate} || $self->{transdate};
 
1708   my $due_date                  = $self->{duedate} || $self->{reqdate};
 
1710   $self->{$_}                   = $terms->$_ for qw(terms_netto terms_skonto percent_skonto);
 
1711   $self->{payment_description}  = $terms->description;
 
1712   $self->{netto_date}           = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'net')->to_kivitendo;
 
1713   $self->{skonto_date}          = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'discount')->to_kivitendo;
 
1715   my ($invtotal, $total);
 
1716   my (%amounts, %formatted_amounts);
 
1718   if ($self->{type} =~ /_order$/) {
 
1719     $amounts{invtotal} = $self->{ordtotal};
 
1720     $amounts{total}    = $self->{ordtotal};
 
1722   } elsif ($self->{type} =~ /_quotation$/) {
 
1723     $amounts{invtotal} = $self->{quototal};
 
1724     $amounts{total}    = $self->{quototal};
 
1727     $amounts{invtotal} = $self->{invtotal};
 
1728     $amounts{total}    = $self->{total};
 
1730   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1732   $amounts{skonto_in_percent}  = 100.0 * $self->{percent_skonto};
 
1733   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1734   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1735   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1737   foreach (keys %amounts) {
 
1738     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1739     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1742   if ($self->{"language_id"}) {
 
1743     my $language             = SL::DB::Language->new(id => $self->{language_id})->load;
 
1745     $self->{payment_terms}   = $type =~ m{invoice}i ? $terms->translated_attribute('description_long_invoice', $language->id) : undef;
 
1746     $self->{payment_terms} ||= $terms->translated_attribute('description_long', $language->id);
 
1748     if ($language->output_dateformat) {
 
1749       foreach my $key (qw(netto_date skonto_date)) {
 
1750         $self->{$key} = $::locale->reformat_date($myconfig, $self->{$key}, $language->output_dateformat, $language->output_longdates);
 
1754     if ($language->output_numberformat && ($language->output_numberformat ne $myconfig->{numberformat})) {
 
1755       local $myconfig->{numberformat};
 
1756       $myconfig->{"numberformat"} = $language->output_numberformat;
 
1757       $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) for keys %amounts;
 
1761   $self->{payment_terms} =  $self->{payment_terms} || ($is_invoice ? $terms->description_long_invoice : undef) || $terms->description_long;
 
1763   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1764   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1765   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1766   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1767   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1768   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1769   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1770   $self->{payment_terms} =~ s/<\%bic\%>/$self->{bic}/g;
 
1771   $self->{payment_terms} =~ s/<\%iban\%>/$self->{iban}/g;
 
1772   $self->{payment_terms} =~ s/<\%mandate_date_of_signature\%>/$self->{mandate_date_of_signature}/g;
 
1773   $self->{payment_terms} =~ s/<\%mandator_id\%>/$self->{mandator_id}/g;
 
1775   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1777   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
 
1781 sub get_template_language {
 
1782   $main::lxdebug->enter_sub();
 
1784   my ($self, $myconfig) = @_;
 
1786   my $template_code = "";
 
1788   if ($self->{language_id}) {
 
1789     my $dbh = $self->get_standard_dbh($myconfig);
 
1790     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1791     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1794   $main::lxdebug->leave_sub();
 
1796   return $template_code;
 
1799 sub get_printer_code {
 
1800   $main::lxdebug->enter_sub();
 
1802   my ($self, $myconfig) = @_;
 
1804   my $template_code = "";
 
1806   if ($self->{printer_id}) {
 
1807     my $dbh = $self->get_standard_dbh($myconfig);
 
1808     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1809     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1812   $main::lxdebug->leave_sub();
 
1814   return $template_code;
 
1818   $main::lxdebug->enter_sub();
 
1820   my ($self, $myconfig) = @_;
 
1822   my $template_code = "";
 
1824   if ($self->{shipto_id}) {
 
1825     my $dbh = $self->get_standard_dbh($myconfig);
 
1826     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1827     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1828     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1830     my $cvars = CVar->get_custom_variables(
 
1833       trans_id => $self->{shipto_id},
 
1835     $self->{"shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars };
 
1838   $main::lxdebug->leave_sub();
 
1842   my ($self, $dbh, $id, $module) = @_;
 
1847   foreach my $item (qw(name department_1 department_2 street zipcode city country gln
 
1848                        contact cp_gender phone fax email)) {
 
1849     if ($self->{"shipto$item"}) {
 
1850       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1852     push(@values, $self->{"shipto${item}"});
 
1857   my $shipto_id = $self->{shipto_id};
 
1859   if ($self->{shipto_id}) {
 
1860     my $query = qq|UPDATE shipto set
 
1862                      shiptodepartment_1 = ?,
 
1863                      shiptodepartment_2 = ?,
 
1870                      shiptocp_gender = ?,
 
1874                    WHERE shipto_id = ?|;
 
1875     do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1877     my $query = qq|SELECT * FROM shipto
 
1878                    WHERE shiptoname = ? AND
 
1879                      shiptodepartment_1 = ? AND
 
1880                      shiptodepartment_2 = ? AND
 
1881                      shiptostreet = ? AND
 
1882                      shiptozipcode = ? AND
 
1884                      shiptocountry = ? AND
 
1886                      shiptocontact = ? AND
 
1887                      shiptocp_gender = ? AND
 
1893     my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1896         qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
1897                                shiptostreet, shiptozipcode, shiptocity, shiptocountry, shiptogln,
 
1898                                shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
 
1899            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1900       do_query($self, $dbh, $insert_query, $id, @values, $module);
 
1902       $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1905     $shipto_id = $insert_check->{shipto_id};
 
1908   return unless $shipto_id;
 
1910   CVar->save_custom_variables(
 
1913     trans_id    => $shipto_id,
 
1915     name_prefix => 'shipto',
 
1920   $main::lxdebug->enter_sub();
 
1922   my ($self, $dbh) = @_;
 
1924   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
1926   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
1927   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
1928   $self->{"employee_id"} *= 1;
 
1930   $main::lxdebug->leave_sub();
 
1933 sub get_employee_data {
 
1934   $main::lxdebug->enter_sub();
 
1938   my $defaults = SL::DB::Default->get;
 
1940   Common::check_params(\%params, qw(prefix));
 
1941   Common::check_params_x(\%params, qw(id));
 
1944     $main::lxdebug->leave_sub();
 
1948   my $myconfig = \%main::myconfig;
 
1949   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
1951   my ($login, $deleted)  = selectrow_query($self, $dbh, qq|SELECT login,deleted FROM employee WHERE id = ?|, conv_i($params{id}));
 
1954     # login already fetched and still the same client (mandant) | same for both cases (delete|!delete)
 
1955     $self->{$params{prefix} . '_login'}   = $login;
 
1956     $self->{$params{prefix} . "_${_}"}    = $defaults->$_ for qw(address businessnumber co_ustid company duns taxnumber);
 
1959       # get employee data from auth.user_config
 
1960       my $user = User->new(login => $login);
 
1961       $self->{$params{prefix} . "_${_}"} = $user->{$_} for qw(email fax name signature tel);
 
1963       # get saved employee data from employee
 
1964       my $employee = SL::DB::Manager::Employee->find_by(id => conv_i($params{id}));
 
1965       $self->{$params{prefix} . "_${_}"} = $employee->{"deleted_$_"} for qw(email fax signature tel);
 
1966       $self->{$params{prefix} . "_name"} = $employee->name;
 
1969   $main::lxdebug->leave_sub();
 
1973   $main::lxdebug->enter_sub();
 
1975   my ($self, $dbh, $id, $key) = @_;
 
1977   $key = "all_contacts" unless ($key);
 
1981     $main::lxdebug->leave_sub();
 
1986     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
1987     qq|FROM contacts | .
 
1988     qq|WHERE cp_cv_id = ? | .
 
1989     qq|ORDER BY lower(cp_name)|;
 
1991   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
1993   $main::lxdebug->leave_sub();
 
1997   $main::lxdebug->enter_sub();
 
1999   my ($self, $dbh, $key) = @_;
 
2001   my ($all, $old_id, $where, @values);
 
2003   if (ref($key) eq "HASH") {
 
2006     $key = "ALL_PROJECTS";
 
2008     foreach my $p (keys(%{$params})) {
 
2010         $all = $params->{$p};
 
2011       } elsif ($p eq "old_id") {
 
2012         $old_id = $params->{$p};
 
2013       } elsif ($p eq "key") {
 
2014         $key = $params->{$p};
 
2020     $where = "WHERE active ";
 
2022       if (ref($old_id) eq "ARRAY") {
 
2023         my @ids = grep({ $_ } @{$old_id});
 
2025           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
2026           push(@values, @ids);
 
2029         $where .= " OR (id = ?) ";
 
2030         push(@values, $old_id);
 
2036     qq|SELECT id, projectnumber, description, active | .
 
2039     qq|ORDER BY lower(projectnumber)|;
 
2041   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2043   $main::lxdebug->leave_sub();
 
2047   $main::lxdebug->enter_sub();
 
2049   my ($self, $dbh, $vc_id, $key) = @_;
 
2051   $key = "all_shipto" unless ($key);
 
2054     # get shipping addresses
 
2055     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2057     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2063   $main::lxdebug->leave_sub();
 
2067   $main::lxdebug->enter_sub();
 
2069   my ($self, $dbh, $key) = @_;
 
2071   $key = "all_printers" unless ($key);
 
2073   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2075   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2077   $main::lxdebug->leave_sub();
 
2081   $main::lxdebug->enter_sub();
 
2083   my ($self, $dbh, $params) = @_;
 
2086   $key = $params->{key};
 
2087   $key = "all_charts" unless ($key);
 
2089   my $transdate = quote_db_date($params->{transdate});
 
2092     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2094     qq|LEFT JOIN taxkeys tk ON | .
 
2095     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2096     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2097     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2098     qq|ORDER BY c.accno|;
 
2100   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2102   $main::lxdebug->leave_sub();
 
2105 sub _get_taxcharts {
 
2106   $main::lxdebug->enter_sub();
 
2108   my ($self, $dbh, $params) = @_;
 
2110   my $key = "all_taxcharts";
 
2113   if (ref $params eq 'HASH') {
 
2114     $key = $params->{key} if ($params->{key});
 
2115     if ($params->{module} eq 'AR') {
 
2116       push @where, 'chart_categories ~ \'[ACILQ]\'';
 
2118     } elsif ($params->{module} eq 'AP') {
 
2119       push @where, 'chart_categories ~ \'[ACELQ]\'';
 
2126   my $where = @where ? ' WHERE ' . join(' AND ', map { "($_)" } @where) : '';
 
2128   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey, rate|;
 
2130   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2132   $main::lxdebug->leave_sub();
 
2136   $main::lxdebug->enter_sub();
 
2138   my ($self, $dbh, $key) = @_;
 
2140   $key = "all_taxzones" unless ($key);
 
2142   $tzfilter = "WHERE obsolete is FALSE" if $key eq 'ALL_ACTIVE_TAXZONES';
 
2144   my $query = qq|SELECT * FROM tax_zones $tzfilter ORDER BY sortkey|;
 
2146   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2148   $main::lxdebug->leave_sub();
 
2151 sub _get_employees {
 
2152   $main::lxdebug->enter_sub();
 
2154   my ($self, $dbh, $params) = @_;
 
2159   if (ref $params eq 'HASH') {
 
2160     $key     = $params->{key};
 
2161     $deleted = $params->{deleted};
 
2167   $key     ||= "all_employees";
 
2168   my $filter = $deleted ? '' : 'WHERE NOT COALESCE(deleted, FALSE)';
 
2169   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee $filter ORDER BY lower(name)|);
 
2171   $main::lxdebug->leave_sub();
 
2174 sub _get_business_types {
 
2175   $main::lxdebug->enter_sub();
 
2177   my ($self, $dbh, $key) = @_;
 
2179   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2180   $options->{key} ||= "all_business_types";
 
2183   if (exists $options->{salesman}) {
 
2184     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2187   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2189   $main::lxdebug->leave_sub();
 
2192 sub _get_languages {
 
2193   $main::lxdebug->enter_sub();
 
2195   my ($self, $dbh, $key) = @_;
 
2197   $key = "all_languages" unless ($key);
 
2199   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2201   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2203   $main::lxdebug->leave_sub();
 
2206 sub _get_dunning_configs {
 
2207   $main::lxdebug->enter_sub();
 
2209   my ($self, $dbh, $key) = @_;
 
2211   $key = "all_dunning_configs" unless ($key);
 
2213   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2215   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2217   $main::lxdebug->leave_sub();
 
2220 sub _get_currencies {
 
2221 $main::lxdebug->enter_sub();
 
2223   my ($self, $dbh, $key) = @_;
 
2225   $key = "all_currencies" unless ($key);
 
2227   $self->{$key} = [$self->get_all_currencies()];
 
2229   $main::lxdebug->leave_sub();
 
2233 $main::lxdebug->enter_sub();
 
2235   my ($self, $dbh, $key) = @_;
 
2237   $key = "all_payments" unless ($key);
 
2239   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
 
2241   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2243   $main::lxdebug->leave_sub();
 
2246 sub _get_customers {
 
2247   $main::lxdebug->enter_sub();
 
2249   my ($self, $dbh, $key) = @_;
 
2251   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2252   $options->{key}  ||= "all_customers";
 
2253   my $limit_clause   = $options->{limit} ? "LIMIT $options->{limit}" : '';
 
2256   push @where, qq|business_id IN (SELECT id FROM business WHERE salesman)| if  $options->{business_is_salesman};
 
2257   push @where, qq|NOT obsolete|                                            if !$options->{with_obsolete};
 
2258   my $where_str = @where ? "WHERE " . join(" AND ", map { "($_)" } @where) : '';
 
2260   my $query = qq|SELECT * FROM customer $where_str ORDER BY name $limit_clause|;
 
2261   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2263   $main::lxdebug->leave_sub();
 
2267   $main::lxdebug->enter_sub();
 
2269   my ($self, $dbh, $key) = @_;
 
2271   $key = "all_vendors" unless ($key);
 
2273   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2275   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2277   $main::lxdebug->leave_sub();
 
2280 sub _get_departments {
 
2281   $main::lxdebug->enter_sub();
 
2283   my ($self, $dbh, $key) = @_;
 
2285   $key = "all_departments" unless ($key);
 
2287   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2289   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2291   $main::lxdebug->leave_sub();
 
2294 sub _get_warehouses {
 
2295   $main::lxdebug->enter_sub();
 
2297   my ($self, $dbh, $param) = @_;
 
2299   my ($key, $bins_key);
 
2301   if ('' eq ref $param) {
 
2305     $key      = $param->{key};
 
2306     $bins_key = $param->{bins};
 
2309   my $query = qq|SELECT w.* FROM warehouse w
 
2310                  WHERE (NOT w.invalid) AND
 
2311                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2312                  ORDER BY w.sortkey|;
 
2314   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2317     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
 
2318                 ORDER BY description|;
 
2319     my $sth = prepare_query($self, $dbh, $query);
 
2321     foreach my $warehouse (@{ $self->{$key} }) {
 
2322       do_statement($self, $sth, $query, $warehouse->{id});
 
2323       $warehouse->{$bins_key} = [];
 
2325       while (my $ref = $sth->fetchrow_hashref()) {
 
2326         push @{ $warehouse->{$bins_key} }, $ref;
 
2332   $main::lxdebug->leave_sub();
 
2336   $main::lxdebug->enter_sub();
 
2338   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2340   my $query  = qq|SELECT * FROM $table|;
 
2341   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2343   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2345   $main::lxdebug->leave_sub();
 
2349 #  $main::lxdebug->enter_sub();
 
2351 #  my ($self, $dbh, $key) = @_;
 
2353 #  $key ||= "all_groups";
 
2355 #  my $groups = $main::auth->read_groups();
 
2357 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2359 #  $main::lxdebug->leave_sub();
 
2363   $main::lxdebug->enter_sub();
 
2368   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2369   my ($sth, $query, $ref);
 
2372   if ($params{contacts} || $params{shipto}) {
 
2373     $vc = 'customer' if $self->{"vc"} eq "customer";
 
2374     $vc = 'vendor'   if $self->{"vc"} eq "vendor";
 
2375     die "invalid use of get_lists, need 'vc'" unless $vc;
 
2376     $vc_id = $self->{"${vc}_id"};
 
2379   if ($params{"contacts"}) {
 
2380     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2383   if ($params{"shipto"}) {
 
2384     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2387   if ($params{"projects"} || $params{"all_projects"}) {
 
2388     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2389                          $params{"all_projects"} : $params{"projects"},
 
2390                          $params{"all_projects"} ? 1 : 0);
 
2393   if ($params{"printers"}) {
 
2394     $self->_get_printers($dbh, $params{"printers"});
 
2397   if ($params{"languages"}) {
 
2398     $self->_get_languages($dbh, $params{"languages"});
 
2401   if ($params{"charts"}) {
 
2402     $self->_get_charts($dbh, $params{"charts"});
 
2405   if ($params{"taxcharts"}) {
 
2406     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2409   if ($params{"taxzones"}) {
 
2410     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2413   if ($params{"employees"}) {
 
2414     $self->_get_employees($dbh, $params{"employees"});
 
2417   if ($params{"salesmen"}) {
 
2418     $self->_get_employees($dbh, $params{"salesmen"});
 
2421   if ($params{"business_types"}) {
 
2422     $self->_get_business_types($dbh, $params{"business_types"});
 
2425   if ($params{"dunning_configs"}) {
 
2426     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2429   if($params{"currencies"}) {
 
2430     $self->_get_currencies($dbh, $params{"currencies"});
 
2433   if($params{"customers"}) {
 
2434     $self->_get_customers($dbh, $params{"customers"});
 
2437   if($params{"vendors"}) {
 
2438     if (ref $params{"vendors"} eq 'HASH') {
 
2439       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2441       $self->_get_vendors($dbh, $params{"vendors"});
 
2445   if($params{"payments"}) {
 
2446     $self->_get_payments($dbh, $params{"payments"});
 
2449   if($params{"departments"}) {
 
2450     $self->_get_departments($dbh, $params{"departments"});
 
2453   if ($params{price_factors}) {
 
2454     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2457   if ($params{warehouses}) {
 
2458     $self->_get_warehouses($dbh, $params{warehouses});
 
2461 #  if ($params{groups}) {
 
2462 #    $self->_get_groups($dbh, $params{groups});
 
2465   if ($params{partsgroup}) {
 
2466     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2469   $main::lxdebug->leave_sub();
 
2472 # this sub gets the id and name from $table
 
2474   $main::lxdebug->enter_sub();
 
2476   my ($self, $myconfig, $table) = @_;
 
2478   # connect to database
 
2479   my $dbh = $self->get_standard_dbh($myconfig);
 
2481   $table = $table eq "customer" ? "customer" : "vendor";
 
2482   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2484   my ($query, @values);
 
2486   if (!$self->{openinvoices}) {
 
2488     if ($self->{customernumber} ne "") {
 
2489       $where = qq|(vc.customernumber ILIKE ?)|;
 
2490       push(@values, like($self->{customernumber}));
 
2492       $where = qq|(vc.name ILIKE ?)|;
 
2493       push(@values, like($self->{$table}));
 
2497       qq~SELECT vc.id, vc.name,
 
2498            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2500          WHERE $where AND (NOT vc.obsolete)
 
2504       qq~SELECT DISTINCT vc.id, vc.name,
 
2505            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2507          JOIN $table vc ON (a.${table}_id = vc.id)
 
2508          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2510     push(@values, like($self->{$table}));
 
2513   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2515   $main::lxdebug->leave_sub();
 
2517   return scalar(@{ $self->{name_list} });
 
2520 # the selection sub is used in the AR, AP, IS, IR, DO and OE module
 
2523   $main::lxdebug->enter_sub();
 
2525   my ($self, $myconfig, $table, $module) = @_;
 
2528   my $dbh = $self->get_standard_dbh;
 
2530   $table = $table eq "customer" ? "customer" : "vendor";
 
2532   # build selection list
 
2533   # Hotfix für Bug 1837 - Besser wäre es alte Buchungsbelege
 
2534   # OHNE Auswahlliste (reines Textfeld) zu laden. Hilft aber auch
 
2535   # nicht für veränderbare Belege (oe, do, ...)
 
2536   my $obsolete = $self->{id} ? '' : "WHERE NOT obsolete";
 
2537   my $query = qq|SELECT count(*) FROM $table $obsolete|;
 
2538   my ($count) = selectrow_query($self, $dbh, $query);
 
2540   if ($count <= $myconfig->{vclimit}) {
 
2541     $query = qq|SELECT id, name, salesman_id
 
2542                 FROM $table $obsolete
 
2544     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2548   $self->get_employee($dbh);
 
2550   # setup sales contacts
 
2551   $query = qq|SELECT e.id, e.name
 
2553               WHERE (e.sales = '1') AND (NOT e.id = ?)
 
2555   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2558   push(@{ $self->{all_employees} },
 
2559        { id   => $self->{employee_id},
 
2560          name => $self->{employee} });
 
2562     # prepare query for departments
 
2563     $query = qq|SELECT id, description
 
2565                 ORDER BY description|;
 
2567   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2570   $query = qq|SELECT id, description
 
2574   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2577   $query = qq|SELECT printer_description, id
 
2579               ORDER BY printer_description|;
 
2581   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2584   $query = qq|SELECT id, description
 
2588   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2590   $main::lxdebug->leave_sub();
 
2594   my ($self, $table, $option) = @_;
 
2596   return                                       unless $self->{id};
 
2597   croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
 
2599   my $query       = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
 
2600   my $ref         = selectfirst_hashref_query($self, $self->get_standard_dbh, $query, $self->{id});
 
2601   $ref->{mtime} ||= $ref->{itime};
 
2602   $self->{lastmtime} = $ref->{mtime};
 
2603   $main::lxdebug->message(LXDebug->DEBUG2(),"new lastmtime=".$self->{lastmtime});
 
2606 sub mtime_ischanged {
 
2607   my ($self, $table, $option) = @_;
 
2609   return                                       unless $self->{id};
 
2610   croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
 
2612   my $query       = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
 
2613   my $ref         = selectfirst_hashref_query($self, $self->get_standard_dbh, $query, $self->{id});
 
2614   $ref->{mtime} ||= $ref->{itime};
 
2616   if ($self->{lastmtime} && $self->{lastmtime} ne $ref->{mtime} ) {
 
2617       $self->error(($option eq 'mail') ?
 
2618         t8("The document has been changed by another user. No mail was sent. Please reopen it in another window and copy the changes to the new window") :
 
2619         t8("The document has been changed by another user. Please reopen it in another window and copy the changes to the new window")
 
2621     $::dispatcher->end_request;
 
2625 sub language_payment {
 
2626   $main::lxdebug->enter_sub();
 
2628   my ($self, $myconfig) = @_;
 
2630   my $dbh = $self->get_standard_dbh($myconfig);
 
2632   my $query = qq|SELECT id, description
 
2636   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2639   $query = qq|SELECT printer_description, id
 
2641               ORDER BY printer_description|;
 
2643   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2646   $query = qq|SELECT id, description
 
2650   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2652   # get buchungsgruppen
 
2653   $query = qq|SELECT id, description
 
2654               FROM buchungsgruppen|;
 
2656   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2658   $main::lxdebug->leave_sub();
 
2661 # this is only used for reports
 
2662 sub all_departments {
 
2663   $main::lxdebug->enter_sub();
 
2665   my ($self, $myconfig, $table) = @_;
 
2667   my $dbh = $self->get_standard_dbh($myconfig);
 
2669   my $query = qq|SELECT id, description
 
2671                  ORDER BY description|;
 
2672   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2674   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2676   $main::lxdebug->leave_sub();
 
2680   $main::lxdebug->enter_sub();
 
2682   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2685   if ($table eq "customer") {
 
2694   $self->all_vc($myconfig, $table, $module);
 
2696   # get last customers or vendors
 
2697   my ($query, $sth, $ref);
 
2699   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2704     my $transdate = "current_date";
 
2705     if ($self->{transdate}) {
 
2706       $transdate = $dbh->quote($self->{transdate});
 
2709     # now get the account numbers
 
2710 #    $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2711 #                FROM chart c, taxkeys tk
 
2712 #                WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2713 #                  (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2714 #                ORDER BY c.accno|;
 
2716 #  same query as above, but without expensive subquery for each row. about 80% faster
 
2718       SELECT c.accno, c.description, c.link, c.taxkey_id, tk2.tax_id
 
2720         -- find newest entries in taxkeys
 
2722           SELECT chart_id, MAX(startdate) AS startdate
 
2724           WHERE (startdate <= $transdate)
 
2726         ) tk ON (c.id = tk.chart_id)
 
2727         -- and load all of those entries
 
2728         INNER JOIN taxkeys tk2
 
2729            ON (tk.chart_id = tk2.chart_id AND tk.startdate = tk2.startdate)
 
2730        WHERE (c.link LIKE ?)
 
2733     $sth = $dbh->prepare($query);
 
2735     do_statement($self, $sth, $query, like($module));
 
2737     $self->{accounts} = "";
 
2738     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2740       foreach my $key (split(/:/, $ref->{link})) {
 
2741         if ($key =~ /\Q$module\E/) {
 
2743           # cross reference for keys
 
2744           $xkeyref{ $ref->{accno} } = $key;
 
2746           push @{ $self->{"${module}_links"}{$key} },
 
2747             { accno       => $ref->{accno},
 
2748               description => $ref->{description},
 
2749               taxkey      => $ref->{taxkey_id},
 
2750               tax_id      => $ref->{tax_id} };
 
2752           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2758   # get taxkeys and description
 
2759   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2760   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2762   if (($module eq "AP") || ($module eq "AR")) {
 
2763     # get tax rates and description
 
2764     $query = qq|SELECT * FROM tax|;
 
2765     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2768   my $extra_columns = '';
 
2769   $extra_columns   .= 'a.direct_debit, ' if ($module eq 'AR') || ($module eq 'AP');
 
2774            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2775            a.duedate, a.ordnumber, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.notes,
 
2777            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2778            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2779            a.globalproject_id, ${extra_columns}
 
2781            d.description AS department,
 
2784          JOIN $table c ON (a.${table}_id = c.id)
 
2785          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2786          LEFT JOIN department d ON (d.id = a.department_id)
 
2788     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2790     foreach my $key (keys %$ref) {
 
2791       $self->{$key} = $ref->{$key};
 
2793     $self->{mtime}   ||= $self->{itime};
 
2794     $self->{lastmtime} = $self->{mtime};
 
2795     my $transdate = "current_date";
 
2796     if ($self->{transdate}) {
 
2797       $transdate = $dbh->quote($self->{transdate});
 
2800     # now get the account numbers
 
2801     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2803                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2805                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2806                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2809     $sth = $dbh->prepare($query);
 
2810     do_statement($self, $sth, $query, like($module));
 
2812     $self->{accounts} = "";
 
2813     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2815       foreach my $key (split(/:/, $ref->{link})) {
 
2816         if ($key =~ /\Q$module\E/) {
 
2818           # cross reference for keys
 
2819           $xkeyref{ $ref->{accno} } = $key;
 
2821           push @{ $self->{"${module}_links"}{$key} },
 
2822             { accno       => $ref->{accno},
 
2823               description => $ref->{description},
 
2824               taxkey      => $ref->{taxkey_id},
 
2825               tax_id      => $ref->{tax_id} };
 
2827           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2833     # get amounts from individual entries
 
2836            c.accno, c.description,
 
2837            a.acc_trans_id, a.source, a.amount, a.memo, a.transdate, a.gldate, a.cleared, a.project_id, a.taxkey,
 
2841          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2842          LEFT JOIN project p ON (p.id = a.project_id)
 
2843          LEFT JOIN tax t ON (t.id= a.tax_id)
 
2844          WHERE a.trans_id = ?
 
2845          AND a.fx_transaction = '0'
 
2846          ORDER BY a.acc_trans_id, a.transdate|;
 
2847     $sth = $dbh->prepare($query);
 
2848     do_statement($self, $sth, $query, $self->{id});
 
2850     # get exchangerate for currency
 
2851     $self->{exchangerate} =
 
2852       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2855     # store amounts in {acc_trans}{$key} for multiple accounts
 
2856     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2857       $ref->{exchangerate} =
 
2858         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2859       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2862       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2863         $ref->{amount} *= -1;
 
2865       $ref->{index} = $index;
 
2867       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2874            d.closedto, d.revtrans,
 
2875            (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
 
2876            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2877            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
 
2878            (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id) AS rndgain_accno,
 
2879            (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id) AS rndloss_accno
 
2881     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2882     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2889             current_date AS transdate, d.closedto, d.revtrans,
 
2890             (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
 
2891             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2892             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
 
2893             (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id) AS rndgain_accno,
 
2894             (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id) AS rndloss_accno
 
2896     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2897     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2899     if ($self->{"$self->{vc}_id"}) {
 
2901       # only setup currency
 
2902       ($self->{currency}) = $self->{defaultcurrency} if !$self->{currency};
 
2906       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2908       # get exchangerate for currency
 
2909       $self->{exchangerate} =
 
2910         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2916   $main::lxdebug->leave_sub();
 
2920   $main::lxdebug->enter_sub();
 
2922   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2926   $table         = $table eq "customer" ? "customer" : "vendor";
 
2927   my %column_map = ("a.${table}_id"           => "${table}_id",
 
2928                     "a.department_id"         => "department_id",
 
2929                     "d.description"           => "department",
 
2930                     "ct.name"                 => $table,
 
2931                     "cu.name"                 => "currency",
 
2934   if ($self->{type} =~ /delivery_order/) {
 
2935     $arap  = 'delivery_orders';
 
2936     delete $column_map{"cu.currency"};
 
2938   } elsif ($self->{type} =~ /_order/) {
 
2940     $where = "quotation = '0'";
 
2942   } elsif ($self->{type} =~ /_quotation/) {
 
2944     $where = "quotation = '1'";
 
2946   } elsif ($table eq 'customer') {
 
2954   $where           = "($where) AND" if ($where);
 
2955   my $query        = qq|SELECT MAX(id) FROM $arap
 
2956                         WHERE $where ${table}_id > 0|;
 
2957   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
2960   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
2961   $query           = qq|SELECT $column_spec
 
2963                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
2964                         LEFT JOIN department d  ON (a.department_id = d.id)
 
2965                         LEFT JOIN currencies cu ON (cu.id=ct.currency_id)
 
2967   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
2969   map { $self->{$_} = $ref->{$_} } values %column_map;
 
2971   $main::lxdebug->leave_sub();
 
2975   $main::lxdebug->enter_sub();
 
2978   my $myconfig = shift || \%::myconfig;
 
2979   my ($thisdate, $days) = @_;
 
2981   my $dbh = $self->get_standard_dbh($myconfig);
 
2986     my $dateformat = $myconfig->{dateformat};
 
2987     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2988     $thisdate = $dbh->quote($thisdate);
 
2989     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
2991     $query = qq|SELECT current_date AS thisdate|;
 
2994   ($thisdate) = selectrow_query($self, $dbh, $query);
 
2996   $main::lxdebug->leave_sub();
 
3002   $main::lxdebug->enter_sub();
 
3004   my ($self, $flds, $new, $count, $numrows) = @_;
 
3008   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
3013   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
3015     my $j = $item->{ndx} - 1;
 
3016     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
3020   for $i ($count + 1 .. $numrows) {
 
3021     map { delete $self->{"${_}_$i"} } @{$flds};
 
3024   $main::lxdebug->leave_sub();
 
3028   $main::lxdebug->enter_sub();
 
3030   my ($self, $myconfig) = @_;
 
3034   my $dbh = $self->dbconnect_noauto($myconfig);
 
3036   my $query = qq|DELETE FROM status
 
3037                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3038   my $sth = prepare_query($self, $dbh, $query);
 
3040   if ($self->{formname} =~ /(check|receipt)/) {
 
3041     for $i (1 .. $self->{rowcount}) {
 
3042       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
3045     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3049   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3050   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3052   my %queued = split / /, $self->{queued};
 
3055   if ($self->{formname} =~ /(check|receipt)/) {
 
3057     # this is a check or receipt, add one entry for each lineitem
 
3058     my ($accno) = split /--/, $self->{account};
 
3059     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3060                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3061     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3062     $sth = prepare_query($self, $dbh, $query);
 
3064     for $i (1 .. $self->{rowcount}) {
 
3065       if ($self->{"checked_$i"}) {
 
3066         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3072     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3073                 VALUES (?, ?, ?, ?, ?)|;
 
3074     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3075              $queued{$self->{formname}}, $self->{formname});
 
3081   $main::lxdebug->leave_sub();
 
3085   $main::lxdebug->enter_sub();
 
3087   my ($self, $dbh) = @_;
 
3089   my ($query, $printed, $emailed);
 
3091   my $formnames  = $self->{printed};
 
3092   my $emailforms = $self->{emailed};
 
3094   $query = qq|DELETE FROM status
 
3095                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3096   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3098   # this only applies to the forms
 
3099   # checks and receipts are posted when printed or queued
 
3101   if ($self->{queued}) {
 
3102     my %queued = split / /, $self->{queued};
 
3104     foreach my $formname (keys %queued) {
 
3105       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3106       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3108       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3109                   VALUES (?, ?, ?, ?, ?)|;
 
3110       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3112       $formnames  =~ s/\Q$self->{formname}\E//;
 
3113       $emailforms =~ s/\Q$self->{formname}\E//;
 
3118   # save printed, emailed info
 
3119   $formnames  =~ s/^ +//g;
 
3120   $emailforms =~ s/^ +//g;
 
3123   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3124   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3126   foreach my $formname (keys %status) {
 
3127     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3128     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3130     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3131                 VALUES (?, ?, ?, ?)|;
 
3132     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3135   $main::lxdebug->leave_sub();
 
3139 # $main::locale->text('SAVED')
 
3140 # $main::locale->text('DELETED')
 
3141 # $main::locale->text('ADDED')
 
3142 # $main::locale->text('PAYMENT POSTED')
 
3143 # $main::locale->text('POSTED')
 
3144 # $main::locale->text('POSTED AS NEW')
 
3145 # $main::locale->text('ELSE')
 
3146 # $main::locale->text('SAVED FOR DUNNING')
 
3147 # $main::locale->text('DUNNING STARTED')
 
3148 # $main::locale->text('PRINTED')
 
3149 # $main::locale->text('MAILED')
 
3150 # $main::locale->text('SCREENED')
 
3151 # $main::locale->text('CANCELED')
 
3152 # $main::locale->text('invoice')
 
3153 # $main::locale->text('proforma')
 
3154 # $main::locale->text('sales_order')
 
3155 # $main::locale->text('pick_list')
 
3156 # $main::locale->text('purchase_order')
 
3157 # $main::locale->text('bin_list')
 
3158 # $main::locale->text('sales_quotation')
 
3159 # $main::locale->text('request_quotation')
 
3162   $main::lxdebug->enter_sub();
 
3165   my $dbh  = shift || $self->get_standard_dbh;
 
3167   if(!exists $self->{employee_id}) {
 
3168     &get_employee($self, $dbh);
 
3172    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3173    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3174   my @values = (conv_i($self->{id}), $self->{login},
 
3175                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3176   do_query($self, $dbh, $query, @values);
 
3180   $main::lxdebug->leave_sub();
 
3184   $main::lxdebug->enter_sub();
 
3186   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3187   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3188   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3191   if ($trans_id ne "") {
 
3193       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 | .
 
3194       qq|FROM history_erp h | .
 
3195       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3196       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3199     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3201     $sth->execute() || $self->dberror("$query");
 
3203     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3204       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3205       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3206       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3207       $tempArray[$i++] = $hash_ref;
 
3209     $main::lxdebug->leave_sub() and return \@tempArray
 
3210       if ($i > 0 && $tempArray[0] ne "");
 
3212   $main::lxdebug->leave_sub();
 
3216 sub get_partsgroup {
 
3217   $main::lxdebug->enter_sub();
 
3219   my ($self, $myconfig, $p) = @_;
 
3220   my $target = $p->{target} || 'all_partsgroup';
 
3222   my $dbh = $self->get_standard_dbh($myconfig);
 
3224   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3226                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3229   if ($p->{searchitems} eq 'part') {
 
3230     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3232   if ($p->{searchitems} eq 'service') {
 
3233     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3235   if ($p->{searchitems} eq 'assembly') {
 
3236     $query .= qq|WHERE p.assembly = '1'|;
 
3238   if ($p->{searchitems} eq 'labor') {
 
3239     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3242   $query .= qq|ORDER BY partsgroup|;
 
3245     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3246                 ORDER BY partsgroup|;
 
3249   if ($p->{language_code}) {
 
3250     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3251                   t.description AS translation
 
3253                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3254                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3255                 ORDER BY translation|;
 
3256     @values = ($p->{language_code});
 
3259   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3261   $main::lxdebug->leave_sub();
 
3264 sub get_pricegroup {
 
3265   $main::lxdebug->enter_sub();
 
3267   my ($self, $myconfig, $p) = @_;
 
3269   my $dbh = $self->get_standard_dbh($myconfig);
 
3271   my $query = qq|SELECT p.id, p.pricegroup
 
3274   $query .= qq| ORDER BY pricegroup|;
 
3277     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3278                 ORDER BY pricegroup|;
 
3281   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3283   $main::lxdebug->leave_sub();
 
3287 # usage $form->all_years($myconfig, [$dbh])
 
3288 # return list of all years where bookings found
 
3291   $main::lxdebug->enter_sub();
 
3293   my ($self, $myconfig, $dbh) = @_;
 
3295   $dbh ||= $self->get_standard_dbh($myconfig);
 
3298   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3299                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3300   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3302   if ($myconfig->{dateformat} =~ /^yy/) {
 
3303     ($startdate) = split /\W/, $startdate;
 
3304     ($enddate) = split /\W/, $enddate;
 
3306     (@_) = split /\W/, $startdate;
 
3308     (@_) = split /\W/, $enddate;
 
3313   $startdate = substr($startdate,0,4);
 
3314   $enddate = substr($enddate,0,4);
 
3316   while ($enddate >= $startdate) {
 
3317     push @all_years, $enddate--;
 
3322   $main::lxdebug->leave_sub();
 
3326   $main::lxdebug->enter_sub();
 
3330   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3332   $main::lxdebug->leave_sub();
 
3336   $main::lxdebug->enter_sub();
 
3341   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3343   $main::lxdebug->leave_sub();
 
3346 sub prepare_for_printing {
 
3349   my $defaults         = SL::DB::Default->get;
 
3351   $self->{templates} ||= $defaults->templates;
 
3352   $self->{formname}  ||= $self->{type};
 
3353   $self->{media}     ||= 'email';
 
3355   die "'media' other than 'email', 'file', 'printer' is not supported yet" unless $self->{media} =~ m/^(?:email|file|printer)$/;
 
3357   # Several fields that used to reside in %::myconfig (stored in
 
3358   # auth.user_config) are now stored in defaults. Copy them over for
 
3360   $self->{$_} = $defaults->$_ for qw(company address taxnumber co_ustid duns sepa_creditor_id);
 
3362   $self->{"myconfig_${_}"} = $::myconfig{$_} for grep { $_ ne 'dbpasswd' } keys %::myconfig;
 
3364   if (!$self->{employee_id}) {
 
3365     $self->{"employee_${_}"} = $::myconfig{$_} for qw(email tel fax name signature);
 
3366     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
 
3369   # Load shipping address from database. If shipto_id is set then it's
 
3370   # one from the customer's/vendor's master data. Otherwise look an a
 
3371   # customized address linking back to the current record.
 
3372   my $shipto_module = $self->{type} =~ /_delivery_order$/                                             ? 'DO'
 
3373                     : $self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/ ? 'OE'
 
3375   my $shipto        = $self->{shipto_id} ? SL::DB::Shipto->new(shipto_id => $self->{shipto_id})->load
 
3376                     :                      SL::DB::Manager::Shipto->get_first(where => [ module => $shipto_module, trans_id => $self->{id} ]);
 
3378     $self->{$_} = $shipto->$_ for grep { m{^shipto} } map { $_->name } @{ $shipto->meta->columns };
 
3379     $self->{"shiptocvar_" . $_->config->name} = $_->value_as_text for @{ $shipto->cvars_by_config };
 
3382   my $language = $self->{language} ? '_' . $self->{language} : '';
 
3384   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
3385   if ($self->{language_id}) {
 
3386     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) = AM->get_language_details(\%::myconfig, $self, $self->{language_id});
 
3389   $output_dateformat   ||= $::myconfig{dateformat};
 
3390   $output_numberformat ||= $::myconfig{numberformat};
 
3391   $output_longdates    //= 1;
 
3393   $self->{myconfig_output_dateformat}   = $output_dateformat   // $::myconfig{dateformat};
 
3394   $self->{myconfig_output_longdates}    = $output_longdates    // 1;
 
3395   $self->{myconfig_output_numberformat} = $output_numberformat // $::myconfig{numberformat};
 
3397   # Retrieve accounts for tax calculation.
 
3398   IC->retrieve_accounts(\%::myconfig, $self, map { $_ => $self->{"id_$_"} } 1 .. $self->{rowcount});
 
3400   if ($self->{type} =~ /_delivery_order$/) {
 
3401     DO->order_details(\%::myconfig, $self);
 
3402   } elsif ($self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/) {
 
3403     OE->order_details(\%::myconfig, $self);
 
3405     IS->invoice_details(\%::myconfig, $self, $::locale);
 
3408   # Chose extension & set source file name
 
3409   my $extension = 'html';
 
3410   if ($self->{format} eq 'postscript') {
 
3411     $self->{postscript}   = 1;
 
3413   } elsif ($self->{"format"} =~ /pdf/) {
 
3415     $extension            = $self->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
3416   } elsif ($self->{"format"} =~ /opendocument/) {
 
3417     $self->{opendocument} = 1;
 
3419   } elsif ($self->{"format"} =~ /excel/) {
 
3424   my $printer_code    = $self->{printer_code} ? '_' . $self->{printer_code} : '';
 
3425   my $email_extension = $self->{media} eq 'email' && -f ($defaults->templates . "/$self->{formname}_email${language}.${extension}") ? '_email' : '';
 
3426   $self->{IN}         = "$self->{formname}${email_extension}${language}${printer_code}.${extension}";
 
3429   $self->format_dates($output_dateformat, $output_longdates,
 
3430                       qw(invdate orddate quodate pldate duedate reqdate transdate shippingdate deliverydate validitydate paymentdate datepaid
 
3431                          transdate_oe deliverydate_oe employee_startdate employee_enddate),
 
3432                       grep({ /^(?:datepaid|transdate_oe|reqdate|deliverydate|deliverydate_oe|transdate)_\d+$/ } keys(%{$self})));
 
3434   $self->reformat_numbers($output_numberformat, 2,
 
3435                           qw(invtotal ordtotal quototal subtotal linetotal listprice sellprice netprice discount tax taxbase total paid),
 
3436                           grep({ /^(?:linetotal|listprice|sellprice|netprice|taxbase|discount|paid|subtotal|total|tax)_\d+$/ } keys(%{$self})));
 
3438   $self->reformat_numbers($output_numberformat, undef, qw(qty price_factor), grep({ /^qty_\d+$/} keys(%{$self})));
 
3440   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
3442   if (scalar @{ $cvar_date_fields }) {
 
3443     $self->format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
3446   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
3447     $self->reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
3450   $self->{template_meta} = {
 
3451     formname  => $self->{formname},
 
3452     language  => SL::DB::Manager::Language->find_by_or_create(id => $self->{language_id} || undef),
 
3453     format    => $self->{format},
 
3454     media     => $self->{media},
 
3455     extension => $extension,
 
3456     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $self->{printer_id} || undef),
 
3457     today     => DateTime->today,
 
3463 sub calculate_arap {
 
3464   my ($self,$buysell,$taxincluded,$exchangerate,$roundplaces) = @_;
 
3466   # this function is used to calculate netamount, total_tax and amount for AP and
 
3467   # AR transactions (Kreditoren-/Debitorenbuchungen) by going over all lines
 
3469   # Thus it needs a fully prepared $form to work on.
 
3470   # calculate_arap assumes $form->{amount_$i} entries still need to be parsed
 
3472   # The calculated total values are all rounded (default is to 2 places) and
 
3473   # returned as parameters rather than directly modifying form.  The aim is to
 
3474   # make the calculation of AP and AR behave identically.  There is a test-case
 
3475   # for this function in t/form/arap.t
 
3477   # While calculating the totals $form->{amount_$i} and $form->{tax_$i} are
 
3478   # modified and formatted and receive the correct sign for writing straight to
 
3479   # acc_trans, depending on whether they are ar or ap.
 
3482   die "taxincluded needed in Form->calculate_arap" unless defined $taxincluded;
 
3483   die "exchangerate needed in Form->calculate_arap" unless defined $exchangerate;
 
3484   die 'illegal buysell parameter, has to be \"buy\" or \"sell\" in Form->calculate_arap\n' unless $buysell =~ /^(buy|sell)$/;
 
3485   $roundplaces = 2 unless $roundplaces;
 
3487   my $sign = 1;  # adjust final results for writing amount to acc_trans
 
3488   $sign = -1 if $buysell eq 'buy';
 
3490   my ($netamount,$total_tax,$amount);
 
3494   # parse and round amounts, setting correct sign for writing to acc_trans
 
3495   for my $i (1 .. $self->{rowcount}) {
 
3496     $self->{"amount_$i"} = $self->round_amount($self->parse_amount(\%::myconfig, $self->{"amount_$i"}) * $exchangerate * $sign, $roundplaces);
 
3498     $amount += $self->{"amount_$i"} * $sign;
 
3501   for my $i (1 .. $self->{rowcount}) {
 
3502     next unless $self->{"amount_$i"};
 
3503     ($self->{"tax_id_$i"}) = split /--/, $self->{"taxchart_$i"};
 
3504     my $tax_id = $self->{"tax_id_$i"};
 
3506     my $selected_tax = SL::DB::Manager::Tax->find_by(id => "$tax_id");
 
3508     if ( $selected_tax ) {
 
3510       if ( $buysell eq 'sell' ) {
 
3511         $self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
 
3513         $self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
 
3516       $self->{"taxkey_$i"} = $selected_tax->taxkey;
 
3517       $self->{"taxrate_$i"} = $selected_tax->rate;
 
3520     ($self->{"amount_$i"}, $self->{"tax_$i"}) = $self->calculate_tax($self->{"amount_$i"},$self->{"taxrate_$i"},$taxincluded,$roundplaces);
 
3522     $netamount  += $self->{"amount_$i"};
 
3523     $total_tax  += $self->{"tax_$i"};
 
3526   $amount = $netamount + $total_tax;
 
3528   # due to $sign amount_$i und tax_$i already have the right sign for acc_trans
 
3529   # but reverse sign of totals for writing amounts to ar
 
3530   if ( $buysell eq 'buy' ) {
 
3536   return($netamount,$total_tax,$amount);
 
3540   my ($self, $dateformat, $longformat, @indices) = @_;
 
3542   $dateformat ||= $::myconfig{dateformat};
 
3544   foreach my $idx (@indices) {
 
3545     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3546       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3547         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $dateformat, $longformat);
 
3551     next unless defined $self->{$idx};
 
3553     if (!ref($self->{$idx})) {
 
3554       $self->{$idx} = $::locale->reformat_date(\%::myconfig, $self->{$idx}, $dateformat, $longformat);
 
3556     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3557       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3558         $self->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{$idx}->[$i], $dateformat, $longformat);
 
3564 sub reformat_numbers {
 
3565   my ($self, $numberformat, $places, @indices) = @_;
 
3567   return if !$numberformat || ($numberformat eq $::myconfig{numberformat});
 
3569   foreach my $idx (@indices) {
 
3570     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3571       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3572         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i]);
 
3576     next unless defined $self->{$idx};
 
3578     if (!ref($self->{$idx})) {
 
3579       $self->{$idx} = $self->parse_amount(\%::myconfig, $self->{$idx});
 
3581     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3582       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3583         $self->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{$idx}->[$i]);
 
3588   my $saved_numberformat    = $::myconfig{numberformat};
 
3589   $::myconfig{numberformat} = $numberformat;
 
3591   foreach my $idx (@indices) {
 
3592     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3593       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3594         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $places);
 
3598     next unless defined $self->{$idx};
 
3600     if (!ref($self->{$idx})) {
 
3601       $self->{$idx} = $self->format_amount(\%::myconfig, $self->{$idx}, $places);
 
3603     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3604       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3605         $self->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{$idx}->[$i], $places);
 
3610   $::myconfig{numberformat} = $saved_numberformat;
 
3613 sub create_email_signature {
 
3615   my $client_signature = $::instance_conf->get_signature;
 
3616   my $user_signature   = $::myconfig{signature};
 
3619   if ( $client_signature or $user_signature ) {
 
3620     $signature  = "\n\n-- \n";
 
3621     $signature .= $user_signature   . "\n" if $user_signature;
 
3622     $signature .= $client_signature . "\n" if $client_signature;
 
3630   $::lxdebug->enter_sub;
 
3632   my %style_to_script_map = (
 
3637   my $menu_script = $style_to_script_map{$::myconfig{menustyle}} || '';
 
3640   require "bin/mozilla/menu$menu_script.pl";
 
3642   require SL::Controller::FrameHeader;
 
3645   my $layout = SL::Controller::FrameHeader->new->action_header . ::render();
 
3647   $::lxdebug->leave_sub;
 
3652   # this function calculates the net amount and tax for the lines in ar, ap and
 
3653   # gl and is used for update as well as post. When used with update the return
 
3654   # value of amount isn't needed
 
3656   # calculate_tax should always work with positive values, or rather as the user inputs them
 
3657   # calculate_tax uses db/perl numberformat, i.e. parsed numbers
 
3658   # convert to negative numbers (when necessary) only when writing to acc_trans
 
3659   # the amount from $form for ap/ar/gl is currently always rounded to 2 decimals before it reaches here
 
3660   # for post_transaction amount already contains exchangerate and correct sign and is rounded
 
3661   # calculate_tax doesn't (need to) know anything about exchangerate
 
3663   my ($self,$amount,$taxrate,$taxincluded,$roundplaces) = @_;
 
3671     # calculate tax (unrounded), subtract from amount, round amount and round tax
 
3672     $tax       = $amount - ($amount / ($taxrate + 1)); # equivalent to: taxrate * amount / (taxrate + 1)
 
3673     $amount    = $self->round_amount($amount - $tax, $roundplaces);
 
3674     $tax       = $self->round_amount($tax, $roundplaces);
 
3676     $tax       = $amount * $taxrate;
 
3677     $tax       = $self->round_amount($tax, $roundplaces);
 
3680   $tax = 0 unless $tax;
 
3682   return ($amount,$tax);
 
3691 SL::Form.pm - main data object.
 
3695 This is the main data object of kivitendo.
 
3696 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3697 Points of interest for a beginner are:
 
3699  - $form->error            - renders a generic error in html. accepts an error message
 
3700  - $form->get_standard_dbh - returns a database connection for the
 
3702 =head1 SPECIAL FUNCTIONS
 
3704 =head2 C<redirect_header> $url
 
3706 Generates a HTTP redirection header for the new C<$url>. Constructs an
 
3707 absolute URL including scheme, host name and port. If C<$url> is a
 
3708 relative URL then it is considered relative to kivitendo base URL.
 
3710 This function C<die>s if headers have already been created with
 
3711 C<$::form-E<gt>header>.
 
3715   print $::form->redirect_header('oe.pl?action=edit&id=1234');
 
3716   print $::form->redirect_header('http://www.lx-office.org/');
 
3720 Generates a general purpose http/html header and includes most of the scripts
 
3721 and stylesheets needed. Stylesheets can be added with L<use_stylesheet>.
 
3723 Only one header will be generated. If the method was already called in this
 
3724 request it will not output anything and return undef. Also if no
 
3725 HTTP_USER_AGENT is found, no header is generated.
 
3727 Although header does not accept parameters itself, it will honor special
 
3728 hashkeys of its Form instance:
 
3736 If one of these is set, a http-equiv refresh is generated. Missing parameters
 
3737 default to 3 seconds and the refering url.
 
3741 Either a scalar or an array ref. Will be inlined into the header. Add
 
3742 stylesheets with the L<use_stylesheet> function.
 
3746 If true, a css snippet will be generated that sets the page in landscape mode.
 
3750 Used to override the default favicon.
 
3754 A html page title will be generated from this
 
3756 =item mtime_ischanged
 
3758 Tries to avoid concurrent write operations to records by checking the database mtime with a fetched one.
 
3760 Can be used / called with any table, that has itime and mtime attributes.
 
3761 Valid C<table> names are: oe, ar, ap, delivery_orders, parts.
 
3762 Can be called wit C<option> mail to generate a different error message.
 
3764 Returns undef if no save operation has been done yet ($self->{id} not present).
 
3765 Returns undef if no concurrent write process is detected otherwise a error message.