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., 51 Franklin Street, Fifth Floor, Boston,
 
  32 #======================================================================
 
  33 # Utilities for parsing forms
 
  34 # and supporting routines for linking account numbers
 
  35 # used in AR, AP and IS, IR modules
 
  37 #======================================================================
 
  63 use SL::DB::PaymentTerm;
 
  68 use SL::Layout::Dispatcher;
 
  70 use SL::Locale::String;
 
  73 use SL::MoreCommon qw(uri_encode uri_decode);
 
  75 use SL::PrefixedNumber;
 
  83 use List::Util qw(first max min sum);
 
  84 use List::MoreUtils qw(all any apply);
 
  92   open VERSION_FILE, "VERSION";                 # New but flexible code reads version from VERSION-file
 
  93   my $version =  <VERSION_FILE>;
 
  94   $version    =~ s/[^0-9A-Za-z\.\_\-]//g; # only allow numbers, letters, points, underscores and dashes. Prevents injecting of malicious code.
 
 101   $main::lxdebug->enter_sub();
 
 108   if ($LXDebug::watch_form) {
 
 109     require SL::Watchdog;
 
 110     tie %{ $self }, 'SL::Watchdog';
 
 115   $self->{version} = $self->read_version;
 
 117   $main::lxdebug->leave_sub();
 
 124   SL::Request::read_cgi_input($self);
 
 127 sub _flatten_variables_rec {
 
 128   $main::lxdebug->enter_sub(2);
 
 137   if ('' eq ref $curr->{$key}) {
 
 138     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
 
 140   } elsif ('HASH' eq ref $curr->{$key}) {
 
 141     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
 
 142       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
 
 146     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
 
 147       my $first_array_entry = 1;
 
 149       my $element = $curr->{$key}[$idx];
 
 151       if ('HASH' eq ref $element) {
 
 152         foreach my $hash_key (sort keys %{ $element }) {
 
 153           push @result, $self->_flatten_variables_rec($element, $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
 
 154           $first_array_entry = 0;
 
 157         @result = ({ 'key' => $prefix . $key . ($first_array_entry ? '[+]' : '[]'), 'value' => $element });
 
 162   $main::lxdebug->leave_sub(2);
 
 167 sub flatten_variables {
 
 168   $main::lxdebug->enter_sub(2);
 
 176     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 179   $main::lxdebug->leave_sub(2);
 
 184 sub flatten_standard_variables {
 
 185   $main::lxdebug->enter_sub(2);
 
 188   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
 
 192   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
 
 193     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 196   $main::lxdebug->leave_sub(2);
 
 202   $main::lxdebug->enter_sub();
 
 208   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 210   $main::lxdebug->leave_sub();
 
 214   $main::lxdebug->enter_sub(2);
 
 217   my $password      = $self->{password};
 
 219   $self->{password} = 'X' x 8;
 
 221   local $Data::Dumper::Sortkeys = 1;
 
 222   my $output                    = Dumper($self);
 
 224   $self->{password} = $password;
 
 226   $main::lxdebug->leave_sub(2);
 
 232   my ($self, $str) = @_;
 
 234   return uri_encode($str);
 
 238   my ($self, $str) = @_;
 
 240   return uri_decode($str);
 
 244   $main::lxdebug->enter_sub();
 
 245   my ($self, $str) = @_;
 
 247   if ($str && !ref($str)) {
 
 248     $str =~ s/\"/"/g;
 
 251   $main::lxdebug->leave_sub();
 
 257   $main::lxdebug->enter_sub();
 
 258   my ($self, $str) = @_;
 
 260   if ($str && !ref($str)) {
 
 261     $str =~ s/"/\"/g;
 
 264   $main::lxdebug->leave_sub();
 
 270   $main::lxdebug->enter_sub();
 
 274     map({ print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
 
 276     for (sort keys %$self) {
 
 277       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
 
 278       print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
 
 281   $main::lxdebug->leave_sub();
 
 285   my ($self, $code) = @_;
 
 286   local $self->{__ERROR_HANDLER} = sub { die SL::X::FormError->new($_[0]) };
 
 291   $main::lxdebug->enter_sub();
 
 293   $main::lxdebug->show_backtrace();
 
 295   my ($self, $msg) = @_;
 
 297   if ($self->{__ERROR_HANDLER}) {
 
 298     $self->{__ERROR_HANDLER}->($msg);
 
 300   } elsif ($ENV{HTTP_USER_AGENT}) {
 
 302     $self->show_generic_error($msg);
 
 305     confess "Error: $msg\n";
 
 308   $main::lxdebug->leave_sub();
 
 312   $main::lxdebug->enter_sub();
 
 314   my ($self, $msg) = @_;
 
 316   if ($ENV{HTTP_USER_AGENT}) {
 
 318     print $self->parse_html_template('generic/form_info', { message => $msg });
 
 320   } elsif ($self->{info_function}) {
 
 321     &{ $self->{info_function} }($msg);
 
 326   $main::lxdebug->leave_sub();
 
 329 # calculates the number of rows in a textarea based on the content and column number
 
 330 # can be capped with maxrows
 
 332   $main::lxdebug->enter_sub();
 
 333   my ($self, $str, $cols, $maxrows, $minrows) = @_;
 
 337   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
 
 340   $main::lxdebug->leave_sub();
 
 342   return max(min($rows, $maxrows), $minrows);
 
 346   $main::lxdebug->enter_sub();
 
 348   my ($self, $msg) = @_;
 
 350   $self->error("$msg\n" . $DBI::errstr);
 
 352   $main::lxdebug->leave_sub();
 
 356   $main::lxdebug->enter_sub();
 
 358   my ($self, $name, $msg) = @_;
 
 361   foreach my $part (split m/\./, $name) {
 
 362     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
 
 365     $curr = $curr->{$part};
 
 368   $main::lxdebug->leave_sub();
 
 371 sub _get_request_uri {
 
 374   return URI->new($ENV{HTTP_REFERER})->canonical() if $ENV{HTTP_X_FORWARDED_FOR};
 
 375   return URI->new                                  if !$ENV{REQUEST_URI}; # for testing
 
 377   my $scheme =  $ENV{HTTPS} && (lc $ENV{HTTPS} eq 'on') ? 'https' : 'http';
 
 378   my $port   =  $ENV{SERVER_PORT};
 
 379   $port      =  undef if (($scheme eq 'http' ) && ($port == 80))
 
 380                       || (($scheme eq 'https') && ($port == 443));
 
 382   my $uri    =  URI->new("${scheme}://");
 
 383   $uri->scheme($scheme);
 
 385   $uri->host($ENV{HTTP_HOST} || $ENV{SERVER_ADDR});
 
 386   $uri->path_query($ENV{REQUEST_URI});
 
 392 sub _add_to_request_uri {
 
 395   my $relative_new_path = shift;
 
 396   my $request_uri       = shift || $self->_get_request_uri;
 
 397   my $relative_new_uri  = URI->new($relative_new_path);
 
 398   my @request_segments  = $request_uri->path_segments;
 
 400   my $new_uri           = $request_uri->clone;
 
 401   $new_uri->path_segments(@request_segments[0..scalar(@request_segments) - 2], $relative_new_uri->path_segments);
 
 406 sub create_http_response {
 
 407   $main::lxdebug->enter_sub();
 
 412   my $cgi      = $::request->{cgi};
 
 415   if (defined $main::auth) {
 
 416     my $uri      = $self->_get_request_uri;
 
 417     my @segments = $uri->path_segments;
 
 419     $uri->path_segments(@segments);
 
 421     my $session_cookie_value = $main::auth->get_session_id();
 
 423     if ($session_cookie_value) {
 
 424       $session_cookie = $cgi->cookie('-name'   => $main::auth->get_session_cookie_name(),
 
 425                                      '-value'  => $session_cookie_value,
 
 426                                      '-path'   => $uri->path,
 
 427                                      '-secure' => $ENV{HTTPS});
 
 431   my %cgi_params = ('-type' => $params{content_type});
 
 432   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
 
 433   $cgi_params{'-cookie'}  = $session_cookie  if ($session_cookie);
 
 435   map { $cgi_params{'-' . $_} = $params{$_} if exists $params{$_} } qw(content_disposition content_length);
 
 437   my $output = $cgi->header(%cgi_params);
 
 439   $main::lxdebug->leave_sub();
 
 445   $::lxdebug->enter_sub;
 
 447   my ($self, %params) = @_;
 
 450   $::lxdebug->leave_sub and return if !$ENV{HTTP_USER_AGENT} || $self->{header}++;
 
 452   if ($params{no_layout}) {
 
 453     $::request->{layout} = SL::Layout::Dispatcher->new(style => 'none');
 
 456   my $layout = $::request->{layout};
 
 458   # standard css for all
 
 459   # this should gradually move to the layouts that need it
 
 460   $layout->use_stylesheet("$_.css") for qw(
 
 461     common main menu list_accounts jquery.autocomplete
 
 462     jquery.multiselect2side
 
 463     ui-lightness/jquery-ui
 
 465     tooltipster themes/tooltipster-light
 
 468   $layout->use_javascript("$_.js") for (qw(
 
 469     jquery jquery-ui jquery.cookie jquery.checkall jquery.download
 
 470     jquery/jquery.form jquery/fixes client_js
 
 471     jquery/jquery.tooltipster.min
 
 472     common part_selection
 
 473   ), "jquery/ui/i18n/jquery.ui.datepicker-$::myconfig{countrycode}");
 
 475   $self->{favicon} ||= "favicon.ico";
 
 476   $self->{titlebar} = join ' - ', grep $_, $self->{title}, $self->{login}, $::myconfig{dbname}, $self->{version} if $self->{title} || !$self->{titlebar};
 
 479   if ($self->{refresh_url} || $self->{refresh_time}) {
 
 480     my $refresh_time = $self->{refresh_time} || 3;
 
 481     my $refresh_url  = $self->{refresh_url}  || $ENV{REFERER};
 
 482     push @header, "<meta http-equiv='refresh' content='$refresh_time;$refresh_url'>";
 
 485   my $auto_reload_resources_param = $layout->auto_reload_resources_param;
 
 487   push @header, map { qq|<link rel="stylesheet" href="${_}${auto_reload_resources_param}" type="text/css" title="Stylesheet">| } $layout->stylesheets;
 
 488   push @header, "<style type='text/css'>\@page { size:landscape; }</style> "                     if $self->{landscape};
 
 489   push @header, "<link rel='shortcut icon' href='$self->{favicon}' type='image/x-icon'>"         if -f $self->{favicon};
 
 490   push @header, map { qq|<script type="text/javascript" src="${_}${auto_reload_resources_param}"></script>| }                    $layout->javascripts;
 
 491   push @header, $self->{javascript} if $self->{javascript};
 
 492   push @header, map { $_->show_javascript } @{ $self->{AJAX} || [] };
 
 495     strict       => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">|,
 
 496     transitional => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">|,
 
 497     frameset     => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">|,
 
 498     html5        => qq|<!DOCTYPE html>|,
 
 502   print $self->create_http_response(content_type => 'text/html', charset => 'UTF-8');
 
 503   print $doctypes{$params{doctype} || 'transitional'}, $/;
 
 507   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 
 508   <title>$self->{titlebar}</title>
 
 510   print "  $_\n" for @header;
 
 512   <meta name="robots" content="noindex,nofollow">
 
 517   print $::request->{layout}->pre_content;
 
 518   print $::request->{layout}->start_content;
 
 520   $layout->header_done;
 
 522   $::lxdebug->leave_sub;
 
 526   return unless $::request->{layout}->need_footer;
 
 528   print $::request->{layout}->end_content;
 
 529   print $::request->{layout}->post_content;
 
 531   if (my @inline_scripts = $::request->{layout}->javascripts_inline) {
 
 532     print "<script type='text/javascript'>" . join("; ", @inline_scripts) . "</script>\n";
 
 541 sub ajax_response_header {
 
 542   $main::lxdebug->enter_sub();
 
 546   my $output = $::request->{cgi}->header('-charset' => 'UTF-8');
 
 548   $main::lxdebug->leave_sub();
 
 553 sub redirect_header {
 
 557   my $base_uri = $self->_get_request_uri;
 
 558   my $new_uri  = URI->new_abs($new_url, $base_uri);
 
 560   die "Headers already sent" if $self->{header};
 
 563   return $::request->{cgi}->redirect($new_uri);
 
 566 sub set_standard_title {
 
 567   $::lxdebug->enter_sub;
 
 570   $self->{titlebar}  = "kivitendo " . $::locale->text('Version') . " $self->{version}";
 
 571   $self->{titlebar} .= "- $::myconfig{name}"   if $::myconfig{name};
 
 572   $self->{titlebar} .= "- $::myconfig{dbname}" if $::myconfig{name};
 
 574   $::lxdebug->leave_sub;
 
 577 sub _prepare_html_template {
 
 578   $main::lxdebug->enter_sub();
 
 580   my ($self, $file, $additional_params) = @_;
 
 583   if (!%::myconfig || !$::myconfig{"countrycode"}) {
 
 584     $language = $::lx_office_conf{system}->{language};
 
 586     $language = $main::myconfig{"countrycode"};
 
 588   $language = "de" unless ($language);
 
 590   if (-f "templates/webpages/${file}.html") {
 
 591     $file = "templates/webpages/${file}.html";
 
 593   } elsif (ref $file eq 'SCALAR') {
 
 594     # file is a scalarref, use inline mode
 
 596     my $info = "Web page template '${file}' not found.\n";
 
 598     print qq|<pre>$info</pre>|;
 
 599     $::dispatcher->end_request;
 
 602   $additional_params->{AUTH}          = $::auth;
 
 603   $additional_params->{INSTANCE_CONF} = $::instance_conf;
 
 604   $additional_params->{LOCALE}        = $::locale;
 
 605   $additional_params->{LXCONFIG}      = \%::lx_office_conf;
 
 606   $additional_params->{LXDEBUG}       = $::lxdebug;
 
 607   $additional_params->{MYCONFIG}      = \%::myconfig;
 
 609   $main::lxdebug->leave_sub();
 
 614 sub parse_html_template {
 
 615   $main::lxdebug->enter_sub();
 
 617   my ($self, $file, $additional_params) = @_;
 
 619   $additional_params ||= { };
 
 621   my $real_file = $self->_prepare_html_template($file, $additional_params);
 
 622   my $template  = $self->template || $self->init_template;
 
 624   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 627   $template->process($real_file, $additional_params, \$output) || die $template->error;
 
 629   $main::lxdebug->leave_sub();
 
 637   return $self->template if $self->template;
 
 639   # Force scripts/locales.pl to pick up the exception handling template.
 
 640   # parse_html_template('generic/exception')
 
 641   return $self->template(Template->new({
 
 646      'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 647      'INCLUDE_PATH' => '.:templates/webpages',
 
 648      'COMPILE_EXT'  => '.tcc',
 
 649      'COMPILE_DIR'  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
 
 650      'ERROR'        => 'templates/webpages/generic/exception.html',
 
 651      'ENCODING'     => 'utf8',
 
 657   $self->{template_object} = shift if @_;
 
 658   return $self->{template_object};
 
 661 sub show_generic_error {
 
 662   $main::lxdebug->enter_sub();
 
 664   my ($self, $error, %params) = @_;
 
 666   if ($self->{__ERROR_HANDLER}) {
 
 667     $self->{__ERROR_HANDLER}->($error);
 
 668     $main::lxdebug->leave_sub();
 
 672   if ($::request->is_ajax) {
 
 675       ->render(SL::Controller::Base->new);
 
 676     $::dispatcher->end_request;
 
 680     'title_error' => $params{title},
 
 681     'label_error' => $error,
 
 684   if ($params{action}) {
 
 687     map { delete($self->{$_}); } qw(action);
 
 688     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 690     $add_params->{SHOW_BUTTON}  = 1;
 
 691     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 692     $add_params->{VARIABLES}    = \@vars;
 
 694   } elsif ($params{back_button}) {
 
 695     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 698   $self->{title} = $params{title} if $params{title};
 
 701   print $self->parse_html_template("generic/error", $add_params);
 
 703   print STDERR "Error: $error\n";
 
 705   $main::lxdebug->leave_sub();
 
 707   $::dispatcher->end_request;
 
 710 sub show_generic_information {
 
 711   $main::lxdebug->enter_sub();
 
 713   my ($self, $text, $title) = @_;
 
 716     'title_information' => $title,
 
 717     'label_information' => $text,
 
 720   $self->{title} = $title if ($title);
 
 723   print $self->parse_html_template("generic/information", $add_params);
 
 725   $main::lxdebug->leave_sub();
 
 727   $::dispatcher->end_request;
 
 730 sub _store_redirect_info_in_session {
 
 733   return unless $self->{callback} =~ m:^ ( [^\?/]+ \.pl ) \? (.+) :x;
 
 735   my ($controller, $params) = ($1, $2);
 
 736   my $form                  = { map { map { $self->unescape($_) } split /=/, $_, 2 } split m/\&/, $params };
 
 737   $self->{callback}         = "${controller}?RESTORE_FORM_FROM_SESSION_ID=" . $::auth->save_form_in_session(form => $form);
 
 741   $main::lxdebug->enter_sub();
 
 743   my ($self, $msg) = @_;
 
 745   if (!$self->{callback}) {
 
 749     $self->_store_redirect_info_in_session;
 
 750     print $::form->redirect_header($self->{callback});
 
 753   $::dispatcher->end_request;
 
 755   $main::lxdebug->leave_sub();
 
 758 # sort of columns removed - empty sub
 
 760   $main::lxdebug->enter_sub();
 
 762   my ($self, @columns) = @_;
 
 764   $main::lxdebug->leave_sub();
 
 770   $main::lxdebug->enter_sub(2);
 
 772   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 775   my $neg = $amount < 0;
 
 776   my $force_places = defined $places && $places >= 0;
 
 778   $amount = $self->round_amount($amount, abs $places) if $force_places;
 
 779   $neg    = 0 if $amount == 0; # don't show negative zero
 
 780   $amount = sprintf "%.*f", ($force_places ? $places : 10), abs $amount; # 6 is default for %fa
 
 782   # before the sprintf amount was a number, afterwards it's a string. because of the dynamic nature of perl
 
 783   # this is easy to confuse, so keep in mind: before this comment no s///, m//, concat or other strong ops on
 
 784   # $amount. after this comment no +,-,*,/,abs. it will only introduce subtle bugs.
 
 786   $amount =~ s/0*$// unless defined $places && $places == 0;             # cull trailing 0s
 
 788   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 789   my @p = split(/\./, $amount);                                          # split amount at decimal point
 
 791   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1];                             # add 1,000 delimiters
 
 793   if ($places || $p[1]) {
 
 796             .  (0 x max(abs($places || 0) - length ($p[1]||''), 0));     # pad the fraction
 
 800     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
 801     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
 802                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
 805   $main::lxdebug->leave_sub(2);
 
 809 sub format_amount_units {
 
 810   $main::lxdebug->enter_sub();
 
 815   my $myconfig         = \%main::myconfig;
 
 816   my $amount           = $params{amount} * 1;
 
 817   my $places           = $params{places};
 
 818   my $part_unit_name   = $params{part_unit};
 
 819   my $amount_unit_name = $params{amount_unit};
 
 820   my $conv_units       = $params{conv_units};
 
 821   my $max_places       = $params{max_places};
 
 823   if (!$part_unit_name) {
 
 824     $main::lxdebug->leave_sub();
 
 828   my $all_units        = AM->retrieve_all_units;
 
 830   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
 831     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
 834   if (!scalar @{ $conv_units }) {
 
 835     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
 836     $main::lxdebug->leave_sub();
 
 840   my $part_unit  = $all_units->{$part_unit_name};
 
 841   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
 843   $amount       *= $conv_unit->{factor};
 
 848   foreach my $unit (@$conv_units) {
 
 849     my $last = $unit->{name} eq $part_unit->{name};
 
 851       $num     = int($amount / $unit->{factor});
 
 852       $amount -= $num * $unit->{factor};
 
 855     if ($last ? $amount : $num) {
 
 856       push @values, { "unit"   => $unit->{name},
 
 857                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
 858                       "places" => $last ? $places : 0 };
 
 865     push @values, { "unit"   => $part_unit_name,
 
 870   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
 872   $main::lxdebug->leave_sub();
 
 878   $main::lxdebug->enter_sub(2);
 
 883   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
 884   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
 885   $input =~ s/\#\#/\#/g;
 
 887   $main::lxdebug->leave_sub(2);
 
 895   $main::lxdebug->enter_sub(2);
 
 897   my ($self, $myconfig, $amount) = @_;
 
 899   if (!defined($amount) || ($amount eq '')) {
 
 900     $main::lxdebug->leave_sub(2);
 
 904   if (   ($myconfig->{numberformat} eq '1.000,00')
 
 905       || ($myconfig->{numberformat} eq '1000,00')) {
 
 910   if ($myconfig->{numberformat} eq "1'000.00") {
 
 916   $main::lxdebug->leave_sub(2);
 
 918   # Make sure no code wich is not a math expression ends up in eval().
 
 919   return 0 unless $amount =~ /^ [\s \d \( \) \- \+ \* \/ \. ]* $/x;
 
 921   # Prevent numbers from being parsed as octals;
 
 922   $amount =~ s{ (?<! [\d.] ) 0+ (?= [1-9] ) }{}gx;
 
 924   return scalar(eval($amount)) * 1 ;
 
 928   my ($self, $amount, $places, $adjust) = @_;
 
 930   return 0 if !defined $amount;
 
 935     my $precision = $::instance_conf->get_precision || 0.01;
 
 936     return $self->round_amount( $self->round_amount($amount / $precision, 0) * $precision, $places);
 
 939   # We use Perl's knowledge of string representation for
 
 940   # rounding. First, convert the floating point number to a string
 
 941   # with a high number of places. Then split the string on the decimal
 
 942   # sign and use integer calculation for rounding the decimal places
 
 943   # part. If an overflow occurs then apply that overflow to the part
 
 944   # before the decimal sign as well using integer arithmetic again.
 
 946   my $int_amount = int(abs $amount);
 
 947   my $str_places = max(min(10, 16 - length("$int_amount") - $places), $places);
 
 948   my $amount_str = sprintf '%.*f', $places + $str_places, abs($amount);
 
 950   return $amount unless $amount_str =~ m{^(\d+)\.(\d+)$};
 
 952   my ($pre, $post)      = ($1, $2);
 
 953   my $decimals          = '1' . substr($post, 0, $places);
 
 955   my $propagation_limit = $Config{i32size} == 4 ? 7 : 18;
 
 956   my $add_for_rounding  = substr($post, $places, 1) >= 5 ? 1 : 0;
 
 958   if ($places > $propagation_limit) {
 
 959     $decimals = Math::BigInt->new($decimals)->badd($add_for_rounding);
 
 960     $pre      = Math::BigInt->new($decimals)->badd(1) if substr($decimals, 0, 1) eq '2';
 
 963     $decimals += $add_for_rounding;
 
 964     $pre      += 1 if substr($decimals, 0, 1) eq '2';
 
 967   $amount  = ("${pre}." . substr($decimals, 1)) * ($amount <=> 0);
 
 973   $main::lxdebug->enter_sub();
 
 975   my ($self, $myconfig) = @_;
 
 976   my ($out, $out_mode);
 
 980   my $defaults  = SL::DB::Default->get;
 
 981   my $userspath = $::lx_office_conf{paths}->{userspath};
 
 983   $self->{"cwd"} = getcwd();
 
 984   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
 989   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
 990     $template_type  = 'OpenDocument';
 
 991     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
 993   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
 994     $template_type    = 'LaTeX';
 
 995     $ext_for_format   = 'pdf';
 
 997   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
 998     $template_type  = 'HTML';
 
 999     $ext_for_format = 'html';
 
1001   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1002     $template_type  = 'XML';
 
1003     $ext_for_format = 'xml';
 
1005   } elsif ( $self->{"format"} =~ /elster(?:winston|taxbird)/i ) {
 
1006     $template_type = 'XML';
 
1008   } elsif ( $self->{"format"} =~ /excel/i ) {
 
1009     $template_type  = 'Excel';
 
1010     $ext_for_format = 'xls';
 
1012   } elsif ( defined $self->{'format'}) {
 
1013     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1015   } elsif ( $self->{'format'} eq '' ) {
 
1016     $self->error("No Outputformat given: $self->{'format'}");
 
1018   } else { #Catch the rest
 
1019     $self->error("Outputformat not defined: $self->{'format'}");
 
1022   my $template = SL::Template::create(type      => $template_type,
 
1023                                       file_name => $self->{IN},
 
1025                                       myconfig  => $myconfig,
 
1026                                       userspath => $userspath,
 
1027                                       %{ $self->{TEMPLATE_DRIVER_OPTIONS} || {} });
 
1029   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1030   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" } if exists $self->{ $self->{"formname"} . "notes" };
 
1032   if (!$self->{employee_id}) {
 
1033     $self->{"employee_${_}"} = $myconfig->{$_} for qw(email tel fax name signature);
 
1034     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
 
1037   $self->{"myconfig_${_}"} = $myconfig->{$_} for grep { $_ ne 'dbpasswd' } keys %{ $myconfig };
 
1038   $self->{$_}              = $defaults->$_   for qw(co_ustid);
 
1039   $self->{"myconfig_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
 
1040   $self->{AUTH}            = $::auth;
 
1041   $self->{INSTANCE_CONF}   = $::instance_conf;
 
1042   $self->{LOCALE}          = $::locale;
 
1043   $self->{LXCONFIG}        = $::lx_office_conf;
 
1044   $self->{LXDEBUG}         = $::lxdebug;
 
1045   $self->{MYCONFIG}        = \%::myconfig;
 
1047   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1049   # OUT is used for the media, screen, printer, email
 
1050   # for postscript we store a copy in a temporary file
 
1051   my ($temp_fh, $suffix);
 
1052   $suffix =  $self->{IN};
 
1053   $suffix =~ s/.*\.//;
 
1054   ($temp_fh, $self->{tmpfile}) = File::Temp::tempfile(
 
1055     'kivitendo-printXXXXXX',
 
1056     SUFFIX => '.' . ($suffix || 'tex'),
 
1058     UNLINK => ($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})? 0 : 1,
 
1061   (undef, undef, $self->{template_meta}{tmpfile}) = File::Spec->splitpath( $self->{tmpfile} );
 
1063   $out              = $self->{OUT};
 
1064   $out_mode         = $self->{OUT_MODE} || '>';
 
1065   $self->{OUT}      = "$self->{tmpfile}";
 
1066   $self->{OUT_MODE} = '>';
 
1069   my $command_formatter = sub {
 
1070     my ($out_mode, $out) = @_;
 
1071     return $out_mode eq '|-' ? SL::Template::create(type => 'ShellCommand', form => $self)->parse($out) : $out;
 
1075     $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
 
1076     open(OUT, $self->{OUT_MODE}, $self->{OUT}) or $self->error("error on opening $self->{OUT} with mode $self->{OUT_MODE} : $!");
 
1078     *OUT = ($::dispatcher->get_standard_filehandles)[1];
 
1082   if (!$template->parse(*OUT)) {
 
1084     $self->error("$self->{IN} : " . $template->get_error());
 
1087   close OUT if $self->{OUT};
 
1088   # check only one flag (webdav_documents)
 
1089   # therefore copy to webdav, even if we do not have the webdav feature enabled (just archive)
 
1090   my $copy_to_webdav =  $::instance_conf->get_webdav_documents && !$self->{preview} && $self->{tmpdir} && $self->{tmpfile} && $self->{type};
 
1092   if ($self->{media} eq 'file') {
 
1093     copy(join('/', $self->{cwd}, $userspath, $self->{tmpfile}), $out =~ m|^/| ? $out : join('/', $self->{cwd}, $out)) if $template->uses_temp_file;
 
1094     Common::copy_file_to_webdav_folder($self)                                                                         if $copy_to_webdav;
 
1096     chdir("$self->{cwd}");
 
1098     $::lxdebug->leave_sub();
 
1103   Common::copy_file_to_webdav_folder($self) if $copy_to_webdav;
 
1105   if ($self->{media} eq 'email') {
 
1107     my $mail = Mailer->new;
 
1109     map { $mail->{$_} = $self->{$_} }
 
1110       qw(cc bcc subject message version format);
 
1111     $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1112     $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1113     $mail->{fileid} = time() . '.' . $$ . '.';
 
1114     my $full_signature     =  $self->create_email_signature();
 
1115     $full_signature        =~ s/\r//g;
 
1117     # if we send html or plain text inline
 
1118     if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1119       $mail->{contenttype}    =  "text/html";
 
1120       $mail->{message}        =~ s/\r//g;
 
1121       $mail->{message}        =~ s/\n/<br>\n/g;
 
1122       $full_signature         =~ s/\n/<br>\n/g;
 
1123       $mail->{message}       .=  $full_signature;
 
1125       open(IN, "<:encoding(UTF-8)", $self->{tmpfile})
 
1126         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1127       $mail->{message} .= $_ while <IN>;
 
1132       if (!$self->{"do_not_attach"}) {
 
1133         my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1134         $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1135         $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1136                                    "name"     => $attachment_name }];
 
1139       $mail->{message} .= $full_signature;
 
1142     my $err = $mail->send();
 
1143     $self->error($self->cleanup . "$err") if ($err);
 
1147     $self->{OUT}      = $out;
 
1148     $self->{OUT_MODE} = $out_mode;
 
1150     my $numbytes = (-s $self->{tmpfile});
 
1151     open(IN, "<", $self->{tmpfile})
 
1152       or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1155     $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1157     chdir("$self->{cwd}");
 
1158     #print(STDERR "Kopien $self->{copies}\n");
 
1159     #print(STDERR "OUT $self->{OUT}\n");
 
1160     for my $i (1 .. $self->{copies}) {
 
1162         $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
 
1164         open  OUT, $self->{OUT_MODE}, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1165         print OUT $_ while <IN>;
 
1170         my %headers = ('-type'       => $template->get_mime_type,
 
1171                        '-connection' => 'close',
 
1172                        '-charset'    => 'UTF-8');
 
1174         $self->{attachment_filename} ||= $self->generate_attachment_filename;
 
1176         if ($self->{attachment_filename}) {
 
1179             '-attachment'     => $self->{attachment_filename},
 
1180             '-content-length' => $numbytes,
 
1185         print $::request->cgi->header(%headers);
 
1187         $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
 
1196   chdir("$self->{cwd}");
 
1197   $main::lxdebug->leave_sub();
 
1200 sub get_formname_translation {
 
1201   $main::lxdebug->enter_sub();
 
1202   my ($self, $formname) = @_;
 
1204   $formname ||= $self->{formname};
 
1206   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
 
1207   local $::locale = Locale->new($self->{recipient_locale});
 
1209   my %formname_translations = (
 
1210     bin_list                => $main::locale->text('Bin List'),
 
1211     credit_note             => $main::locale->text('Credit Note'),
 
1212     invoice                 => $main::locale->text('Invoice'),
 
1213     pick_list               => $main::locale->text('Pick List'),
 
1214     proforma                => $main::locale->text('Proforma Invoice'),
 
1215     purchase_order          => $main::locale->text('Purchase Order'),
 
1216     request_quotation       => $main::locale->text('RFQ'),
 
1217     sales_order             => $main::locale->text('Confirmation'),
 
1218     sales_quotation         => $main::locale->text('Quotation'),
 
1219     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1220     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1221     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1222     dunning                 => $main::locale->text('Dunning'),
 
1223     letter                  => $main::locale->text('Letter'),
 
1224     ic_supply               => $main::locale->text('Intra-Community supply'),
 
1227   $main::lxdebug->leave_sub();
 
1228   return $formname_translations{$formname};
 
1231 sub get_number_prefix_for_type {
 
1232   $main::lxdebug->enter_sub();
 
1236       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1237     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1238     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1239     : ($self->{type} =~ /letter/)                             ? 'letter'
 
1242   # better default like this?
 
1243   # : ($self->{type} =~ /(sales|purcharse)_order/           :  'ord';
 
1244   # :                                                           'prefix_undefined';
 
1246   $main::lxdebug->leave_sub();
 
1250 sub get_extension_for_format {
 
1251   $main::lxdebug->enter_sub();
 
1254   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1255                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1256                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1257                 : $self->{format} =~ /excel/i        ? ".xls"
 
1258                 : $self->{format} =~ /html/i         ? ".html"
 
1261   $main::lxdebug->leave_sub();
 
1265 sub generate_attachment_filename {
 
1266   $main::lxdebug->enter_sub();
 
1269   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
 
1270   my $recipient_locale = Locale->new($self->{recipient_locale});
 
1272   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1273   my $prefix              = $self->get_number_prefix_for_type();
 
1275   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1276     $attachment_filename .= ' (' . $recipient_locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1278   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1279     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1281   } elsif ($attachment_filename) {
 
1282     $attachment_filename .=  $self->get_extension_for_format();
 
1285     $attachment_filename = "";
 
1288   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1289   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1291   $main::lxdebug->leave_sub();
 
1292   return $attachment_filename;
 
1295 sub generate_email_subject {
 
1296   $main::lxdebug->enter_sub();
 
1299   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1300   my $prefix  = $self->get_number_prefix_for_type();
 
1302   if ($subject && $self->{"${prefix}number"}) {
 
1303     $subject .= " " . $self->{"${prefix}number"}
 
1306   $main::lxdebug->leave_sub();
 
1311   $main::lxdebug->enter_sub();
 
1313   my ($self, $application) = @_;
 
1315   my $error_code = $?;
 
1317   chdir("$self->{tmpdir}");
 
1320   if ((-1 == $error_code) || (127 == (($error_code) >> 8))) {
 
1321     push @err, $::locale->text('The application "#1" was not found on the system.', $application || 'pdflatex') . ' ' . $::locale->text('Please contact your administrator.');
 
1323   } elsif (-f "$self->{tmpfile}.err") {
 
1324     open(FH, "<:encoding(UTF-8)", "$self->{tmpfile}.err");
 
1329   if ($self->{tmpfile} && !($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})) {
 
1330     $self->{tmpfile} =~ s|.*/||g;
 
1332     $self->{tmpfile} =~ s/\.\w+$//g;
 
1333     my $tmpfile = $self->{tmpfile};
 
1334     unlink(<$tmpfile.*>);
 
1337   chdir("$self->{cwd}");
 
1339   $main::lxdebug->leave_sub();
 
1345   $main::lxdebug->enter_sub();
 
1347   my ($self, $date, $myconfig) = @_;
 
1350   if ($date && $date =~ /\D/) {
 
1352     if ($myconfig->{dateformat} =~ /^yy/) {
 
1353       ($yy, $mm, $dd) = split /\D/, $date;
 
1355     if ($myconfig->{dateformat} =~ /^mm/) {
 
1356       ($mm, $dd, $yy) = split /\D/, $date;
 
1358     if ($myconfig->{dateformat} =~ /^dd/) {
 
1359       ($dd, $mm, $yy) = split /\D/, $date;
 
1364     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1365     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1367     $dd = "0$dd" if ($dd < 10);
 
1368     $mm = "0$mm" if ($mm < 10);
 
1370     $date = "$yy$mm$dd";
 
1373   $main::lxdebug->leave_sub();
 
1378 # Database routines used throughout
 
1379 # DB Handling got moved to SL::DB, these are only shims for compatibility
 
1382   SL::DB->client->dbh;
 
1385 sub get_standard_dbh {
 
1386   my $dbh = SL::DB->client->dbh;
 
1388   if ($dbh && !$dbh->{Active}) {
 
1389     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$dbh is defined but not Active anymore");
 
1390     SL::DB->client->dbh(undef);
 
1393   SL::DB->client->dbh;
 
1396 sub disconnect_standard_dbh {
 
1397   SL::DB->client->dbh->rollback;
 
1403   $main::lxdebug->enter_sub();
 
1405   my ($self, $date, $myconfig) = @_;
 
1406   my $dbh = $self->get_standard_dbh;
 
1408   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1409   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
 
1411   # Falls $date = '' - Fehlermeldung aus der Datenbank. Ich denke,
 
1412   # es ist sicher ein conv_date vorher IMMER auszuführen.
 
1413   # Testfälle ohne definiertes closedto:
 
1414   #   Leere Datumseingabe i.O.
 
1415   #     SELECT 1 FROM defaults WHERE '' < closedto
 
1416   #   normale Zahlungsbuchung Ã¼ber Rechnungsmaske i.O.
 
1417   #     SELECT 1 FROM defaults WHERE '10.05.2011' < closedto
 
1418   # Testfälle mit definiertem closedto (30.04.2011):
 
1419   #  Leere Datumseingabe i.O.
 
1420   #   SELECT 1 FROM defaults WHERE '' < closedto
 
1421   # normale Buchung im geschloßenem Zeitraum i.O.
 
1422   #   SELECT 1 FROM defaults WHERE '21.04.2011' < closedto
 
1423   #     Fehlermeldung: Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!
 
1424   # normale Buchung in aktiver Buchungsperiode i.O.
 
1425   #   SELECT 1 FROM defaults WHERE '01.05.2011' < closedto
 
1427   my ($closed) = $sth->fetchrow_array;
 
1429   $main::lxdebug->leave_sub();
 
1434 # prevents bookings to the to far away future
 
1435 sub date_max_future {
 
1436   $main::lxdebug->enter_sub();
 
1438   my ($self, $date, $myconfig) = @_;
 
1439   my $dbh = $self->get_standard_dbh;
 
1441   my $query = "SELECT 1 FROM defaults WHERE ? - current_date > max_future_booking_interval";
 
1442   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
 
1444   my ($max_future_booking_interval) = $sth->fetchrow_array;
 
1446   $main::lxdebug->leave_sub();
 
1448   return $max_future_booking_interval;
 
1452 sub update_balance {
 
1453   $main::lxdebug->enter_sub();
 
1455   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1457   # if we have a value, go do it
 
1460     # retrieve balance from table
 
1461     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1462     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1463     my ($balance) = $sth->fetchrow_array;
 
1469     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1470     do_query($self, $dbh, $query, @values);
 
1472   $main::lxdebug->leave_sub();
 
1475 sub update_exchangerate {
 
1476   $main::lxdebug->enter_sub();
 
1478   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1480   # some sanity check for currency
 
1482     $main::lxdebug->leave_sub();
 
1485   $query = qq|SELECT name AS curr FROM currencies WHERE id=(SELECT currency_id FROM defaults)|;
 
1487   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
 
1489   if ($curr eq $defaultcurrency) {
 
1490     $main::lxdebug->leave_sub();
 
1494   $query = qq|SELECT e.currency_id FROM exchangerate e
 
1495                  WHERE e.currency_id = (SELECT cu.id FROM currencies cu WHERE cu.name=?) AND e.transdate = ?
 
1497   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1506   $buy = conv_i($buy, "NULL");
 
1507   $sell = conv_i($sell, "NULL");
 
1510   if ($buy != 0 && $sell != 0) {
 
1511     $set = "buy = $buy, sell = $sell";
 
1512   } elsif ($buy != 0) {
 
1513     $set = "buy = $buy";
 
1514   } elsif ($sell != 0) {
 
1515     $set = "sell = $sell";
 
1518   if ($sth->fetchrow_array) {
 
1519     $query = qq|UPDATE exchangerate
 
1521                 WHERE currency_id = (SELECT id FROM currencies WHERE name = ?)
 
1525     $query = qq|INSERT INTO exchangerate (currency_id, buy, sell, transdate)
 
1526                 VALUES ((SELECT id FROM currencies WHERE name = ?), $buy, $sell, ?)|;
 
1529   do_query($self, $dbh, $query, $curr, $transdate);
 
1531   $main::lxdebug->leave_sub();
 
1534 sub save_exchangerate {
 
1535   $main::lxdebug->enter_sub();
 
1537   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1539   SL::DB->client->with_transaction(sub {
 
1540     my $dbh = SL::DB->client->dbh;
 
1544     $buy  = $rate if $fld eq 'buy';
 
1545     $sell = $rate if $fld eq 'sell';
 
1548     $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1550   }) or do { die SL::DB->client->error };
 
1552   $main::lxdebug->leave_sub();
 
1555 sub get_exchangerate {
 
1556   $main::lxdebug->enter_sub();
 
1558   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1561   unless ($transdate && $curr) {
 
1562     $main::lxdebug->leave_sub();
 
1566   $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
 
1568   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
 
1570   if ($curr eq $defaultcurrency) {
 
1571     $main::lxdebug->leave_sub();
 
1575   $query = qq|SELECT e.$fld FROM exchangerate e
 
1576                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
 
1577   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1581   $main::lxdebug->leave_sub();
 
1583   return $exchangerate;
 
1586 sub check_exchangerate {
 
1587   $main::lxdebug->enter_sub();
 
1589   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1591   if ($fld !~/^buy|sell$/) {
 
1592     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1595   unless ($transdate) {
 
1596     $main::lxdebug->leave_sub();
 
1600   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1602   if ($currency eq $defaultcurrency) {
 
1603     $main::lxdebug->leave_sub();
 
1607   my $dbh   = $self->get_standard_dbh($myconfig);
 
1608   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1609                  WHERE e.currency_id = (SELECT id FROM currencies WHERE name = ?) AND e.transdate = ?|;
 
1611   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1613   $main::lxdebug->leave_sub();
 
1615   return $exchangerate;
 
1618 sub get_all_currencies {
 
1619   $main::lxdebug->enter_sub();
 
1622   my $myconfig = shift || \%::myconfig;
 
1623   my $dbh      = $self->get_standard_dbh($myconfig);
 
1625   my $query = qq|SELECT name FROM currencies|;
 
1626   my @currencies = map { $_->{name} } selectall_hashref_query($self, $dbh, $query);
 
1628   $main::lxdebug->leave_sub();
 
1633 sub get_default_currency {
 
1634   $main::lxdebug->enter_sub();
 
1636   my ($self, $myconfig) = @_;
 
1637   my $dbh      = $self->get_standard_dbh($myconfig);
 
1638   my $query = qq|SELECT name AS curr FROM currencies WHERE id = (SELECT currency_id FROM defaults)|;
 
1640   my ($defaultcurrency) = selectrow_query($self, $dbh, $query);
 
1642   $main::lxdebug->leave_sub();
 
1644   return $defaultcurrency;
 
1647 sub set_payment_options {
 
1648   my ($self, $myconfig, $transdate, $type) = @_;
 
1650   my $terms = $self->{payment_id} ? SL::DB::PaymentTerm->new(id => $self->{payment_id})->load : undef;
 
1653   my $is_invoice                = $type =~ m{invoice}i;
 
1655   $transdate                  ||= $self->{invdate} || $self->{transdate};
 
1656   my $due_date                  = $self->{duedate} || $self->{reqdate};
 
1658   $self->{$_}                   = $terms->$_ for qw(terms_netto terms_skonto percent_skonto);
 
1659   $self->{payment_description}  = $terms->description;
 
1660   $self->{netto_date}           = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'net')->to_kivitendo;
 
1661   $self->{skonto_date}          = $terms->calc_date(reference_date => $transdate, due_date => $due_date, terms => 'discount')->to_kivitendo;
 
1663   my ($invtotal, $total);
 
1664   my (%amounts, %formatted_amounts);
 
1666   if ($self->{type} =~ /_order$/) {
 
1667     $amounts{invtotal} = $self->{ordtotal};
 
1668     $amounts{total}    = $self->{ordtotal};
 
1670   } elsif ($self->{type} =~ /_quotation$/) {
 
1671     $amounts{invtotal} = $self->{quototal};
 
1672     $amounts{total}    = $self->{quototal};
 
1675     $amounts{invtotal} = $self->{invtotal};
 
1676     $amounts{total}    = $self->{total};
 
1678   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1680   $amounts{skonto_in_percent}  = 100.0 * $self->{percent_skonto};
 
1681   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1682   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1683   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1685   foreach (keys %amounts) {
 
1686     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1687     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1690   if ($self->{"language_id"}) {
 
1691     my $language             = SL::DB::Language->new(id => $self->{language_id})->load;
 
1693     $self->{payment_terms}   = $type =~ m{invoice}i ? $terms->translated_attribute('description_long_invoice', $language->id) : undef;
 
1694     $self->{payment_terms} ||= $terms->translated_attribute('description_long', $language->id);
 
1696     if ($language->output_dateformat) {
 
1697       foreach my $key (qw(netto_date skonto_date)) {
 
1698         $self->{$key} = $::locale->reformat_date($myconfig, $self->{$key}, $language->output_dateformat, $language->output_longdates);
 
1702     if ($language->output_numberformat && ($language->output_numberformat ne $myconfig->{numberformat})) {
 
1703       local $myconfig->{numberformat};
 
1704       $myconfig->{"numberformat"} = $language->output_numberformat;
 
1705       $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) for keys %amounts;
 
1709   $self->{payment_terms} =  $self->{payment_terms} || ($is_invoice ? $terms->description_long_invoice : undef) || $terms->description_long;
 
1711   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1712   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1713   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1714   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1715   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1716   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1717   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1718   $self->{payment_terms} =~ s/<\%bic\%>/$self->{bic}/g;
 
1719   $self->{payment_terms} =~ s/<\%iban\%>/$self->{iban}/g;
 
1720   $self->{payment_terms} =~ s/<\%mandate_date_of_signature\%>/$self->{mandate_date_of_signature}/g;
 
1721   $self->{payment_terms} =~ s/<\%mandator_id\%>/$self->{mandator_id}/g;
 
1723   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1725   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
 
1729 sub get_template_language {
 
1730   $main::lxdebug->enter_sub();
 
1732   my ($self, $myconfig) = @_;
 
1734   my $template_code = "";
 
1736   if ($self->{language_id}) {
 
1737     my $dbh = $self->get_standard_dbh($myconfig);
 
1738     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1739     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1742   $main::lxdebug->leave_sub();
 
1744   return $template_code;
 
1747 sub get_printer_code {
 
1748   $main::lxdebug->enter_sub();
 
1750   my ($self, $myconfig) = @_;
 
1752   my $template_code = "";
 
1754   if ($self->{printer_id}) {
 
1755     my $dbh = $self->get_standard_dbh($myconfig);
 
1756     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1757     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1760   $main::lxdebug->leave_sub();
 
1762   return $template_code;
 
1766   $main::lxdebug->enter_sub();
 
1768   my ($self, $myconfig) = @_;
 
1770   my $template_code = "";
 
1772   if ($self->{shipto_id}) {
 
1773     my $dbh = $self->get_standard_dbh($myconfig);
 
1774     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1775     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1776     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1778     my $cvars = CVar->get_custom_variables(
 
1781       trans_id => $self->{shipto_id},
 
1783     $self->{"shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars };
 
1786   $main::lxdebug->leave_sub();
 
1790   my ($self, $dbh, $id, $module) = @_;
 
1795   foreach my $item (qw(name department_1 department_2 street zipcode city country gln
 
1796                        contact cp_gender phone fax email)) {
 
1797     if ($self->{"shipto$item"}) {
 
1798       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1800     push(@values, $self->{"shipto${item}"});
 
1805   my $shipto_id = $self->{shipto_id};
 
1807   if ($self->{shipto_id}) {
 
1808     my $query = qq|UPDATE shipto set
 
1810                      shiptodepartment_1 = ?,
 
1811                      shiptodepartment_2 = ?,
 
1818                      shiptocp_gender = ?,
 
1822                    WHERE shipto_id = ?|;
 
1823     do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1825     my $query = qq|SELECT * FROM shipto
 
1826                    WHERE shiptoname = ? AND
 
1827                      shiptodepartment_1 = ? AND
 
1828                      shiptodepartment_2 = ? AND
 
1829                      shiptostreet = ? AND
 
1830                      shiptozipcode = ? AND
 
1832                      shiptocountry = ? AND
 
1834                      shiptocontact = ? AND
 
1835                      shiptocp_gender = ? AND
 
1841     my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1844         qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
1845                                shiptostreet, shiptozipcode, shiptocity, shiptocountry, shiptogln,
 
1846                                shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
 
1847            VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1848       do_query($self, $dbh, $insert_query, $id, @values, $module);
 
1850       $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1853     $shipto_id = $insert_check->{shipto_id};
 
1856   return unless $shipto_id;
 
1858   CVar->save_custom_variables(
 
1861     trans_id    => $shipto_id,
 
1863     name_prefix => 'shipto',
 
1868   $main::lxdebug->enter_sub();
 
1870   my ($self, $dbh) = @_;
 
1872   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
1874   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
1875   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
1876   $self->{"employee_id"} *= 1;
 
1878   $main::lxdebug->leave_sub();
 
1881 sub get_employee_data {
 
1882   $main::lxdebug->enter_sub();
 
1886   my $defaults = SL::DB::Default->get;
 
1888   Common::check_params(\%params, qw(prefix));
 
1889   Common::check_params_x(\%params, qw(id));
 
1892     $main::lxdebug->leave_sub();
 
1896   my $myconfig = \%main::myconfig;
 
1897   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
1899   my ($login, $deleted)  = selectrow_query($self, $dbh, qq|SELECT login,deleted FROM employee WHERE id = ?|, conv_i($params{id}));
 
1902     # login already fetched and still the same client (mandant) | same for both cases (delete|!delete)
 
1903     $self->{$params{prefix} . '_login'}   = $login;
 
1904     $self->{$params{prefix} . "_${_}"}    = $defaults->$_ for qw(address businessnumber co_ustid company duns taxnumber);
 
1907       # get employee data from auth.user_config
 
1908       my $user = User->new(login => $login);
 
1909       $self->{$params{prefix} . "_${_}"} = $user->{$_} for qw(email fax name signature tel);
 
1911       # get saved employee data from employee
 
1912       my $employee = SL::DB::Manager::Employee->find_by(id => conv_i($params{id}));
 
1913       $self->{$params{prefix} . "_${_}"} = $employee->{"deleted_$_"} for qw(email fax signature tel);
 
1914       $self->{$params{prefix} . "_name"} = $employee->name;
 
1917   $main::lxdebug->leave_sub();
 
1921   $main::lxdebug->enter_sub();
 
1923   my ($self, $dbh, $id, $key) = @_;
 
1925   $key = "all_contacts" unless ($key);
 
1929     $main::lxdebug->leave_sub();
 
1934     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
1935     qq|FROM contacts | .
 
1936     qq|WHERE cp_cv_id = ? | .
 
1937     qq|ORDER BY lower(cp_name)|;
 
1939   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
1941   $main::lxdebug->leave_sub();
 
1945   $main::lxdebug->enter_sub();
 
1947   my ($self, $dbh, $key) = @_;
 
1949   my ($all, $old_id, $where, @values);
 
1951   if (ref($key) eq "HASH") {
 
1954     $key = "ALL_PROJECTS";
 
1956     foreach my $p (keys(%{$params})) {
 
1958         $all = $params->{$p};
 
1959       } elsif ($p eq "old_id") {
 
1960         $old_id = $params->{$p};
 
1961       } elsif ($p eq "key") {
 
1962         $key = $params->{$p};
 
1968     $where = "WHERE active ";
 
1970       if (ref($old_id) eq "ARRAY") {
 
1971         my @ids = grep({ $_ } @{$old_id});
 
1973           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
1974           push(@values, @ids);
 
1977         $where .= " OR (id = ?) ";
 
1978         push(@values, $old_id);
 
1984     qq|SELECT id, projectnumber, description, active | .
 
1987     qq|ORDER BY lower(projectnumber)|;
 
1989   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
1991   $main::lxdebug->leave_sub();
 
1995   $main::lxdebug->enter_sub();
 
1997   my ($self, $dbh, $vc_id, $key) = @_;
 
1999   $key = "all_shipto" unless ($key);
 
2002     # get shipping addresses
 
2003     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2005     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2011   $main::lxdebug->leave_sub();
 
2015   $main::lxdebug->enter_sub();
 
2017   my ($self, $dbh, $key) = @_;
 
2019   $key = "all_printers" unless ($key);
 
2021   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2023   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2025   $main::lxdebug->leave_sub();
 
2029   $main::lxdebug->enter_sub();
 
2031   my ($self, $dbh, $params) = @_;
 
2034   $key = $params->{key};
 
2035   $key = "all_charts" unless ($key);
 
2037   my $transdate = quote_db_date($params->{transdate});
 
2040     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2042     qq|LEFT JOIN taxkeys tk ON | .
 
2043     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2044     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2045     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2046     qq|ORDER BY c.accno|;
 
2048   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2050   $main::lxdebug->leave_sub();
 
2053 sub _get_taxcharts {
 
2054   $main::lxdebug->enter_sub();
 
2056   my ($self, $dbh, $params) = @_;
 
2058   my $key = "all_taxcharts";
 
2061   if (ref $params eq 'HASH') {
 
2062     $key = $params->{key} if ($params->{key});
 
2063     if ($params->{module} eq 'AR') {
 
2064       push @where, 'chart_categories ~ \'[ACILQ]\'';
 
2066     } elsif ($params->{module} eq 'AP') {
 
2067       push @where, 'chart_categories ~ \'[ACELQ]\'';
 
2074   my $where = @where ? ' WHERE ' . join(' AND ', map { "($_)" } @where) : '';
 
2076   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey, rate|;
 
2078   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2080   $main::lxdebug->leave_sub();
 
2084   $main::lxdebug->enter_sub();
 
2086   my ($self, $dbh, $key) = @_;
 
2088   $key = "all_taxzones" unless ($key);
 
2090   $tzfilter = "WHERE obsolete is FALSE" if $key eq 'ALL_ACTIVE_TAXZONES';
 
2092   my $query = qq|SELECT * FROM tax_zones $tzfilter ORDER BY sortkey|;
 
2094   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2096   $main::lxdebug->leave_sub();
 
2099 sub _get_employees {
 
2100   $main::lxdebug->enter_sub();
 
2102   my ($self, $dbh, $params) = @_;
 
2107   if (ref $params eq 'HASH') {
 
2108     $key     = $params->{key};
 
2109     $deleted = $params->{deleted};
 
2115   $key     ||= "all_employees";
 
2116   my $filter = $deleted ? '' : 'WHERE NOT COALESCE(deleted, FALSE)';
 
2117   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee $filter ORDER BY lower(name)|);
 
2119   $main::lxdebug->leave_sub();
 
2122 sub _get_business_types {
 
2123   $main::lxdebug->enter_sub();
 
2125   my ($self, $dbh, $key) = @_;
 
2127   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2128   $options->{key} ||= "all_business_types";
 
2131   if (exists $options->{salesman}) {
 
2132     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2135   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2137   $main::lxdebug->leave_sub();
 
2140 sub _get_languages {
 
2141   $main::lxdebug->enter_sub();
 
2143   my ($self, $dbh, $key) = @_;
 
2145   $key = "all_languages" unless ($key);
 
2147   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2149   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2151   $main::lxdebug->leave_sub();
 
2154 sub _get_dunning_configs {
 
2155   $main::lxdebug->enter_sub();
 
2157   my ($self, $dbh, $key) = @_;
 
2159   $key = "all_dunning_configs" unless ($key);
 
2161   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2163   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2165   $main::lxdebug->leave_sub();
 
2168 sub _get_currencies {
 
2169 $main::lxdebug->enter_sub();
 
2171   my ($self, $dbh, $key) = @_;
 
2173   $key = "all_currencies" unless ($key);
 
2175   $self->{$key} = [$self->get_all_currencies()];
 
2177   $main::lxdebug->leave_sub();
 
2181 $main::lxdebug->enter_sub();
 
2183   my ($self, $dbh, $key) = @_;
 
2185   $key = "all_payments" unless ($key);
 
2187   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
 
2189   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2191   $main::lxdebug->leave_sub();
 
2194 sub _get_customers {
 
2195   $main::lxdebug->enter_sub();
 
2197   my ($self, $dbh, $key) = @_;
 
2199   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2200   $options->{key}  ||= "all_customers";
 
2201   my $limit_clause   = $options->{limit} ? "LIMIT $options->{limit}" : '';
 
2204   push @where, qq|business_id IN (SELECT id FROM business WHERE salesman)| if  $options->{business_is_salesman};
 
2205   push @where, qq|NOT obsolete|                                            if !$options->{with_obsolete};
 
2206   my $where_str = @where ? "WHERE " . join(" AND ", map { "($_)" } @where) : '';
 
2208   my $query = qq|SELECT * FROM customer $where_str ORDER BY name $limit_clause|;
 
2209   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2211   $main::lxdebug->leave_sub();
 
2215   $main::lxdebug->enter_sub();
 
2217   my ($self, $dbh, $key) = @_;
 
2219   $key = "all_vendors" unless ($key);
 
2221   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2223   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2225   $main::lxdebug->leave_sub();
 
2228 sub _get_departments {
 
2229   $main::lxdebug->enter_sub();
 
2231   my ($self, $dbh, $key) = @_;
 
2233   $key = "all_departments" unless ($key);
 
2235   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2237   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2239   $main::lxdebug->leave_sub();
 
2242 sub _get_warehouses {
 
2243   $main::lxdebug->enter_sub();
 
2245   my ($self, $dbh, $param) = @_;
 
2247   my ($key, $bins_key);
 
2249   if ('' eq ref $param) {
 
2253     $key      = $param->{key};
 
2254     $bins_key = $param->{bins};
 
2257   my $query = qq|SELECT w.* FROM warehouse w
 
2258                  WHERE (NOT w.invalid) AND
 
2259                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2260                  ORDER BY w.sortkey|;
 
2262   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2265     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
 
2266                 ORDER BY description|;
 
2267     my $sth = prepare_query($self, $dbh, $query);
 
2269     foreach my $warehouse (@{ $self->{$key} }) {
 
2270       do_statement($self, $sth, $query, $warehouse->{id});
 
2271       $warehouse->{$bins_key} = [];
 
2273       while (my $ref = $sth->fetchrow_hashref()) {
 
2274         push @{ $warehouse->{$bins_key} }, $ref;
 
2280   $main::lxdebug->leave_sub();
 
2284   $main::lxdebug->enter_sub();
 
2286   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2288   my $query  = qq|SELECT * FROM $table|;
 
2289   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2291   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2293   $main::lxdebug->leave_sub();
 
2297 #  $main::lxdebug->enter_sub();
 
2299 #  my ($self, $dbh, $key) = @_;
 
2301 #  $key ||= "all_groups";
 
2303 #  my $groups = $main::auth->read_groups();
 
2305 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2307 #  $main::lxdebug->leave_sub();
 
2311   $main::lxdebug->enter_sub();
 
2316   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2317   my ($sth, $query, $ref);
 
2320   if ($params{contacts} || $params{shipto}) {
 
2321     $vc = 'customer' if $self->{"vc"} eq "customer";
 
2322     $vc = 'vendor'   if $self->{"vc"} eq "vendor";
 
2323     die "invalid use of get_lists, need 'vc'" unless $vc;
 
2324     $vc_id = $self->{"${vc}_id"};
 
2327   if ($params{"contacts"}) {
 
2328     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2331   if ($params{"shipto"}) {
 
2332     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2335   if ($params{"projects"} || $params{"all_projects"}) {
 
2336     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2337                          $params{"all_projects"} : $params{"projects"},
 
2338                          $params{"all_projects"} ? 1 : 0);
 
2341   if ($params{"printers"}) {
 
2342     $self->_get_printers($dbh, $params{"printers"});
 
2345   if ($params{"languages"}) {
 
2346     $self->_get_languages($dbh, $params{"languages"});
 
2349   if ($params{"charts"}) {
 
2350     $self->_get_charts($dbh, $params{"charts"});
 
2353   if ($params{"taxcharts"}) {
 
2354     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2357   if ($params{"taxzones"}) {
 
2358     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2361   if ($params{"employees"}) {
 
2362     $self->_get_employees($dbh, $params{"employees"});
 
2365   if ($params{"salesmen"}) {
 
2366     $self->_get_employees($dbh, $params{"salesmen"});
 
2369   if ($params{"business_types"}) {
 
2370     $self->_get_business_types($dbh, $params{"business_types"});
 
2373   if ($params{"dunning_configs"}) {
 
2374     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2377   if($params{"currencies"}) {
 
2378     $self->_get_currencies($dbh, $params{"currencies"});
 
2381   if($params{"customers"}) {
 
2382     $self->_get_customers($dbh, $params{"customers"});
 
2385   if($params{"vendors"}) {
 
2386     if (ref $params{"vendors"} eq 'HASH') {
 
2387       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2389       $self->_get_vendors($dbh, $params{"vendors"});
 
2393   if($params{"payments"}) {
 
2394     $self->_get_payments($dbh, $params{"payments"});
 
2397   if($params{"departments"}) {
 
2398     $self->_get_departments($dbh, $params{"departments"});
 
2401   if ($params{price_factors}) {
 
2402     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2405   if ($params{warehouses}) {
 
2406     $self->_get_warehouses($dbh, $params{warehouses});
 
2409 #  if ($params{groups}) {
 
2410 #    $self->_get_groups($dbh, $params{groups});
 
2413   if ($params{partsgroup}) {
 
2414     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2417   $main::lxdebug->leave_sub();
 
2420 # this sub gets the id and name from $table
 
2422   $main::lxdebug->enter_sub();
 
2424   my ($self, $myconfig, $table) = @_;
 
2426   # connect to database
 
2427   my $dbh = $self->get_standard_dbh($myconfig);
 
2429   $table = $table eq "customer" ? "customer" : "vendor";
 
2430   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2432   my ($query, @values);
 
2434   if (!$self->{openinvoices}) {
 
2436     if ($self->{customernumber} ne "") {
 
2437       $where = qq|(vc.customernumber ILIKE ?)|;
 
2438       push(@values, like($self->{customernumber}));
 
2440       $where = qq|(vc.name ILIKE ?)|;
 
2441       push(@values, like($self->{$table}));
 
2445       qq~SELECT vc.id, vc.name,
 
2446            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2448          WHERE $where AND (NOT vc.obsolete)
 
2452       qq~SELECT DISTINCT vc.id, vc.name,
 
2453            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2455          JOIN $table vc ON (a.${table}_id = vc.id)
 
2456          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2458     push(@values, like($self->{$table}));
 
2461   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2463   $main::lxdebug->leave_sub();
 
2465   return scalar(@{ $self->{name_list} });
 
2468 # the selection sub is used in the AR, AP, IS, IR, DO and OE module
 
2471   $main::lxdebug->enter_sub();
 
2473   my ($self, $myconfig, $table, $module) = @_;
 
2476   my $dbh = $self->get_standard_dbh;
 
2478   $table = $table eq "customer" ? "customer" : "vendor";
 
2480   # build selection list
 
2481   # Hotfix für Bug 1837 - Besser wäre es alte Buchungsbelege
 
2482   # OHNE Auswahlliste (reines Textfeld) zu laden. Hilft aber auch
 
2483   # nicht für veränderbare Belege (oe, do, ...)
 
2484   my $obsolete = $self->{id} ? '' : "WHERE NOT obsolete";
 
2485   my $query = qq|SELECT count(*) FROM $table $obsolete|;
 
2486   my ($count) = selectrow_query($self, $dbh, $query);
 
2488   if ($count <= $myconfig->{vclimit}) {
 
2489     $query = qq|SELECT id, name, salesman_id
 
2490                 FROM $table $obsolete
 
2492     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2496   $self->get_employee($dbh);
 
2498   # setup sales contacts
 
2499   $query = qq|SELECT e.id, e.name
 
2501               WHERE (e.sales = '1') AND (NOT e.id = ?)
 
2503   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2506   push(@{ $self->{all_employees} },
 
2507        { id   => $self->{employee_id},
 
2508          name => $self->{employee} });
 
2510     # prepare query for departments
 
2511     $query = qq|SELECT id, description
 
2513                 ORDER BY description|;
 
2515   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2518   $query = qq|SELECT id, description
 
2522   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2525   $query = qq|SELECT printer_description, id
 
2527               ORDER BY printer_description|;
 
2529   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2532   $query = qq|SELECT id, description
 
2536   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2538   $main::lxdebug->leave_sub();
 
2542   $main::lxdebug->enter_sub();
 
2544   my ($self, $table, $provided_dbh) = @_;
 
2546   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh;
 
2547   return                                       unless $self->{id};
 
2548   croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
 
2550   my $query       = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
 
2551   my $ref         = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2552   $ref->{mtime} ||= $ref->{itime};
 
2553   $self->{lastmtime} = $ref->{mtime};
 
2554   $main::lxdebug->message(LXDebug->DEBUG2(),"new lastmtime=".$self->{lastmtime});
 
2556   $main::lxdebug->leave_sub();
 
2559 sub mtime_ischanged {
 
2560   my ($self, $table, $option) = @_;
 
2562   return                                       unless $self->{id};
 
2563   croak ("wrong call, no valid table defined") unless $table =~ /^(oe|ar|ap|delivery_orders|parts)$/;
 
2565   my $query       = "SELECT mtime, itime FROM " . $table . " WHERE id = ?";
 
2566   my $ref         = selectfirst_hashref_query($self, $self->get_standard_dbh, $query, $self->{id});
 
2567   $ref->{mtime} ||= $ref->{itime};
 
2569   if ($self->{lastmtime} && $self->{lastmtime} ne $ref->{mtime} ) {
 
2570       $self->error(($option eq 'mail') ?
 
2571         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") :
 
2572         t8("The document has been changed by another user. Please reopen it in another window and copy the changes to the new window")
 
2574     $::dispatcher->end_request;
 
2578 sub language_payment {
 
2579   $main::lxdebug->enter_sub();
 
2581   my ($self, $myconfig) = @_;
 
2583   my $dbh = $self->get_standard_dbh($myconfig);
 
2585   my $query = qq|SELECT id, description
 
2589   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2592   $query = qq|SELECT printer_description, id
 
2594               ORDER BY printer_description|;
 
2596   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2599   $query = qq|SELECT id, description
 
2603   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2605   # get buchungsgruppen
 
2606   $query = qq|SELECT id, description
 
2607               FROM buchungsgruppen|;
 
2609   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2611   $main::lxdebug->leave_sub();
 
2614 # this is only used for reports
 
2615 sub all_departments {
 
2616   $main::lxdebug->enter_sub();
 
2618   my ($self, $myconfig, $table) = @_;
 
2620   my $dbh = $self->get_standard_dbh($myconfig);
 
2622   my $query = qq|SELECT id, description
 
2624                  ORDER BY description|;
 
2625   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2627   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2629   $main::lxdebug->leave_sub();
 
2633   $main::lxdebug->enter_sub();
 
2635   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2638   if ($table eq "customer") {
 
2647   $self->all_vc($myconfig, $table, $module);
 
2649   # get last customers or vendors
 
2650   my ($query, $sth, $ref);
 
2652   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2657     my $transdate = "current_date";
 
2658     if ($self->{transdate}) {
 
2659       $transdate = $dbh->quote($self->{transdate});
 
2662     # now get the account numbers
 
2663 #    $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2664 #                FROM chart c, taxkeys tk
 
2665 #                WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2666 #                  (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2667 #                ORDER BY c.accno|;
 
2669 #  same query as above, but without expensive subquery for each row. about 80% faster
 
2671       SELECT c.accno, c.description, c.link, c.taxkey_id, tk2.tax_id
 
2673         -- find newest entries in taxkeys
 
2675           SELECT chart_id, MAX(startdate) AS startdate
 
2677           WHERE (startdate <= $transdate)
 
2679         ) tk ON (c.id = tk.chart_id)
 
2680         -- and load all of those entries
 
2681         INNER JOIN taxkeys tk2
 
2682            ON (tk.chart_id = tk2.chart_id AND tk.startdate = tk2.startdate)
 
2683        WHERE (c.link LIKE ?)
 
2686     $sth = $dbh->prepare($query);
 
2688     do_statement($self, $sth, $query, like($module));
 
2690     $self->{accounts} = "";
 
2691     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2693       foreach my $key (split(/:/, $ref->{link})) {
 
2694         if ($key =~ /\Q$module\E/) {
 
2696           # cross reference for keys
 
2697           $xkeyref{ $ref->{accno} } = $key;
 
2699           push @{ $self->{"${module}_links"}{$key} },
 
2700             { accno       => $ref->{accno},
 
2701               description => $ref->{description},
 
2702               taxkey      => $ref->{taxkey_id},
 
2703               tax_id      => $ref->{tax_id} };
 
2705           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2711   # get taxkeys and description
 
2712   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2713   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2715   if (($module eq "AP") || ($module eq "AR")) {
 
2716     # get tax rates and description
 
2717     $query = qq|SELECT * FROM tax|;
 
2718     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2721   my $extra_columns = '';
 
2722   $extra_columns   .= 'a.direct_debit, ' if ($module eq 'AR') || ($module eq 'AP');
 
2727            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2728            a.duedate, a.ordnumber, a.taxincluded, (SELECT cu.name FROM currencies cu WHERE cu.id=a.currency_id) AS currency, a.notes,
 
2730            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2731            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2732            a.globalproject_id, ${extra_columns}
 
2734            d.description AS department,
 
2737          JOIN $table c ON (a.${table}_id = c.id)
 
2738          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2739          LEFT JOIN department d ON (d.id = a.department_id)
 
2741     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2743     foreach my $key (keys %$ref) {
 
2744       $self->{$key} = $ref->{$key};
 
2746     $self->{mtime}   ||= $self->{itime};
 
2747     $self->{lastmtime} = $self->{mtime};
 
2748     my $transdate = "current_date";
 
2749     if ($self->{transdate}) {
 
2750       $transdate = $dbh->quote($self->{transdate});
 
2753     # now get the account numbers
 
2754     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2756                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2758                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2759                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2762     $sth = $dbh->prepare($query);
 
2763     do_statement($self, $sth, $query, like($module));
 
2765     $self->{accounts} = "";
 
2766     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2768       foreach my $key (split(/:/, $ref->{link})) {
 
2769         if ($key =~ /\Q$module\E/) {
 
2771           # cross reference for keys
 
2772           $xkeyref{ $ref->{accno} } = $key;
 
2774           push @{ $self->{"${module}_links"}{$key} },
 
2775             { accno       => $ref->{accno},
 
2776               description => $ref->{description},
 
2777               taxkey      => $ref->{taxkey_id},
 
2778               tax_id      => $ref->{tax_id} };
 
2780           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2786     # get amounts from individual entries
 
2789            c.accno, c.description,
 
2790            a.acc_trans_id, a.source, a.amount, a.memo, a.transdate, a.gldate, a.cleared, a.project_id, a.taxkey,
 
2794          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2795          LEFT JOIN project p ON (p.id = a.project_id)
 
2796          LEFT JOIN tax t ON (t.id= a.tax_id)
 
2797          WHERE a.trans_id = ?
 
2798          AND a.fx_transaction = '0'
 
2799          ORDER BY a.acc_trans_id, a.transdate|;
 
2800     $sth = $dbh->prepare($query);
 
2801     do_statement($self, $sth, $query, $self->{id});
 
2803     # get exchangerate for currency
 
2804     $self->{exchangerate} =
 
2805       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2808     # store amounts in {acc_trans}{$key} for multiple accounts
 
2809     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2810       $ref->{exchangerate} =
 
2811         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2812       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2815       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2816         $ref->{amount} *= -1;
 
2818       $ref->{index} = $index;
 
2820       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2827            d.closedto, d.revtrans,
 
2828            (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
 
2829            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2830            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
 
2831            (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id) AS rndgain_accno,
 
2832            (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id) AS rndloss_accno
 
2834     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2835     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2842             current_date AS transdate, d.closedto, d.revtrans,
 
2843             (SELECT cu.name FROM currencies cu WHERE cu.id=d.currency_id) AS defaultcurrency,
 
2844             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2845             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno,
 
2846             (SELECT c.accno FROM chart c WHERE d.rndgain_accno_id = c.id) AS rndgain_accno,
 
2847             (SELECT c.accno FROM chart c WHERE d.rndloss_accno_id = c.id) AS rndloss_accno
 
2849     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2850     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2852     if ($self->{"$self->{vc}_id"}) {
 
2854       # only setup currency
 
2855       ($self->{currency}) = $self->{defaultcurrency} if !$self->{currency};
 
2859       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2861       # get exchangerate for currency
 
2862       $self->{exchangerate} =
 
2863         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2869   $main::lxdebug->leave_sub();
 
2873   $main::lxdebug->enter_sub();
 
2875   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2879   $table         = $table eq "customer" ? "customer" : "vendor";
 
2880   my %column_map = ("a.${table}_id"           => "${table}_id",
 
2881                     "a.department_id"         => "department_id",
 
2882                     "d.description"           => "department",
 
2883                     "ct.name"                 => $table,
 
2884                     "cu.name"                 => "currency",
 
2887   if ($self->{type} =~ /delivery_order/) {
 
2888     $arap  = 'delivery_orders';
 
2889     delete $column_map{"cu.currency"};
 
2891   } elsif ($self->{type} =~ /_order/) {
 
2893     $where = "quotation = '0'";
 
2895   } elsif ($self->{type} =~ /_quotation/) {
 
2897     $where = "quotation = '1'";
 
2899   } elsif ($table eq 'customer') {
 
2907   $where           = "($where) AND" if ($where);
 
2908   my $query        = qq|SELECT MAX(id) FROM $arap
 
2909                         WHERE $where ${table}_id > 0|;
 
2910   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
2913   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
2914   $query           = qq|SELECT $column_spec
 
2916                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
2917                         LEFT JOIN department d  ON (a.department_id = d.id)
 
2918                         LEFT JOIN currencies cu ON (cu.id=ct.currency_id)
 
2920   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
2922   map { $self->{$_} = $ref->{$_} } values %column_map;
 
2924   $main::lxdebug->leave_sub();
 
2928   $main::lxdebug->enter_sub();
 
2931   my $myconfig = shift || \%::myconfig;
 
2932   my ($thisdate, $days) = @_;
 
2934   my $dbh = $self->get_standard_dbh($myconfig);
 
2939     my $dateformat = $myconfig->{dateformat};
 
2940     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2941     $thisdate = $dbh->quote($thisdate);
 
2942     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
2944     $query = qq|SELECT current_date AS thisdate|;
 
2947   ($thisdate) = selectrow_query($self, $dbh, $query);
 
2949   $main::lxdebug->leave_sub();
 
2955   $main::lxdebug->enter_sub();
 
2957   my ($self, $flds, $new, $count, $numrows) = @_;
 
2961   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
2966   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
2968     my $j = $item->{ndx} - 1;
 
2969     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
2973   for $i ($count + 1 .. $numrows) {
 
2974     map { delete $self->{"${_}_$i"} } @{$flds};
 
2977   $main::lxdebug->leave_sub();
 
2981   $main::lxdebug->enter_sub();
 
2983   my ($self, $myconfig) = @_;
 
2987   SL::DB->client->with_transaction(sub {
 
2988     my $dbh = SL::DB->client->dbh;
 
2990     my $query = qq|DELETE FROM status
 
2991                    WHERE (formname = ?) AND (trans_id = ?)|;
 
2992     my $sth = prepare_query($self, $dbh, $query);
 
2994     if ($self->{formname} =~ /(check|receipt)/) {
 
2995       for $i (1 .. $self->{rowcount}) {
 
2996         do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
2999       do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3003     my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3004     my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3006     my %queued = split / /, $self->{queued};
 
3009     if ($self->{formname} =~ /(check|receipt)/) {
 
3011       # this is a check or receipt, add one entry for each lineitem
 
3012       my ($accno) = split /--/, $self->{account};
 
3013       $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3014                   VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3015       @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3016       $sth = prepare_query($self, $dbh, $query);
 
3018       for $i (1 .. $self->{rowcount}) {
 
3019         if ($self->{"checked_$i"}) {
 
3020           do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3026       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3027                   VALUES (?, ?, ?, ?, ?)|;
 
3028       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3029                $queued{$self->{formname}}, $self->{formname});
 
3032   }) or do { die SL::DB->client->error };
 
3034   $main::lxdebug->leave_sub();
 
3038   $main::lxdebug->enter_sub();
 
3040   my ($self, $dbh) = @_;
 
3042   my ($query, $printed, $emailed);
 
3044   my $formnames  = $self->{printed};
 
3045   my $emailforms = $self->{emailed};
 
3047   $query = qq|DELETE FROM status
 
3048                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3049   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3051   # this only applies to the forms
 
3052   # checks and receipts are posted when printed or queued
 
3054   if ($self->{queued}) {
 
3055     my %queued = split / /, $self->{queued};
 
3057     foreach my $formname (keys %queued) {
 
3058       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3059       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3061       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3062                   VALUES (?, ?, ?, ?, ?)|;
 
3063       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3065       $formnames  =~ s/\Q$self->{formname}\E//;
 
3066       $emailforms =~ s/\Q$self->{formname}\E//;
 
3071   # save printed, emailed info
 
3072   $formnames  =~ s/^ +//g;
 
3073   $emailforms =~ s/^ +//g;
 
3076   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3077   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3079   foreach my $formname (keys %status) {
 
3080     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3081     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3083     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3084                 VALUES (?, ?, ?, ?)|;
 
3085     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3088   $main::lxdebug->leave_sub();
 
3092 # $main::locale->text('SAVED')
 
3093 # $main::locale->text('DELETED')
 
3094 # $main::locale->text('ADDED')
 
3095 # $main::locale->text('PAYMENT POSTED')
 
3096 # $main::locale->text('POSTED')
 
3097 # $main::locale->text('POSTED AS NEW')
 
3098 # $main::locale->text('ELSE')
 
3099 # $main::locale->text('SAVED FOR DUNNING')
 
3100 # $main::locale->text('DUNNING STARTED')
 
3101 # $main::locale->text('PRINTED')
 
3102 # $main::locale->text('MAILED')
 
3103 # $main::locale->text('SCREENED')
 
3104 # $main::locale->text('CANCELED')
 
3105 # $main::locale->text('invoice')
 
3106 # $main::locale->text('proforma')
 
3107 # $main::locale->text('sales_order')
 
3108 # $main::locale->text('pick_list')
 
3109 # $main::locale->text('purchase_order')
 
3110 # $main::locale->text('bin_list')
 
3111 # $main::locale->text('sales_quotation')
 
3112 # $main::locale->text('request_quotation')
 
3115   $main::lxdebug->enter_sub();
 
3118   my $dbh  = shift || SL::DB->client->dbh;
 
3119   SL::DB->client->with_transaction(sub {
 
3121     if(!exists $self->{employee_id}) {
 
3122       &get_employee($self, $dbh);
 
3126      qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3127      qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3128     my @values = (conv_i($self->{id}), $self->{login},
 
3129                   $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3130     do_query($self, $dbh, $query, @values);
 
3132   }) or do { die SL::DB->client->error };
 
3134   $main::lxdebug->leave_sub();
 
3138   $main::lxdebug->enter_sub();
 
3140   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3141   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3142   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3145   if ($trans_id ne "") {
 
3147       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 | .
 
3148       qq|FROM history_erp h | .
 
3149       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3150       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3153     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3155     $sth->execute() || $self->dberror("$query");
 
3157     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3158       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3159       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3160       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3161       $tempArray[$i++] = $hash_ref;
 
3163     $main::lxdebug->leave_sub() and return \@tempArray
 
3164       if ($i > 0 && $tempArray[0] ne "");
 
3166   $main::lxdebug->leave_sub();
 
3170 sub get_partsgroup {
 
3171   $main::lxdebug->enter_sub();
 
3173   my ($self, $myconfig, $p) = @_;
 
3174   my $target = $p->{target} || 'all_partsgroup';
 
3176   my $dbh = $self->get_standard_dbh($myconfig);
 
3178   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3180                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3183   if ($p->{searchitems} eq 'part') {
 
3184     $query .= qq|WHERE p.part_type = 'part'|;
 
3186   if ($p->{searchitems} eq 'service') {
 
3187     $query .= qq|WHERE p.part_type = 'service'|;
 
3189   if ($p->{searchitems} eq 'assembly') {
 
3190     $query .= qq|WHERE p.part_type = 'assembly'|;
 
3193   $query .= qq|ORDER BY partsgroup|;
 
3196     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3197                 ORDER BY partsgroup|;
 
3200   if ($p->{language_code}) {
 
3201     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3202                   t.description AS translation
 
3204                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3205                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3206                 ORDER BY translation|;
 
3207     @values = ($p->{language_code});
 
3210   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3212   $main::lxdebug->leave_sub();
 
3215 sub get_pricegroup {
 
3216   $main::lxdebug->enter_sub();
 
3218   my ($self, $myconfig, $p) = @_;
 
3220   my $dbh = $self->get_standard_dbh($myconfig);
 
3222   my $query = qq|SELECT p.id, p.pricegroup
 
3225   $query .= qq| ORDER BY pricegroup|;
 
3228     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3229                 ORDER BY pricegroup|;
 
3232   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3234   $main::lxdebug->leave_sub();
 
3238 # usage $form->all_years($myconfig, [$dbh])
 
3239 # return list of all years where bookings found
 
3242   $main::lxdebug->enter_sub();
 
3244   my ($self, $myconfig, $dbh) = @_;
 
3246   $dbh ||= $self->get_standard_dbh($myconfig);
 
3249   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3250                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3251   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3253   if ($myconfig->{dateformat} =~ /^yy/) {
 
3254     ($startdate) = split /\W/, $startdate;
 
3255     ($enddate) = split /\W/, $enddate;
 
3257     (@_) = split /\W/, $startdate;
 
3259     (@_) = split /\W/, $enddate;
 
3264   $startdate = substr($startdate,0,4);
 
3265   $enddate = substr($enddate,0,4);
 
3267   while ($enddate >= $startdate) {
 
3268     push @all_years, $enddate--;
 
3273   $main::lxdebug->leave_sub();
 
3277   $main::lxdebug->enter_sub();
 
3281   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3283   $main::lxdebug->leave_sub();
 
3287   $main::lxdebug->enter_sub();
 
3292   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3294   $main::lxdebug->leave_sub();
 
3297 sub prepare_for_printing {
 
3300   my $defaults         = SL::DB::Default->get;
 
3302   $self->{templates} ||= $defaults->templates;
 
3303   $self->{formname}  ||= $self->{type};
 
3304   $self->{media}     ||= 'email';
 
3306   die "'media' other than 'email', 'file', 'printer' is not supported yet" unless $self->{media} =~ m/^(?:email|file|printer)$/;
 
3308   # Several fields that used to reside in %::myconfig (stored in
 
3309   # auth.user_config) are now stored in defaults. Copy them over for
 
3311   $self->{$_} = $defaults->$_ for qw(company address taxnumber co_ustid duns sepa_creditor_id);
 
3313   $self->{"myconfig_${_}"} = $::myconfig{$_} for grep { $_ ne 'dbpasswd' } keys %::myconfig;
 
3315   if (!$self->{employee_id}) {
 
3316     $self->{"employee_${_}"} = $::myconfig{$_} for qw(email tel fax name signature);
 
3317     $self->{"employee_${_}"} = $defaults->$_   for qw(address businessnumber co_ustid company duns sepa_creditor_id taxnumber);
 
3320   # Load shipping address from database. If shipto_id is set then it's
 
3321   # one from the customer's/vendor's master data. Otherwise look an a
 
3322   # customized address linking back to the current record.
 
3323   my $shipto_module = $self->{type} =~ /_delivery_order$/                                             ? 'DO'
 
3324                     : $self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/ ? 'OE'
 
3326   my $shipto        = $self->{shipto_id} ? SL::DB::Shipto->new(shipto_id => $self->{shipto_id})->load
 
3327                     :                      SL::DB::Manager::Shipto->get_first(where => [ module => $shipto_module, trans_id => $self->{id} ]);
 
3329     $self->{$_} = $shipto->$_ for grep { m{^shipto} } map { $_->name } @{ $shipto->meta->columns };
 
3330     $self->{"shiptocvar_" . $_->config->name} = $_->value_as_text for @{ $shipto->cvars_by_config };
 
3333   my $language = $self->{language} ? '_' . $self->{language} : '';
 
3335   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
3336   if ($self->{language_id}) {
 
3337     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) = AM->get_language_details(\%::myconfig, $self, $self->{language_id});
 
3340   $output_dateformat   ||= $::myconfig{dateformat};
 
3341   $output_numberformat ||= $::myconfig{numberformat};
 
3342   $output_longdates    //= 1;
 
3344   $self->{myconfig_output_dateformat}   = $output_dateformat   // $::myconfig{dateformat};
 
3345   $self->{myconfig_output_longdates}    = $output_longdates    // 1;
 
3346   $self->{myconfig_output_numberformat} = $output_numberformat // $::myconfig{numberformat};
 
3348   # Retrieve accounts for tax calculation.
 
3349   IC->retrieve_accounts(\%::myconfig, $self, map { $_ => $self->{"id_$_"} } 1 .. $self->{rowcount});
 
3351   if ($self->{type} =~ /_delivery_order$/) {
 
3352     DO->order_details(\%::myconfig, $self);
 
3353   } elsif ($self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/) {
 
3354     OE->order_details(\%::myconfig, $self);
 
3356     IS->invoice_details(\%::myconfig, $self, $::locale);
 
3359   # Chose extension & set source file name
 
3360   my $extension = 'html';
 
3361   if ($self->{format} eq 'postscript') {
 
3362     $self->{postscript}   = 1;
 
3364   } elsif ($self->{"format"} =~ /pdf/) {
 
3366     $extension            = $self->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
3367   } elsif ($self->{"format"} =~ /opendocument/) {
 
3368     $self->{opendocument} = 1;
 
3370   } elsif ($self->{"format"} =~ /excel/) {
 
3375   my $printer_code    = $self->{printer_code} ? '_' . $self->{printer_code} : '';
 
3376   my $email_extension = $self->{media} eq 'email' && -f ($defaults->templates . "/$self->{formname}_email${language}.${extension}") ? '_email' : '';
 
3377   $self->{IN}         = "$self->{formname}${email_extension}${language}${printer_code}.${extension}";
 
3380   $self->format_dates($output_dateformat, $output_longdates,
 
3381                       qw(invdate orddate quodate pldate duedate reqdate transdate shippingdate deliverydate validitydate paymentdate datepaid
 
3382                          transdate_oe deliverydate_oe employee_startdate employee_enddate),
 
3383                       grep({ /^(?:datepaid|transdate_oe|reqdate|deliverydate|deliverydate_oe|transdate)_\d+$/ } keys(%{$self})));
 
3385   $self->reformat_numbers($output_numberformat, 2,
 
3386                           qw(invtotal ordtotal quototal subtotal linetotal listprice sellprice netprice discount tax taxbase total paid),
 
3387                           grep({ /^(?:linetotal|listprice|sellprice|netprice|taxbase|discount|paid|subtotal|total|tax)_\d+$/ } keys(%{$self})));
 
3389   $self->reformat_numbers($output_numberformat, undef, qw(qty price_factor), grep({ /^qty_\d+$/} keys(%{$self})));
 
3391   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
3393   if (scalar @{ $cvar_date_fields }) {
 
3394     $self->format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
3397   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
3398     $self->reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
3401   $self->{template_meta} = {
 
3402     formname  => $self->{formname},
 
3403     language  => SL::DB::Manager::Language->find_by_or_create(id => $self->{language_id} || undef),
 
3404     format    => $self->{format},
 
3405     media     => $self->{media},
 
3406     extension => $extension,
 
3407     printer   => SL::DB::Manager::Printer->find_by_or_create(id => $self->{printer_id} || undef),
 
3408     today     => DateTime->today,
 
3414 sub calculate_arap {
 
3415   my ($self,$buysell,$taxincluded,$exchangerate,$roundplaces) = @_;
 
3417   # this function is used to calculate netamount, total_tax and amount for AP and
 
3418   # AR transactions (Kreditoren-/Debitorenbuchungen) by going over all lines
 
3420   # Thus it needs a fully prepared $form to work on.
 
3421   # calculate_arap assumes $form->{amount_$i} entries still need to be parsed
 
3423   # The calculated total values are all rounded (default is to 2 places) and
 
3424   # returned as parameters rather than directly modifying form.  The aim is to
 
3425   # make the calculation of AP and AR behave identically.  There is a test-case
 
3426   # for this function in t/form/arap.t
 
3428   # While calculating the totals $form->{amount_$i} and $form->{tax_$i} are
 
3429   # modified and formatted and receive the correct sign for writing straight to
 
3430   # acc_trans, depending on whether they are ar or ap.
 
3433   die "taxincluded needed in Form->calculate_arap" unless defined $taxincluded;
 
3434   die "exchangerate needed in Form->calculate_arap" unless defined $exchangerate;
 
3435   die 'illegal buysell parameter, has to be \"buy\" or \"sell\" in Form->calculate_arap\n' unless $buysell =~ /^(buy|sell)$/;
 
3436   $roundplaces = 2 unless $roundplaces;
 
3438   my $sign = 1;  # adjust final results for writing amount to acc_trans
 
3439   $sign = -1 if $buysell eq 'buy';
 
3441   my ($netamount,$total_tax,$amount);
 
3445   # parse and round amounts, setting correct sign for writing to acc_trans
 
3446   for my $i (1 .. $self->{rowcount}) {
 
3447     $self->{"amount_$i"} = $self->round_amount($self->parse_amount(\%::myconfig, $self->{"amount_$i"}) * $exchangerate * $sign, $roundplaces);
 
3449     $amount += $self->{"amount_$i"} * $sign;
 
3452   for my $i (1 .. $self->{rowcount}) {
 
3453     next unless $self->{"amount_$i"};
 
3454     ($self->{"tax_id_$i"}) = split /--/, $self->{"taxchart_$i"};
 
3455     my $tax_id = $self->{"tax_id_$i"};
 
3457     my $selected_tax = SL::DB::Manager::Tax->find_by(id => "$tax_id");
 
3459     if ( $selected_tax ) {
 
3461       if ( $buysell eq 'sell' ) {
 
3462         $self->{AR_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
 
3464         $self->{AP_amounts}{"tax_$i"} = $selected_tax->chart->accno if defined $selected_tax->chart;
 
3467       $self->{"taxkey_$i"} = $selected_tax->taxkey;
 
3468       $self->{"taxrate_$i"} = $selected_tax->rate;
 
3471     ($self->{"amount_$i"}, $self->{"tax_$i"}) = $self->calculate_tax($self->{"amount_$i"},$self->{"taxrate_$i"},$taxincluded,$roundplaces);
 
3473     $netamount  += $self->{"amount_$i"};
 
3474     $total_tax  += $self->{"tax_$i"};
 
3477   $amount = $netamount + $total_tax;
 
3479   # due to $sign amount_$i und tax_$i already have the right sign for acc_trans
 
3480   # but reverse sign of totals for writing amounts to ar
 
3481   if ( $buysell eq 'buy' ) {
 
3487   return($netamount,$total_tax,$amount);
 
3491   my ($self, $dateformat, $longformat, @indices) = @_;
 
3493   $dateformat ||= $::myconfig{dateformat};
 
3495   foreach my $idx (@indices) {
 
3496     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3497       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3498         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $dateformat, $longformat);
 
3502     next unless defined $self->{$idx};
 
3504     if (!ref($self->{$idx})) {
 
3505       $self->{$idx} = $::locale->reformat_date(\%::myconfig, $self->{$idx}, $dateformat, $longformat);
 
3507     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3508       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3509         $self->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{$idx}->[$i], $dateformat, $longformat);
 
3515 sub reformat_numbers {
 
3516   my ($self, $numberformat, $places, @indices) = @_;
 
3518   return if !$numberformat || ($numberformat eq $::myconfig{numberformat});
 
3520   foreach my $idx (@indices) {
 
3521     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3522       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3523         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i]);
 
3527     next unless defined $self->{$idx};
 
3529     if (!ref($self->{$idx})) {
 
3530       $self->{$idx} = $self->parse_amount(\%::myconfig, $self->{$idx});
 
3532     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3533       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3534         $self->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{$idx}->[$i]);
 
3539   my $saved_numberformat    = $::myconfig{numberformat};
 
3540   $::myconfig{numberformat} = $numberformat;
 
3542   foreach my $idx (@indices) {
 
3543     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3544       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3545         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $places);
 
3549     next unless defined $self->{$idx};
 
3551     if (!ref($self->{$idx})) {
 
3552       $self->{$idx} = $self->format_amount(\%::myconfig, $self->{$idx}, $places);
 
3554     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3555       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3556         $self->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{$idx}->[$i], $places);
 
3561   $::myconfig{numberformat} = $saved_numberformat;
 
3564 sub create_email_signature {
 
3566   my $client_signature = $::instance_conf->get_signature;
 
3567   my $user_signature   = $::myconfig{signature};
 
3570   if ( $client_signature or $user_signature ) {
 
3571     $signature  = "\n\n-- \n";
 
3572     $signature .= $user_signature   . "\n" if $user_signature;
 
3573     $signature .= $client_signature . "\n" if $client_signature;
 
3581   $::lxdebug->enter_sub;
 
3583   my %style_to_script_map = (
 
3588   my $menu_script = $style_to_script_map{$::myconfig{menustyle}} || '';
 
3591   require "bin/mozilla/menu$menu_script.pl";
 
3593   require SL::Controller::FrameHeader;
 
3596   my $layout = SL::Controller::FrameHeader->new->action_header . ::render();
 
3598   $::lxdebug->leave_sub;
 
3603   # this function calculates the net amount and tax for the lines in ar, ap and
 
3604   # gl and is used for update as well as post. When used with update the return
 
3605   # value of amount isn't needed
 
3607   # calculate_tax should always work with positive values, or rather as the user inputs them
 
3608   # calculate_tax uses db/perl numberformat, i.e. parsed numbers
 
3609   # convert to negative numbers (when necessary) only when writing to acc_trans
 
3610   # the amount from $form for ap/ar/gl is currently always rounded to 2 decimals before it reaches here
 
3611   # for post_transaction amount already contains exchangerate and correct sign and is rounded
 
3612   # calculate_tax doesn't (need to) know anything about exchangerate
 
3614   my ($self,$amount,$taxrate,$taxincluded,$roundplaces) = @_;
 
3622     # calculate tax (unrounded), subtract from amount, round amount and round tax
 
3623     $tax       = $amount - ($amount / ($taxrate + 1)); # equivalent to: taxrate * amount / (taxrate + 1)
 
3624     $amount    = $self->round_amount($amount - $tax, $roundplaces);
 
3625     $tax       = $self->round_amount($tax, $roundplaces);
 
3627     $tax       = $amount * $taxrate;
 
3628     $tax       = $self->round_amount($tax, $roundplaces);
 
3631   $tax = 0 unless $tax;
 
3633   return ($amount,$tax);
 
3642 SL::Form.pm - main data object.
 
3646 This is the main data object of kivitendo.
 
3647 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3648 Points of interest for a beginner are:
 
3650  - $form->error            - renders a generic error in html. accepts an error message
 
3651  - $form->get_standard_dbh - returns a database connection for the
 
3653 =head1 SPECIAL FUNCTIONS
 
3655 =head2 C<redirect_header> $url
 
3657 Generates a HTTP redirection header for the new C<$url>. Constructs an
 
3658 absolute URL including scheme, host name and port. If C<$url> is a
 
3659 relative URL then it is considered relative to kivitendo base URL.
 
3661 This function C<die>s if headers have already been created with
 
3662 C<$::form-E<gt>header>.
 
3666   print $::form->redirect_header('oe.pl?action=edit&id=1234');
 
3667   print $::form->redirect_header('http://www.lx-office.org/');
 
3671 Generates a general purpose http/html header and includes most of the scripts
 
3672 and stylesheets needed. Stylesheets can be added with L<use_stylesheet>.
 
3674 Only one header will be generated. If the method was already called in this
 
3675 request it will not output anything and return undef. Also if no
 
3676 HTTP_USER_AGENT is found, no header is generated.
 
3678 Although header does not accept parameters itself, it will honor special
 
3679 hashkeys of its Form instance:
 
3687 If one of these is set, a http-equiv refresh is generated. Missing parameters
 
3688 default to 3 seconds and the refering url.
 
3692 Either a scalar or an array ref. Will be inlined into the header. Add
 
3693 stylesheets with the L<use_stylesheet> function.
 
3697 If true, a css snippet will be generated that sets the page in landscape mode.
 
3701 Used to override the default favicon.
 
3705 A html page title will be generated from this
 
3707 =item mtime_ischanged
 
3709 Tries to avoid concurrent write operations to records by checking the database mtime with a fetched one.
 
3711 Can be used / called with any table, that has itime and mtime attributes.
 
3712 Valid C<table> names are: oe, ar, ap, delivery_orders, parts.
 
3713 Can be called wit C<option> mail to generate a different error message.
 
3715 Returns undef if no save operation has been done yet ($self->{id} not present).
 
3716 Returns undef if no concurrent write process is detected otherwise a error message.