1 #====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (C) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  15 # Contributors: Thomas Bayen <bayen@gmx.de>
 
  16 #               Antti Kaihola <akaihola@siba.fi>
 
  17 #               Moritz Bunkus (tex code)
 
  19 # This program is free software; you can redistribute it and/or modify
 
  20 # it under the terms of the GNU General Public License as published by
 
  21 # the Free Software Foundation; either version 2 of the License, or
 
  22 # (at your option) any later version.
 
  24 # This program is distributed in the hope that it will be useful,
 
  25 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  27 # GNU General Public License for more details.
 
  28 # You should have received a copy of the GNU General Public License
 
  29 # along with this program; if not, write to the Free Software
 
  30 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  31 #======================================================================
 
  32 # Utilities for parsing forms
 
  33 # and supporting routines for linking account numbers
 
  34 # used in AR, AP and IS, IR modules
 
  36 #======================================================================
 
  68 use List::Util qw(first max min sum);
 
  69 use List::MoreUtils qw(all any apply);
 
  76   disconnect_standard_dbh();
 
  79 sub disconnect_standard_dbh {
 
  80   return unless $standard_dbh;
 
  81   $standard_dbh->disconnect();
 
  86   $main::lxdebug->enter_sub(2);
 
  92   my @tokens = split /((?:\[\+?\])?(?:\.|$))/, $key;
 
  97      $curr = \ $self->{ shift @tokens };
 
 101     my $sep = shift @tokens;
 
 102     my $key = shift @tokens;
 
 104     $curr = \ $$curr->[++$#$$curr], next if $sep eq '[]';
 
 105     $curr = \ $$curr->[max 0, $#$$curr]  if $sep eq '[].';
 
 106     $curr = \ $$curr->[++$#$$curr]       if $sep eq '[+].';
 
 107     $curr = \ $$curr->{$key}
 
 112   $main::lxdebug->leave_sub(2);
 
 118   $main::lxdebug->enter_sub(2);
 
 123   my @pairs = split(/&/, $input);
 
 126     my ($key, $value) = split(/=/, $_, 2);
 
 127     $self->_store_value($self->unescape($key), $self->unescape($value)) if ($key);
 
 130   $main::lxdebug->leave_sub(2);
 
 133 sub _request_to_hash {
 
 134   $main::lxdebug->enter_sub(2);
 
 140   if (!$ENV{'CONTENT_TYPE'}
 
 141       || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
 
 143     $self->_input_to_hash($input);
 
 145     $main::lxdebug->leave_sub(2);
 
 149   my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
 
 151   my $boundary = '--' . $1;
 
 153   foreach my $line (split m/\n/, $input) {
 
 154     last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
 
 156     if (($line eq $boundary) || ($line eq "$boundary\r")) {
 
 157       ${ $previous } =~ s|\r?\n$|| if $previous;
 
 163       $content_type   = "text/plain";
 
 170     next unless $boundary_found;
 
 172     if (!$headers_done) {
 
 173       $line =~ s/[\r\n]*$//;
 
 180       if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
 
 181         if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
 
 183           substr $line, $-[0], $+[0] - $-[0], "";
 
 186         if ($line =~ m|name\s*=\s*"(.*?)"|i) {
 
 188           substr $line, $-[0], $+[0] - $-[0], "";
 
 191         $previous         = _store_value($uploads, $name, '') if ($name);
 
 192         $self->{FILENAME} = $filename if ($filename);
 
 197       if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
 
 204     next unless $previous;
 
 206     ${ $previous } .= "${line}\n";
 
 209   ${ $previous } =~ s|\r?\n$|| if $previous;
 
 211   $main::lxdebug->leave_sub(2);
 
 216 sub _recode_recursively {
 
 217   $main::lxdebug->enter_sub();
 
 218   my ($iconv, $param) = @_;
 
 220   if (any { ref $param eq $_ } qw(Form HASH)) {
 
 221     foreach my $key (keys %{ $param }) {
 
 222       if (!ref $param->{$key}) {
 
 223         # Workaround for a bug: converting $param->{$key} directly
 
 224         # leads to 'undef'. I don't know why. Converting a copy works,
 
 226         $param->{$key} = $iconv->convert("" . $param->{$key});
 
 228         _recode_recursively($iconv, $param->{$key});
 
 232   } elsif (ref $param eq 'ARRAY') {
 
 233     foreach my $idx (0 .. scalar(@{ $param }) - 1) {
 
 234       if (!ref $param->[$idx]) {
 
 235         # Workaround for a bug: converting $param->[$idx] directly
 
 236         # leads to 'undef'. I don't know why. Converting a copy works,
 
 238         $param->[$idx] = $iconv->convert("" . $param->[$idx]);
 
 240         _recode_recursively($iconv, $param->[$idx]);
 
 244   $main::lxdebug->leave_sub();
 
 248   $main::lxdebug->enter_sub();
 
 254   if ($LXDebug::watch_form) {
 
 255     require SL::Watchdog;
 
 256     tie %{ $self }, 'SL::Watchdog';
 
 261   $main::lxdebug->leave_sub();
 
 267   $main::lxdebug->enter_sub();
 
 271   $self->_input_to_hash($ENV{QUERY_STRING}) if $ENV{QUERY_STRING};
 
 272   $self->_input_to_hash($ARGV[0])           if @ARGV && $ARGV[0];
 
 275   if ($ENV{CONTENT_LENGTH}) {
 
 277     read STDIN, $content, $ENV{CONTENT_LENGTH};
 
 278     $uploads = $self->_request_to_hash($content);
 
 281   if ($self->{RESTORE_FORM_FROM_SESSION_ID}) {
 
 283     $::auth->restore_form_from_session(delete $self->{RESTORE_FORM_FROM_SESSION_ID}, form => \%temp_form);
 
 284     $self->_input_to_hash(join '&', map { $self->escape($_) . '=' . $self->escape($temp_form{$_}) } keys %temp_form);
 
 287   my $db_charset   = $::lx_office_conf{system}->{dbcharset};
 
 288   $db_charset    ||= Common::DEFAULT_CHARSET;
 
 290   my $encoding     = $self->{INPUT_ENCODING} || $db_charset;
 
 291   delete $self->{INPUT_ENCODING};
 
 293   _recode_recursively(SL::Iconv->new($encoding, $db_charset), $self);
 
 295   map { $self->{$_} = $uploads->{$_} } keys %{ $uploads } if $uploads;
 
 297   #$self->{version} =  "2.6.1";                 # Old hardcoded but secure style
 
 298   open VERSION_FILE, "VERSION";                 # New but flexible code reads version from VERSION-file
 
 299   $self->{version} =  <VERSION_FILE>;
 
 301   $self->{version}  =~ s/[^0-9A-Za-z\.\_\-]//g; # only allow numbers, letters, points, underscores and dashes. Prevents injecting of malicious code.
 
 303   $main::lxdebug->leave_sub();
 
 308 sub _flatten_variables_rec {
 
 309   $main::lxdebug->enter_sub(2);
 
 318   if ('' eq ref $curr->{$key}) {
 
 319     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
 
 321   } elsif ('HASH' eq ref $curr->{$key}) {
 
 322     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
 
 323       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
 
 327     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
 
 328       my $first_array_entry = 1;
 
 330       foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
 
 331         push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
 
 332         $first_array_entry = 0;
 
 337   $main::lxdebug->leave_sub(2);
 
 342 sub flatten_variables {
 
 343   $main::lxdebug->enter_sub(2);
 
 351     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 354   $main::lxdebug->leave_sub(2);
 
 359 sub flatten_standard_variables {
 
 360   $main::lxdebug->enter_sub(2);
 
 363   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
 
 367   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
 
 368     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 371   $main::lxdebug->leave_sub(2);
 
 377   $main::lxdebug->enter_sub();
 
 383   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 385   $main::lxdebug->leave_sub();
 
 389   $main::lxdebug->enter_sub(2);
 
 392   my $password      = $self->{password};
 
 394   $self->{password} = 'X' x 8;
 
 396   local $Data::Dumper::Sortkeys = 1;
 
 397   my $output                    = Dumper($self);
 
 399   $self->{password} = $password;
 
 401   $main::lxdebug->leave_sub(2);
 
 407   $main::lxdebug->enter_sub(2);
 
 409   my ($self, $str) = @_;
 
 411   $str =  Encode::encode('utf-8-strict', $str) if $::locale->is_utf8;
 
 412   $str =~ s/([^a-zA-Z0-9_.:-])/sprintf("%%%02x", ord($1))/ge;
 
 414   $main::lxdebug->leave_sub(2);
 
 420   $main::lxdebug->enter_sub(2);
 
 422   my ($self, $str) = @_;
 
 427   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
 428   $str =  Encode::decode('utf-8-strict', $str) if $::locale->is_utf8;
 
 430   $main::lxdebug->leave_sub(2);
 
 436   $main::lxdebug->enter_sub();
 
 437   my ($self, $str) = @_;
 
 439   if ($str && !ref($str)) {
 
 440     $str =~ s/\"/"/g;
 
 443   $main::lxdebug->leave_sub();
 
 449   $main::lxdebug->enter_sub();
 
 450   my ($self, $str) = @_;
 
 452   if ($str && !ref($str)) {
 
 453     $str =~ s/"/\"/g;
 
 456   $main::lxdebug->leave_sub();
 
 462   $main::lxdebug->enter_sub();
 
 466     map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
 
 468     for (sort keys %$self) {
 
 469       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
 
 470       print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
 
 473   $main::lxdebug->leave_sub();
 
 477   my ($self, $code) = @_;
 
 478   local $self->{__ERROR_HANDLER} = sub { die SL::X::FormError->new($_[0]) };
 
 483   $main::lxdebug->enter_sub();
 
 485   $main::lxdebug->show_backtrace();
 
 487   my ($self, $msg) = @_;
 
 489   if ($self->{__ERROR_HANDLER}) {
 
 490     $self->{__ERROR_HANDLER}->($msg);
 
 492   } elsif ($ENV{HTTP_USER_AGENT}) {
 
 494     $self->show_generic_error($msg);
 
 497     print STDERR "Error: $msg\n";
 
 501   $main::lxdebug->leave_sub();
 
 505   $main::lxdebug->enter_sub();
 
 507   my ($self, $msg) = @_;
 
 509   if ($ENV{HTTP_USER_AGENT}) {
 
 512     if (!$self->{header}) {
 
 518     <p class="message_ok"><b>$msg</b></p>
 
 520     <script type="text/javascript">
 
 522     // If JavaScript is enabled, the whole thing will be reloaded.
 
 523     // The reason is: When one changes his menu setup (HTML / XUL / CSS ...)
 
 524     // it now loads the correct code into the browser instead of do nothing.
 
 525     setTimeout("top.frames.location.href='login.pl'",500);
 
 534     if ($self->{info_function}) {
 
 535       &{ $self->{info_function} }($msg);
 
 541   $main::lxdebug->leave_sub();
 
 544 # calculates the number of rows in a textarea based on the content and column number
 
 545 # can be capped with maxrows
 
 547   $main::lxdebug->enter_sub();
 
 548   my ($self, $str, $cols, $maxrows, $minrows) = @_;
 
 552   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
 
 555   $main::lxdebug->leave_sub();
 
 557   return max(min($rows, $maxrows), $minrows);
 
 561   $main::lxdebug->enter_sub();
 
 563   my ($self, $msg) = @_;
 
 565   $self->error("$msg\n" . $DBI::errstr);
 
 567   $main::lxdebug->leave_sub();
 
 571   $main::lxdebug->enter_sub();
 
 573   my ($self, $name, $msg) = @_;
 
 576   foreach my $part (split m/\./, $name) {
 
 577     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
 
 580     $curr = $curr->{$part};
 
 583   $main::lxdebug->leave_sub();
 
 586 sub _get_request_uri {
 
 589   return URI->new($ENV{HTTP_REFERER})->canonical() if $ENV{HTTP_X_FORWARDED_FOR};
 
 591   my $scheme =  $ENV{HTTPS} && (lc $ENV{HTTPS} eq 'on') ? 'https' : 'http';
 
 592   my $port   =  $ENV{SERVER_PORT} || '';
 
 593   $port      =  undef if (($scheme eq 'http' ) && ($port == 80))
 
 594                       || (($scheme eq 'https') && ($port == 443));
 
 596   my $uri    =  URI->new("${scheme}://");
 
 597   $uri->scheme($scheme);
 
 599   $uri->host($ENV{HTTP_HOST} || $ENV{SERVER_ADDR});
 
 600   $uri->path_query($ENV{REQUEST_URI});
 
 606 sub _add_to_request_uri {
 
 609   my $relative_new_path = shift;
 
 610   my $request_uri       = shift || $self->_get_request_uri;
 
 611   my $relative_new_uri  = URI->new($relative_new_path);
 
 612   my @request_segments  = $request_uri->path_segments;
 
 614   my $new_uri           = $request_uri->clone;
 
 615   $new_uri->path_segments(@request_segments[0..scalar(@request_segments) - 2], $relative_new_uri->path_segments);
 
 620 sub create_http_response {
 
 621   $main::lxdebug->enter_sub();
 
 626   my $cgi      = $main::cgi;
 
 627   $cgi       ||= CGI->new('');
 
 630   if (defined $main::auth) {
 
 631     my $uri      = $self->_get_request_uri;
 
 632     my @segments = $uri->path_segments;
 
 634     $uri->path_segments(@segments);
 
 636     my $session_cookie_value = $main::auth->get_session_id();
 
 638     if ($session_cookie_value) {
 
 639       $session_cookie = $cgi->cookie('-name'   => $main::auth->get_session_cookie_name(),
 
 640                                      '-value'  => $session_cookie_value,
 
 641                                      '-path'   => $uri->path,
 
 642                                      '-secure' => $ENV{HTTPS});
 
 646   my %cgi_params = ('-type' => $params{content_type});
 
 647   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
 
 648   $cgi_params{'-cookie'}  = $session_cookie  if ($session_cookie);
 
 650   map { $cgi_params{'-' . $_} = $params{$_} if exists $params{$_} } qw(content_disposition content_length);
 
 652   my $output = $cgi->header(%cgi_params);
 
 654   $main::lxdebug->leave_sub();
 
 662   $self->{stylesheet} = [ $self->{stylesheet} ] unless ref $self->{stylesheet} eq 'ARRAY';
 
 663   $self->{stylesheet} = [ grep { -f                       }
 
 664                           map  { m:^css/: ? $_ : "css/$_" }
 
 666                                (@{ $self->{stylesheet} }, @_)
 
 669   return @{ $self->{stylesheet} };
 
 673   $::lxdebug->enter_sub;
 
 675   # extra code is currently only used by menuv3 and menuv4 to set their css.
 
 676   # it is strongly deprecated, and will be changed in a future version.
 
 677   my ($self, $extra_code) = @_;
 
 678   my $db_charset = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
 
 681   $::lxdebug->leave_sub and return if !$ENV{HTTP_USER_AGENT} || $self->{header}++;
 
 683   $self->{favicon} ||= "favicon.ico";
 
 684   $self->{titlebar}  = "$self->{title} - $self->{titlebar}" if $self->{title};
 
 687   if ($self->{refresh_url} || $self->{refresh_time}) {
 
 688     my $refresh_time = $self->{refresh_time} || 3;
 
 689     my $refresh_url  = $self->{refresh_url}  || $ENV{REFERER};
 
 690     push @header, "<meta http-equiv='refresh' content='$refresh_time;$refresh_url'>";
 
 693   push @header, map { qq|<link rel="stylesheet" href="$_" type="text/css" title="Lx-Office stylesheet">| } $self->use_stylesheet;
 
 695   push @header, "<style type='text/css'>\@page { size:landscape; }</style>" if $self->{landscape};
 
 696   push @header, "<link rel='shortcut icon' href='$self->{favicon}' type='image/x-icon'>" if -f $self->{favicon};
 
 697   push @header, '<script type="text/javascript" src="js/jquery.js"></script>',
 
 698                 '<script type="text/javascript" src="js/common.js"></script>',
 
 699                 '<style type="text/css">@import url(js/jscalendar/calendar-win2k-1.css);</style>',
 
 700                 '<script type="text/javascript" src="js/jscalendar/calendar.js"></script>',
 
 701                 '<script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>',
 
 702                 '<script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>',
 
 703                 '<script type="text/javascript" src="js/part_selection.js"></script>';
 
 704   push @header, $self->{javascript} if $self->{javascript};
 
 705   push @header, map { $_->show_javascript } @{ $self->{AJAX} || [] };
 
 706   push @header, "<script type='text/javascript'>function fokus(){ document.$self->{fokus}.focus(); }</script>" if $self->{fokus};
 
 707   push @header, sprintf "<script type='text/javascript'>top.document.title='%s';</script>",
 
 708     join ' - ', grep $_, $self->{title}, $self->{login}, $::myconfig{dbname}, $self->{version} if $self->{title};
 
 710   # if there is a title, we put some JavaScript in to the page, wich writes a
 
 711   # meaningful title-tag for our frameset.
 
 713   if ($self->{title}) {
 
 715     <script type="text/javascript">
 
 717       // Write a meaningful title-tag for our frameset.
 
 718       top.document.title="| . $self->{"title"} . qq| - | . $self->{"login"} . qq| - | . $::myconfig{dbname} . qq| - V| . $self->{"version"} . qq|";
 
 724   print $self->create_http_response(content_type => 'text/html', charset => $db_charset);
 
 725   print "<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>\n"
 
 726     if  $ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/; # Other browsers may choke on menu scripts with DOCTYPE.
 
 730   <meta http-equiv="Content-Type" content="text/html; charset=$db_charset">
 
 731   <title>$self->{titlebar}</title>
 
 733   print "  $_\n" for @header;
 
 735   <link rel="stylesheet" href="css/jquery.autocomplete.css" type="text/css" />
 
 736   <meta name="robots" content="noindex,nofollow" />
 
 737   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
 
 738   <script type="text/javascript" src="js/tabcontent.js">
 
 740   /***********************************************
 
 741    * Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
 
 742    * This notice MUST stay intact for legal use
 
 743    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
 
 744    ***********************************************/
 
 753   $::lxdebug->leave_sub;
 
 756 sub ajax_response_header {
 
 757   $main::lxdebug->enter_sub();
 
 761   my $db_charset = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
 
 762   my $cgi        = $main::cgi || CGI->new('');
 
 763   my $output     = $cgi->header('-charset' => $db_charset);
 
 765   $main::lxdebug->leave_sub();
 
 770 sub redirect_header {
 
 774   my $base_uri = $self->_get_request_uri;
 
 775   my $new_uri  = URI->new_abs($new_url, $base_uri);
 
 777   die "Headers already sent" if $self->{header};
 
 780   my $cgi = $main::cgi || CGI->new('');
 
 781   return $cgi->redirect($new_uri);
 
 784 sub set_standard_title {
 
 785   $::lxdebug->enter_sub;
 
 788   $self->{titlebar}  = "Lx-Office " . $::locale->text('Version') . " $self->{version}";
 
 789   $self->{titlebar} .= "- $::myconfig{name}"   if $::myconfig{name};
 
 790   $self->{titlebar} .= "- $::myconfig{dbname}" if $::myconfig{name};
 
 792   $::lxdebug->leave_sub;
 
 795 sub _prepare_html_template {
 
 796   $main::lxdebug->enter_sub();
 
 798   my ($self, $file, $additional_params) = @_;
 
 801   if (!%::myconfig || !$::myconfig{"countrycode"}) {
 
 802     $language = $::lx_office_conf{system}->{language};
 
 804     $language = $main::myconfig{"countrycode"};
 
 806   $language = "de" unless ($language);
 
 808   if (-f "templates/webpages/${file}.html") {
 
 809     $file = "templates/webpages/${file}.html";
 
 812     my $info = "Web page template '${file}' not found.\n";
 
 813     print qq|<pre>$info</pre>|;
 
 817   if ($self->{"DEBUG"}) {
 
 818     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
 
 821   if ($additional_params->{"DEBUG"}) {
 
 822     $additional_params->{"DEBUG"} =
 
 823       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
 
 826   if (%main::myconfig) {
 
 827     $::myconfig{jsc_dateformat} = apply {
 
 831     } $::myconfig{"dateformat"};
 
 832     $additional_params->{"myconfig"} ||= \%::myconfig;
 
 833     map { $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys %::myconfig;
 
 836   $additional_params->{"conf_dbcharset"}              = $::lx_office_conf{system}->{dbcharset};
 
 837   $additional_params->{"conf_webdav"}                 = $::lx_office_conf{features}->{webdav};
 
 838   $additional_params->{"conf_latex_templates"}        = $::lx_office_conf{print_templates}->{latex};
 
 839   $additional_params->{"conf_opendocument_templates"} = $::lx_office_conf{print_templates}->{opendocument};
 
 840   $additional_params->{"conf_vertreter"}              = $::lx_office_conf{features}->{vertreter};
 
 841   $additional_params->{"conf_show_best_before"}       = $::lx_office_conf{features}->{show_best_before};
 
 842   $additional_params->{"conf_parts_image_css"}        = $::lx_office_conf{features}->{parts_image_css};
 
 843   $additional_params->{"conf_parts_listing_images"}   = $::lx_office_conf{features}->{parts_listing_images};
 
 844   $additional_params->{"conf_parts_show_image"}       = $::lx_office_conf{features}->{parts_show_image};
 
 845   $additional_params->{"conf_payments_changeable"}    = $::lx_office_conf{features}->{payments_changeable};
 
 846   $additional_params->{"INSTANCE_CONF"}               = $::instance_conf;
 
 848   if (%main::debug_options) {
 
 849     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
 
 852   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 853     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 854       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 858   $main::lxdebug->leave_sub();
 
 863 sub parse_html_template {
 
 864   $main::lxdebug->enter_sub();
 
 866   my ($self, $file, $additional_params) = @_;
 
 868   $additional_params ||= { };
 
 870   my $real_file = $self->_prepare_html_template($file, $additional_params);
 
 871   my $template  = $self->template || $self->init_template;
 
 873   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 876   $template->process($real_file, $additional_params, \$output) || die $template->error;
 
 878   $main::lxdebug->leave_sub();
 
 886   return $self->template if $self->template;
 
 888   return $self->template(Template->new({
 
 893      'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 894      'INCLUDE_PATH' => '.:templates/webpages',
 
 895      'COMPILE_EXT'  => '.tcc',
 
 896      'COMPILE_DIR'  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
 
 902   $self->{template_object} = shift if @_;
 
 903   return $self->{template_object};
 
 906 sub show_generic_error {
 
 907   $main::lxdebug->enter_sub();
 
 909   my ($self, $error, %params) = @_;
 
 911   if ($self->{__ERROR_HANDLER}) {
 
 912     $self->{__ERROR_HANDLER}->($error);
 
 913     $main::lxdebug->leave_sub();
 
 918     'title_error' => $params{title},
 
 919     'label_error' => $error,
 
 922   if ($params{action}) {
 
 925     map { delete($self->{$_}); } qw(action);
 
 926     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 928     $add_params->{SHOW_BUTTON}  = 1;
 
 929     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 930     $add_params->{VARIABLES}    = \@vars;
 
 932   } elsif ($params{back_button}) {
 
 933     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 936   $self->{title} = $params{title} if $params{title};
 
 939   print $self->parse_html_template("generic/error", $add_params);
 
 941   print STDERR "Error: $error\n";
 
 943   $main::lxdebug->leave_sub();
 
 948 sub show_generic_information {
 
 949   $main::lxdebug->enter_sub();
 
 951   my ($self, $text, $title) = @_;
 
 954     'title_information' => $title,
 
 955     'label_information' => $text,
 
 958   $self->{title} = $title if ($title);
 
 961   print $self->parse_html_template("generic/information", $add_params);
 
 963   $main::lxdebug->leave_sub();
 
 968 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 969 # changed it to accept an arbitrary number of triggers - sschoeling
 
 971   $main::lxdebug->enter_sub();
 
 974   my $myconfig = shift;
 
 977   # set dateform for jsscript
 
 980     "dd.mm.yy" => "%d.%m.%Y",
 
 981     "dd-mm-yy" => "%d-%m-%Y",
 
 982     "dd/mm/yy" => "%d/%m/%Y",
 
 983     "mm/dd/yy" => "%m/%d/%Y",
 
 984     "mm-dd-yy" => "%m-%d-%Y",
 
 985     "yyyy-mm-dd" => "%Y-%m-%d",
 
 988   my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
 
 989     $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
 
 996       inputField : "| . (shift) . qq|",
 
 997       ifFormat :"$ifFormat",
 
 998       align : "| .  (shift) . qq|",
 
 999       button : "| . (shift) . qq|"
 
1005        <script type="text/javascript">
 
1006        <!--| . join("", @triggers) . qq|//-->
 
1010   $main::lxdebug->leave_sub();
 
1013 }    #end sub write_trigger
 
1015 sub _store_redirect_info_in_session {
 
1018   return unless $self->{callback} =~ m:^ ( [^\?/]+ \.pl ) \? (.+) :x;
 
1020   my ($controller, $params) = ($1, $2);
 
1021   my $form                  = { map { map { $self->unescape($_) } split /=/, $_, 2 } split m/\&/, $params };
 
1022   $self->{callback}         = "${controller}?RESTORE_FORM_FROM_SESSION_ID=" . $::auth->save_form_in_session(form => $form);
 
1026   $main::lxdebug->enter_sub();
 
1028   my ($self, $msg) = @_;
 
1030   if (!$self->{callback}) {
 
1034     $self->_store_redirect_info_in_session;
 
1035     print $::form->redirect_header($self->{callback});
 
1040   $main::lxdebug->leave_sub();
 
1043 # sort of columns removed - empty sub
 
1045   $main::lxdebug->enter_sub();
 
1047   my ($self, @columns) = @_;
 
1049   $main::lxdebug->leave_sub();
 
1055   $main::lxdebug->enter_sub(2);
 
1057   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
1059   if ($amount eq "") {
 
1063   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
1065   my $neg = ($amount =~ s/^-//);
 
1066   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
1068   if (defined($places) && ($places ne '')) {
 
1074         my ($actual_places) = ($amount =~ /\.(\d+)/);
 
1075         $actual_places = length($actual_places);
 
1076         $places = $actual_places > $places ? $actual_places : $places;
 
1079     $amount = $self->round_amount($amount, $places);
 
1082   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
1083   my @p = split(/\./, $amount); # split amount at decimal point
 
1085   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
1088   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
1091     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
1092     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
1093                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
1097   $main::lxdebug->leave_sub(2);
 
1101 sub format_amount_units {
 
1102   $main::lxdebug->enter_sub();
 
1107   my $myconfig         = \%main::myconfig;
 
1108   my $amount           = $params{amount} * 1;
 
1109   my $places           = $params{places};
 
1110   my $part_unit_name   = $params{part_unit};
 
1111   my $amount_unit_name = $params{amount_unit};
 
1112   my $conv_units       = $params{conv_units};
 
1113   my $max_places       = $params{max_places};
 
1115   if (!$part_unit_name) {
 
1116     $main::lxdebug->leave_sub();
 
1120   AM->retrieve_all_units();
 
1121   my $all_units        = $main::all_units;
 
1123   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
1124     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
1127   if (!scalar @{ $conv_units }) {
 
1128     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
1129     $main::lxdebug->leave_sub();
 
1133   my $part_unit  = $all_units->{$part_unit_name};
 
1134   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
1136   $amount       *= $conv_unit->{factor};
 
1141   foreach my $unit (@$conv_units) {
 
1142     my $last = $unit->{name} eq $part_unit->{name};
 
1144       $num     = int($amount / $unit->{factor});
 
1145       $amount -= $num * $unit->{factor};
 
1148     if ($last ? $amount : $num) {
 
1149       push @values, { "unit"   => $unit->{name},
 
1150                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
1151                       "places" => $last ? $places : 0 };
 
1158     push @values, { "unit"   => $part_unit_name,
 
1163   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
1165   $main::lxdebug->leave_sub();
 
1171   $main::lxdebug->enter_sub(2);
 
1176   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
1177   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
1178   $input =~ s/\#\#/\#/g;
 
1180   $main::lxdebug->leave_sub(2);
 
1188   $main::lxdebug->enter_sub(2);
 
1190   my ($self, $myconfig, $amount) = @_;
 
1192   if (   ($myconfig->{numberformat} eq '1.000,00')
 
1193       || ($myconfig->{numberformat} eq '1000,00')) {
 
1195     $amount =~ s/,/\./g;
 
1198   if ($myconfig->{numberformat} eq "1'000.00") {
 
1204   $main::lxdebug->leave_sub(2);
 
1206   # Make sure no code wich is not a math expression ends up in eval().
 
1207   return 0 unless $amount =~ /^ [\s \d \( \) \- \+ \* \/ \. ]* $/x;
 
1208   return scalar(eval($amount)) * 1 ;
 
1212   $main::lxdebug->enter_sub(2);
 
1214   my ($self, $amount, $places) = @_;
 
1217   # Rounding like "Kaufmannsrunden" (see http://de.wikipedia.org/wiki/Rundung )
 
1219   # Round amounts to eight places before rounding to the requested
 
1220   # number of places. This gets rid of errors due to internal floating
 
1221   # point representation.
 
1222   $amount       = $self->round_amount($amount, 8) if $places < 8;
 
1223   $amount       = $amount * (10**($places));
 
1224   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1226   $main::lxdebug->leave_sub(2);
 
1228   return $round_amount;
 
1232 sub parse_template {
 
1233   $main::lxdebug->enter_sub();
 
1235   my ($self, $myconfig) = @_;
 
1240   my $userspath = $::lx_office_conf{paths}->{userspath};
 
1242   $self->{"cwd"} = getcwd();
 
1243   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1248   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1249     $template_type  = 'OpenDocument';
 
1250     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
1252   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1253     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1254     $template_type    = 'LaTeX';
 
1255     $ext_for_format   = 'pdf';
 
1257   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1258     $template_type  = 'HTML';
 
1259     $ext_for_format = 'html';
 
1261   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1262     $template_type  = 'XML';
 
1263     $ext_for_format = 'xml';
 
1265   } elsif ( $self->{"format"} =~ /elster(?:winston|taxbird)/i ) {
 
1266     $template_type = 'XML';
 
1268   } elsif ( $self->{"format"} =~ /excel/i ) {
 
1269     $template_type  = 'Excel';
 
1270     $ext_for_format = 'xls';
 
1272   } elsif ( defined $self->{'format'}) {
 
1273     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1275   } elsif ( $self->{'format'} eq '' ) {
 
1276     $self->error("No Outputformat given: $self->{'format'}");
 
1278   } else { #Catch the rest
 
1279     $self->error("Outputformat not defined: $self->{'format'}");
 
1282   my $template = SL::Template::create(type      => $template_type,
 
1283                                       file_name => $self->{IN},
 
1285                                       myconfig  => $myconfig,
 
1286                                       userspath => $userspath);
 
1288   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1289   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1291   if (!$self->{employee_id}) {
 
1292     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
 
1295   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
 
1296   map { $self->{"myconfig_${_}"} = $myconfig->{$_} } grep { $_ ne 'dbpasswd' } keys %{ $myconfig };
 
1298   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1300   # OUT is used for the media, screen, printer, email
 
1301   # for postscript we store a copy in a temporary file
 
1303   my $prepend_userspath;
 
1305   if (!$self->{tmpfile}) {
 
1306     $self->{tmpfile}   = "${fileid}.$self->{IN}";
 
1307     $prepend_userspath = 1;
 
1310   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
 
1312   $self->{tmpfile} =~ s|.*/||;
 
1313   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
 
1314   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
 
1316   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1317     $out = $self->{OUT};
 
1318     $self->{OUT} = ">$self->{tmpfile}";
 
1324     open OUT, "$self->{OUT}" or $self->error("$self->{OUT} : $!");
 
1325     $result = $template->parse(*OUT);
 
1330     $result = $template->parse(*STDOUT);
 
1335     $self->error("$self->{IN} : " . $template->get_error());
 
1338   if ($self->{media} eq 'file') {
 
1339     copy(join('/', $self->{cwd}, $userspath, $self->{tmpfile}), $out =~ m|^/| ? $out : join('/', $self->{cwd}, $out)) if $template->uses_temp_file;
 
1341     chdir("$self->{cwd}");
 
1343     $::lxdebug->leave_sub();
 
1348   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1350     if ($self->{media} eq 'email') {
 
1352       my $mail = new Mailer;
 
1354       map { $mail->{$_} = $self->{$_} }
 
1355         qw(cc bcc subject message version format);
 
1356       $mail->{charset} = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
 
1357       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1358       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1359       $mail->{fileid} = "$fileid.";
 
1360       $myconfig->{signature} =~ s/\r//g;
 
1362       # if we send html or plain text inline
 
1363       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1364         $mail->{contenttype} = "text/html";
 
1366         $mail->{message}       =~ s/\r//g;
 
1367         $mail->{message}       =~ s/\n/<br>\n/g;
 
1368         $myconfig->{signature} =~ s/\n/<br>\n/g;
 
1369         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
1371         open(IN, $self->{tmpfile})
 
1372           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1374           $mail->{message} .= $_;
 
1381         if (!$self->{"do_not_attach"}) {
 
1382           my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1383           $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1384           $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1385                                      "name"     => $attachment_name }];
 
1388         $mail->{message}  =~ s/\r//g;
 
1389         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1393       my $err = $mail->send();
 
1394       $self->error($self->cleanup . "$err") if ($err);
 
1398       $self->{OUT} = $out;
 
1400       my $numbytes = (-s $self->{tmpfile});
 
1401       open(IN, $self->{tmpfile})
 
1402         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1405       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1407       chdir("$self->{cwd}");
 
1408       #print(STDERR "Kopien $self->{copies}\n");
 
1409       #print(STDERR "OUT $self->{OUT}\n");
 
1410       for my $i (1 .. $self->{copies}) {
 
1412           open OUT, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1413           print OUT while <IN>;
 
1418           $self->{attachment_filename} = ($self->{attachment_filename})
 
1419                                        ? $self->{attachment_filename}
 
1420                                        : $self->generate_attachment_filename();
 
1422           # launch application
 
1423           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1424 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1425 Content-Length: $numbytes
 
1429           $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
 
1440   chdir("$self->{cwd}");
 
1441   $main::lxdebug->leave_sub();
 
1444 sub get_formname_translation {
 
1445   $main::lxdebug->enter_sub();
 
1446   my ($self, $formname) = @_;
 
1448   $formname ||= $self->{formname};
 
1450   my %formname_translations = (
 
1451     bin_list                => $main::locale->text('Bin List'),
 
1452     credit_note             => $main::locale->text('Credit Note'),
 
1453     invoice                 => $main::locale->text('Invoice'),
 
1454     pick_list               => $main::locale->text('Pick List'),
 
1455     proforma                => $main::locale->text('Proforma Invoice'),
 
1456     purchase_order          => $main::locale->text('Purchase Order'),
 
1457     request_quotation       => $main::locale->text('RFQ'),
 
1458     sales_order             => $main::locale->text('Confirmation'),
 
1459     sales_quotation         => $main::locale->text('Quotation'),
 
1460     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1461     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1462     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1463     dunning                 => $main::locale->text('Dunning'),
 
1466   $main::lxdebug->leave_sub();
 
1467   return $formname_translations{$formname}
 
1470 sub get_number_prefix_for_type {
 
1471   $main::lxdebug->enter_sub();
 
1475       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1476     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1477     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1480   $main::lxdebug->leave_sub();
 
1484 sub get_extension_for_format {
 
1485   $main::lxdebug->enter_sub();
 
1488   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1489                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1490                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1491                 : $self->{format} =~ /excel/i        ? ".xls"
 
1492                 : $self->{format} =~ /html/i         ? ".html"
 
1495   $main::lxdebug->leave_sub();
 
1499 sub generate_attachment_filename {
 
1500   $main::lxdebug->enter_sub();
 
1503   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1504   my $prefix              = $self->get_number_prefix_for_type();
 
1506   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1507     $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1509   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1510     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1513     $attachment_filename = "";
 
1516   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1517   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1519   $main::lxdebug->leave_sub();
 
1520   return $attachment_filename;
 
1523 sub generate_email_subject {
 
1524   $main::lxdebug->enter_sub();
 
1527   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1528   my $prefix  = $self->get_number_prefix_for_type();
 
1530   if ($subject && $self->{"${prefix}number"}) {
 
1531     $subject .= " " . $self->{"${prefix}number"}
 
1534   $main::lxdebug->leave_sub();
 
1539   $main::lxdebug->enter_sub();
 
1541   my ($self, $application) = @_;
 
1543   my $error_code = $?;
 
1545   chdir("$self->{tmpdir}");
 
1548   if ((-1 == $error_code) || (127 == (($error_code) >> 8))) {
 
1549     push @err, $::locale->text('The application "#1" was not found on the system.', $application || 'pdflatex') . ' ' . $::locale->text('Please contact your administrator.');
 
1551   } elsif (-f "$self->{tmpfile}.err") {
 
1552     open(FH, "$self->{tmpfile}.err");
 
1557   if ($self->{tmpfile} && !($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})) {
 
1558     $self->{tmpfile} =~ s|.*/||g;
 
1560     $self->{tmpfile} =~ s/\.\w+$//g;
 
1561     my $tmpfile = $self->{tmpfile};
 
1562     unlink(<$tmpfile.*>);
 
1565   chdir("$self->{cwd}");
 
1567   $main::lxdebug->leave_sub();
 
1573   $main::lxdebug->enter_sub();
 
1575   my ($self, $date, $myconfig) = @_;
 
1578   if ($date && $date =~ /\D/) {
 
1580     if ($myconfig->{dateformat} =~ /^yy/) {
 
1581       ($yy, $mm, $dd) = split /\D/, $date;
 
1583     if ($myconfig->{dateformat} =~ /^mm/) {
 
1584       ($mm, $dd, $yy) = split /\D/, $date;
 
1586     if ($myconfig->{dateformat} =~ /^dd/) {
 
1587       ($dd, $mm, $yy) = split /\D/, $date;
 
1592     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1593     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1595     $dd = "0$dd" if ($dd < 10);
 
1596     $mm = "0$mm" if ($mm < 10);
 
1598     $date = "$yy$mm$dd";
 
1601   $main::lxdebug->leave_sub();
 
1606 # Database routines used throughout
 
1608 sub _dbconnect_options {
 
1610   my $options = { pg_enable_utf8 => $::locale->is_utf8,
 
1617   $main::lxdebug->enter_sub(2);
 
1619   my ($self, $myconfig) = @_;
 
1621   # connect to database
 
1622   my $dbh = SL::DBConnect->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}, $self->_dbconnect_options)
 
1626   if ($myconfig->{dboptions}) {
 
1627     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1630   $main::lxdebug->leave_sub(2);
 
1635 sub dbconnect_noauto {
 
1636   $main::lxdebug->enter_sub();
 
1638   my ($self, $myconfig) = @_;
 
1640   # connect to database
 
1641   my $dbh = SL::DBConnect->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}, $self->_dbconnect_options(AutoCommit => 0))
 
1645   if ($myconfig->{dboptions}) {
 
1646     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1649   $main::lxdebug->leave_sub();
 
1654 sub get_standard_dbh {
 
1655   $main::lxdebug->enter_sub(2);
 
1658   my $myconfig = shift || \%::myconfig;
 
1660   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1661     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1662     undef $standard_dbh;
 
1665   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1667   $main::lxdebug->leave_sub(2);
 
1669   return $standard_dbh;
 
1673   $main::lxdebug->enter_sub();
 
1675   my ($self, $date, $myconfig) = @_;
 
1676   my $dbh = $self->dbconnect($myconfig);
 
1678   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1679   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
 
1681   # Falls $date = '' - Fehlermeldung aus der Datenbank. Ich denke,
 
1682   # es ist sicher ein conv_date vorher IMMER auszuführen.
 
1683   # Testfälle ohne definiertes closedto:
 
1684   #   Leere Datumseingabe i.O.
 
1685   #     SELECT 1 FROM defaults WHERE '' < closedto
 
1686   #   normale Zahlungsbuchung über Rechnungsmaske i.O.
 
1687   #     SELECT 1 FROM defaults WHERE '10.05.2011' < closedto
 
1688   # Testfälle mit definiertem closedto (30.04.2011):
 
1689   #  Leere Datumseingabe i.O.
 
1690   #   SELECT 1 FROM defaults WHERE '' < closedto
 
1691   # normale Buchung im geschloßenem Zeitraum i.O.
 
1692   #   SELECT 1 FROM defaults WHERE '21.04.2011' < closedto
 
1693   #     Fehlermeldung: Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!
 
1694   # normale Buchung in aktiver Buchungsperiode i.O.
 
1695   #   SELECT 1 FROM defaults WHERE '01.05.2011' < closedto
 
1697   my ($closed) = $sth->fetchrow_array;
 
1699   $main::lxdebug->leave_sub();
 
1704 sub update_balance {
 
1705   $main::lxdebug->enter_sub();
 
1707   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1709   # if we have a value, go do it
 
1712     # retrieve balance from table
 
1713     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1714     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1715     my ($balance) = $sth->fetchrow_array;
 
1721     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1722     do_query($self, $dbh, $query, @values);
 
1724   $main::lxdebug->leave_sub();
 
1727 sub update_exchangerate {
 
1728   $main::lxdebug->enter_sub();
 
1730   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1732   # some sanity check for currency
 
1734     $main::lxdebug->leave_sub();
 
1737   $query = qq|SELECT curr FROM defaults|;
 
1739   my ($currency) = selectrow_query($self, $dbh, $query);
 
1740   my ($defaultcurrency) = split m/:/, $currency;
 
1743   if ($curr eq $defaultcurrency) {
 
1744     $main::lxdebug->leave_sub();
 
1748   $query = qq|SELECT e.curr FROM exchangerate e
 
1749                  WHERE e.curr = ? AND e.transdate = ?
 
1751   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1760   $buy = conv_i($buy, "NULL");
 
1761   $sell = conv_i($sell, "NULL");
 
1764   if ($buy != 0 && $sell != 0) {
 
1765     $set = "buy = $buy, sell = $sell";
 
1766   } elsif ($buy != 0) {
 
1767     $set = "buy = $buy";
 
1768   } elsif ($sell != 0) {
 
1769     $set = "sell = $sell";
 
1772   if ($sth->fetchrow_array) {
 
1773     $query = qq|UPDATE exchangerate
 
1779     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1780                 VALUES (?, $buy, $sell, ?)|;
 
1783   do_query($self, $dbh, $query, $curr, $transdate);
 
1785   $main::lxdebug->leave_sub();
 
1788 sub save_exchangerate {
 
1789   $main::lxdebug->enter_sub();
 
1791   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1793   my $dbh = $self->dbconnect($myconfig);
 
1797   $buy  = $rate if $fld eq 'buy';
 
1798   $sell = $rate if $fld eq 'sell';
 
1801   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1806   $main::lxdebug->leave_sub();
 
1809 sub get_exchangerate {
 
1810   $main::lxdebug->enter_sub();
 
1812   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1815   unless ($transdate) {
 
1816     $main::lxdebug->leave_sub();
 
1820   $query = qq|SELECT curr FROM defaults|;
 
1822   my ($currency) = selectrow_query($self, $dbh, $query);
 
1823   my ($defaultcurrency) = split m/:/, $currency;
 
1825   if ($currency eq $defaultcurrency) {
 
1826     $main::lxdebug->leave_sub();
 
1830   $query = qq|SELECT e.$fld FROM exchangerate e
 
1831                  WHERE e.curr = ? AND e.transdate = ?|;
 
1832   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1836   $main::lxdebug->leave_sub();
 
1838   return $exchangerate;
 
1841 sub check_exchangerate {
 
1842   $main::lxdebug->enter_sub();
 
1844   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1846   if ($fld !~/^buy|sell$/) {
 
1847     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1850   unless ($transdate) {
 
1851     $main::lxdebug->leave_sub();
 
1855   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1857   if ($currency eq $defaultcurrency) {
 
1858     $main::lxdebug->leave_sub();
 
1862   my $dbh   = $self->get_standard_dbh($myconfig);
 
1863   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1864                  WHERE e.curr = ? AND e.transdate = ?|;
 
1866   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1868   $main::lxdebug->leave_sub();
 
1870   return $exchangerate;
 
1873 sub get_all_currencies {
 
1874   $main::lxdebug->enter_sub();
 
1877   my $myconfig = shift || \%::myconfig;
 
1878   my $dbh      = $self->get_standard_dbh($myconfig);
 
1880   my $query = qq|SELECT curr FROM defaults|;
 
1882   my ($curr)     = selectrow_query($self, $dbh, $query);
 
1883   my @currencies = grep { $_ } map { s/\s//g; $_ } split m/:/, $curr;
 
1885   $main::lxdebug->leave_sub();
 
1890 sub get_default_currency {
 
1891   $main::lxdebug->enter_sub();
 
1893   my ($self, $myconfig) = @_;
 
1894   my @currencies        = $self->get_all_currencies($myconfig);
 
1896   $main::lxdebug->leave_sub();
 
1898   return $currencies[0];
 
1901 sub set_payment_options {
 
1902   $main::lxdebug->enter_sub();
 
1904   my ($self, $myconfig, $transdate) = @_;
 
1906   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1908   my $dbh = $self->get_standard_dbh($myconfig);
 
1911     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long , p.description | .
 
1912     qq|FROM payment_terms p | .
 
1915   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1916    $self->{payment_terms}, $self->{payment_description}) =
 
1917      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1919   if ($transdate eq "") {
 
1920     if ($self->{invdate}) {
 
1921       $transdate = $self->{invdate};
 
1923       $transdate = $self->{transdate};
 
1928     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1929     qq|FROM payment_terms|;
 
1930   ($self->{netto_date}, $self->{skonto_date}) =
 
1931     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1933   my ($invtotal, $total);
 
1934   my (%amounts, %formatted_amounts);
 
1936   if ($self->{type} =~ /_order$/) {
 
1937     $amounts{invtotal} = $self->{ordtotal};
 
1938     $amounts{total}    = $self->{ordtotal};
 
1940   } elsif ($self->{type} =~ /_quotation$/) {
 
1941     $amounts{invtotal} = $self->{quototal};
 
1942     $amounts{total}    = $self->{quototal};
 
1945     $amounts{invtotal} = $self->{invtotal};
 
1946     $amounts{total}    = $self->{total};
 
1948   $amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto};
 
1950   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1952   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1953   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1954   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1956   foreach (keys %amounts) {
 
1957     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1958     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1961   if ($self->{"language_id"}) {
 
1963       qq|SELECT t.translation, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1964       qq|FROM generic_translations t | .
 
1965       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1966       qq|WHERE (t.language_id = ?)
 
1967            AND (t.translation_id = ?)
 
1968            AND (t.translation_type = 'SL::DB::PaymentTerm/description_long')|;
 
1969     my ($description_long, $output_numberformat, $output_dateformat,
 
1970       $output_longdates) =
 
1971       selectrow_query($self, $dbh, $query,
 
1972                       $self->{"language_id"}, $self->{"payment_id"});
 
1974     $self->{payment_terms} = $description_long if ($description_long);
 
1976     if ($output_dateformat) {
 
1977       foreach my $key (qw(netto_date skonto_date)) {
 
1979           $main::locale->reformat_date($myconfig, $self->{$key},
 
1985     if ($output_numberformat &&
 
1986         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1987       my $saved_numberformat = $myconfig->{"numberformat"};
 
1988       $myconfig->{"numberformat"} = $output_numberformat;
 
1989       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1990       $myconfig->{"numberformat"} = $saved_numberformat;
 
1994   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1995   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1996   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1997   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1998   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1999   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
2000   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
2002   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
2004   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
 
2006   $main::lxdebug->leave_sub();
 
2010 sub get_template_language {
 
2011   $main::lxdebug->enter_sub();
 
2013   my ($self, $myconfig) = @_;
 
2015   my $template_code = "";
 
2017   if ($self->{language_id}) {
 
2018     my $dbh = $self->get_standard_dbh($myconfig);
 
2019     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
2020     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
2023   $main::lxdebug->leave_sub();
 
2025   return $template_code;
 
2028 sub get_printer_code {
 
2029   $main::lxdebug->enter_sub();
 
2031   my ($self, $myconfig) = @_;
 
2033   my $template_code = "";
 
2035   if ($self->{printer_id}) {
 
2036     my $dbh = $self->get_standard_dbh($myconfig);
 
2037     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
2038     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
2041   $main::lxdebug->leave_sub();
 
2043   return $template_code;
 
2047   $main::lxdebug->enter_sub();
 
2049   my ($self, $myconfig) = @_;
 
2051   my $template_code = "";
 
2053   if ($self->{shipto_id}) {
 
2054     my $dbh = $self->get_standard_dbh($myconfig);
 
2055     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
2056     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
2057     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
2060   $main::lxdebug->leave_sub();
 
2064   $main::lxdebug->enter_sub();
 
2066   my ($self, $dbh, $id, $module) = @_;
 
2071   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
2072                        contact cp_gender phone fax email)) {
 
2073     if ($self->{"shipto$item"}) {
 
2074       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
2076     push(@values, $self->{"shipto${item}"});
 
2080     if ($self->{shipto_id}) {
 
2081       my $query = qq|UPDATE shipto set
 
2083                        shiptodepartment_1 = ?,
 
2084                        shiptodepartment_2 = ?,
 
2090                        shiptocp_gender = ?,
 
2094                      WHERE shipto_id = ?|;
 
2095       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
2097       my $query = qq|SELECT * FROM shipto
 
2098                      WHERE shiptoname = ? AND
 
2099                        shiptodepartment_1 = ? AND
 
2100                        shiptodepartment_2 = ? AND
 
2101                        shiptostreet = ? AND
 
2102                        shiptozipcode = ? AND
 
2104                        shiptocountry = ? AND
 
2105                        shiptocontact = ? AND
 
2106                        shiptocp_gender = ? AND
 
2112       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
2115           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
2116                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
2117                                  shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
 
2118              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
2119         do_query($self, $dbh, $query, $id, @values, $module);
 
2124   $main::lxdebug->leave_sub();
 
2128   $main::lxdebug->enter_sub();
 
2130   my ($self, $dbh) = @_;
 
2132   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
2134   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
2135   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
2136   $self->{"employee_id"} *= 1;
 
2138   $main::lxdebug->leave_sub();
 
2141 sub get_employee_data {
 
2142   $main::lxdebug->enter_sub();
 
2147   Common::check_params(\%params, qw(prefix));
 
2148   Common::check_params_x(\%params, qw(id));
 
2151     $main::lxdebug->leave_sub();
 
2155   my $myconfig = \%main::myconfig;
 
2156   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
2158   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
 
2161     my $user = User->new($login);
 
2162     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
 
2164     $self->{$params{prefix} . '_login'}   = $login;
 
2165     $self->{$params{prefix} . '_name'}  ||= $login;
 
2168   $main::lxdebug->leave_sub();
 
2172   $main::lxdebug->enter_sub();
 
2174   my ($self, $myconfig, $reference_date) = @_;
 
2176   $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
 
2178   my $dbh         = $self->get_standard_dbh($myconfig);
 
2179   my $query       = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
 
2180   my ($duedate)   = selectrow_query($self, $dbh, $query, $self->{payment_id});
 
2182   $main::lxdebug->leave_sub();
 
2188   $main::lxdebug->enter_sub();
 
2190   my ($self, $dbh, $id, $key) = @_;
 
2192   $key = "all_contacts" unless ($key);
 
2196     $main::lxdebug->leave_sub();
 
2201     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
2202     qq|FROM contacts | .
 
2203     qq|WHERE cp_cv_id = ? | .
 
2204     qq|ORDER BY lower(cp_name)|;
 
2206   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
2208   $main::lxdebug->leave_sub();
 
2212   $main::lxdebug->enter_sub();
 
2214   my ($self, $dbh, $key) = @_;
 
2216   my ($all, $old_id, $where, @values);
 
2218   if (ref($key) eq "HASH") {
 
2221     $key = "ALL_PROJECTS";
 
2223     foreach my $p (keys(%{$params})) {
 
2225         $all = $params->{$p};
 
2226       } elsif ($p eq "old_id") {
 
2227         $old_id = $params->{$p};
 
2228       } elsif ($p eq "key") {
 
2229         $key = $params->{$p};
 
2235     $where = "WHERE active ";
 
2237       if (ref($old_id) eq "ARRAY") {
 
2238         my @ids = grep({ $_ } @{$old_id});
 
2240           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
2241           push(@values, @ids);
 
2244         $where .= " OR (id = ?) ";
 
2245         push(@values, $old_id);
 
2251     qq|SELECT id, projectnumber, description, active | .
 
2254     qq|ORDER BY lower(projectnumber)|;
 
2256   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2258   $main::lxdebug->leave_sub();
 
2262   $main::lxdebug->enter_sub();
 
2264   my ($self, $dbh, $vc_id, $key) = @_;
 
2266   $key = "all_shipto" unless ($key);
 
2269     # get shipping addresses
 
2270     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2272     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2278   $main::lxdebug->leave_sub();
 
2282   $main::lxdebug->enter_sub();
 
2284   my ($self, $dbh, $key) = @_;
 
2286   $key = "all_printers" unless ($key);
 
2288   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2290   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2292   $main::lxdebug->leave_sub();
 
2296   $main::lxdebug->enter_sub();
 
2298   my ($self, $dbh, $params) = @_;
 
2301   $key = $params->{key};
 
2302   $key = "all_charts" unless ($key);
 
2304   my $transdate = quote_db_date($params->{transdate});
 
2307     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2309     qq|LEFT JOIN taxkeys tk ON | .
 
2310     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2311     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2312     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2313     qq|ORDER BY c.accno|;
 
2315   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2317   $main::lxdebug->leave_sub();
 
2320 sub _get_taxcharts {
 
2321   $main::lxdebug->enter_sub();
 
2323   my ($self, $dbh, $params) = @_;
 
2325   my $key = "all_taxcharts";
 
2328   if (ref $params eq 'HASH') {
 
2329     $key = $params->{key} if ($params->{key});
 
2330     if ($params->{module} eq 'AR') {
 
2331       push @where, 'taxkey NOT IN (8, 9, 18, 19)';
 
2333     } elsif ($params->{module} eq 'AP') {
 
2334       push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
 
2341   my $where = ' WHERE ' . join(' AND ', map { "($_)" } @where) if (@where);
 
2343   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
 
2345   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2347   $main::lxdebug->leave_sub();
 
2351   $main::lxdebug->enter_sub();
 
2353   my ($self, $dbh, $key) = @_;
 
2355   $key = "all_taxzones" unless ($key);
 
2357   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2359   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2361   $main::lxdebug->leave_sub();
 
2364 sub _get_employees {
 
2365   $main::lxdebug->enter_sub();
 
2367   my ($self, $dbh, $default_key, $key) = @_;
 
2369   $key = $default_key unless ($key);
 
2370   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2372   $main::lxdebug->leave_sub();
 
2375 sub _get_business_types {
 
2376   $main::lxdebug->enter_sub();
 
2378   my ($self, $dbh, $key) = @_;
 
2380   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2381   $options->{key} ||= "all_business_types";
 
2384   if (exists $options->{salesman}) {
 
2385     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2388   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2390   $main::lxdebug->leave_sub();
 
2393 sub _get_languages {
 
2394   $main::lxdebug->enter_sub();
 
2396   my ($self, $dbh, $key) = @_;
 
2398   $key = "all_languages" unless ($key);
 
2400   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2402   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2404   $main::lxdebug->leave_sub();
 
2407 sub _get_dunning_configs {
 
2408   $main::lxdebug->enter_sub();
 
2410   my ($self, $dbh, $key) = @_;
 
2412   $key = "all_dunning_configs" unless ($key);
 
2414   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2416   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2418   $main::lxdebug->leave_sub();
 
2421 sub _get_currencies {
 
2422 $main::lxdebug->enter_sub();
 
2424   my ($self, $dbh, $key) = @_;
 
2426   $key = "all_currencies" unless ($key);
 
2428   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2430   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2432   $main::lxdebug->leave_sub();
 
2436 $main::lxdebug->enter_sub();
 
2438   my ($self, $dbh, $key) = @_;
 
2440   $key = "all_payments" unless ($key);
 
2442   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
 
2444   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2446   $main::lxdebug->leave_sub();
 
2449 sub _get_customers {
 
2450   $main::lxdebug->enter_sub();
 
2452   my ($self, $dbh, $key) = @_;
 
2454   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2455   $options->{key}  ||= "all_customers";
 
2456   my $limit_clause   = "LIMIT $options->{limit}" if $options->{limit};
 
2459   push @where, qq|business_id IN (SELECT id FROM business WHERE salesman)| if  $options->{business_is_salesman};
 
2460   push @where, qq|NOT obsolete|                                            if !$options->{with_obsolete};
 
2461   my $where_str = @where ? "WHERE " . join(" AND ", map { "($_)" } @where) : '';
 
2463   my $query = qq|SELECT * FROM customer $where_str ORDER BY name $limit_clause|;
 
2464   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2466   $main::lxdebug->leave_sub();
 
2470   $main::lxdebug->enter_sub();
 
2472   my ($self, $dbh, $key) = @_;
 
2474   $key = "all_vendors" unless ($key);
 
2476   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2478   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2480   $main::lxdebug->leave_sub();
 
2483 sub _get_departments {
 
2484   $main::lxdebug->enter_sub();
 
2486   my ($self, $dbh, $key) = @_;
 
2488   $key = "all_departments" unless ($key);
 
2490   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2492   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2494   $main::lxdebug->leave_sub();
 
2497 sub _get_warehouses {
 
2498   $main::lxdebug->enter_sub();
 
2500   my ($self, $dbh, $param) = @_;
 
2502   my ($key, $bins_key);
 
2504   if ('' eq ref $param) {
 
2508     $key      = $param->{key};
 
2509     $bins_key = $param->{bins};
 
2512   my $query = qq|SELECT w.* FROM warehouse w
 
2513                  WHERE (NOT w.invalid) AND
 
2514                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2515                  ORDER BY w.sortkey|;
 
2517   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2520     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
 
2521                 ORDER BY description|;
 
2522     my $sth = prepare_query($self, $dbh, $query);
 
2524     foreach my $warehouse (@{ $self->{$key} }) {
 
2525       do_statement($self, $sth, $query, $warehouse->{id});
 
2526       $warehouse->{$bins_key} = [];
 
2528       while (my $ref = $sth->fetchrow_hashref()) {
 
2529         push @{ $warehouse->{$bins_key} }, $ref;
 
2535   $main::lxdebug->leave_sub();
 
2539   $main::lxdebug->enter_sub();
 
2541   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2543   my $query  = qq|SELECT * FROM $table|;
 
2544   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2546   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2548   $main::lxdebug->leave_sub();
 
2552 #  $main::lxdebug->enter_sub();
 
2554 #  my ($self, $dbh, $key) = @_;
 
2556 #  $key ||= "all_groups";
 
2558 #  my $groups = $main::auth->read_groups();
 
2560 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2562 #  $main::lxdebug->leave_sub();
 
2566   $main::lxdebug->enter_sub();
 
2571   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2572   my ($sth, $query, $ref);
 
2574   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2575   my $vc_id = $self->{"${vc}_id"};
 
2577   if ($params{"contacts"}) {
 
2578     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2581   if ($params{"shipto"}) {
 
2582     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2585   if ($params{"projects"} || $params{"all_projects"}) {
 
2586     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2587                          $params{"all_projects"} : $params{"projects"},
 
2588                          $params{"all_projects"} ? 1 : 0);
 
2591   if ($params{"printers"}) {
 
2592     $self->_get_printers($dbh, $params{"printers"});
 
2595   if ($params{"languages"}) {
 
2596     $self->_get_languages($dbh, $params{"languages"});
 
2599   if ($params{"charts"}) {
 
2600     $self->_get_charts($dbh, $params{"charts"});
 
2603   if ($params{"taxcharts"}) {
 
2604     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2607   if ($params{"taxzones"}) {
 
2608     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2611   if ($params{"employees"}) {
 
2612     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2615   if ($params{"salesmen"}) {
 
2616     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2619   if ($params{"business_types"}) {
 
2620     $self->_get_business_types($dbh, $params{"business_types"});
 
2623   if ($params{"dunning_configs"}) {
 
2624     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2627   if($params{"currencies"}) {
 
2628     $self->_get_currencies($dbh, $params{"currencies"});
 
2631   if($params{"customers"}) {
 
2632     $self->_get_customers($dbh, $params{"customers"});
 
2635   if($params{"vendors"}) {
 
2636     if (ref $params{"vendors"} eq 'HASH') {
 
2637       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2639       $self->_get_vendors($dbh, $params{"vendors"});
 
2643   if($params{"payments"}) {
 
2644     $self->_get_payments($dbh, $params{"payments"});
 
2647   if($params{"departments"}) {
 
2648     $self->_get_departments($dbh, $params{"departments"});
 
2651   if ($params{price_factors}) {
 
2652     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2655   if ($params{warehouses}) {
 
2656     $self->_get_warehouses($dbh, $params{warehouses});
 
2659 #  if ($params{groups}) {
 
2660 #    $self->_get_groups($dbh, $params{groups});
 
2663   if ($params{partsgroup}) {
 
2664     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2667   $main::lxdebug->leave_sub();
 
2670 # this sub gets the id and name from $table
 
2672   $main::lxdebug->enter_sub();
 
2674   my ($self, $myconfig, $table) = @_;
 
2676   # connect to database
 
2677   my $dbh = $self->get_standard_dbh($myconfig);
 
2679   $table = $table eq "customer" ? "customer" : "vendor";
 
2680   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2682   my ($query, @values);
 
2684   if (!$self->{openinvoices}) {
 
2686     if ($self->{customernumber} ne "") {
 
2687       $where = qq|(vc.customernumber ILIKE ?)|;
 
2688       push(@values, '%' . $self->{customernumber} . '%');
 
2690       $where = qq|(vc.name ILIKE ?)|;
 
2691       push(@values, '%' . $self->{$table} . '%');
 
2695       qq~SELECT vc.id, vc.name,
 
2696            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2698          WHERE $where AND (NOT vc.obsolete)
 
2702       qq~SELECT DISTINCT vc.id, vc.name,
 
2703            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2705          JOIN $table vc ON (a.${table}_id = vc.id)
 
2706          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2708     push(@values, '%' . $self->{$table} . '%');
 
2711   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2713   $main::lxdebug->leave_sub();
 
2715   return scalar(@{ $self->{name_list} });
 
2718 # the selection sub is used in the AR, AP, IS, IR and OE module
 
2721   $main::lxdebug->enter_sub();
 
2723   my ($self, $myconfig, $table, $module) = @_;
 
2726   my $dbh = $self->get_standard_dbh;
 
2728   $table = $table eq "customer" ? "customer" : "vendor";
 
2730   my $query = qq|SELECT count(*) FROM $table|;
 
2731   my ($count) = selectrow_query($self, $dbh, $query);
 
2733   # build selection list
 
2734   if ($count <= $myconfig->{vclimit}) {
 
2735     $query = qq|SELECT id, name, salesman_id
 
2736                 FROM $table WHERE NOT obsolete
 
2738     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2742   $self->get_employee($dbh);
 
2744   # setup sales contacts
 
2745   $query = qq|SELECT e.id, e.name
 
2747               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
 
2748   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2751   push(@{ $self->{all_employees} },
 
2752        { id   => $self->{employee_id},
 
2753          name => $self->{employee} });
 
2755   # sort the whole thing
 
2756   @{ $self->{all_employees} } =
 
2757     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
2759   if ($module eq 'AR') {
 
2761     # prepare query for departments
 
2762     $query = qq|SELECT id, description
 
2765                 ORDER BY description|;
 
2768     $query = qq|SELECT id, description
 
2770                 ORDER BY description|;
 
2773   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2776   $query = qq|SELECT id, description
 
2780   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2783   $query = qq|SELECT printer_description, id
 
2785               ORDER BY printer_description|;
 
2787   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2790   $query = qq|SELECT id, description
 
2794   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2796   $main::lxdebug->leave_sub();
 
2799 sub language_payment {
 
2800   $main::lxdebug->enter_sub();
 
2802   my ($self, $myconfig) = @_;
 
2804   my $dbh = $self->get_standard_dbh($myconfig);
 
2806   my $query = qq|SELECT id, description
 
2810   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2813   $query = qq|SELECT printer_description, id
 
2815               ORDER BY printer_description|;
 
2817   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2820   $query = qq|SELECT id, description
 
2824   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2826   # get buchungsgruppen
 
2827   $query = qq|SELECT id, description
 
2828               FROM buchungsgruppen|;
 
2830   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2832   $main::lxdebug->leave_sub();
 
2835 # this is only used for reports
 
2836 sub all_departments {
 
2837   $main::lxdebug->enter_sub();
 
2839   my ($self, $myconfig, $table) = @_;
 
2841   my $dbh = $self->get_standard_dbh($myconfig);
 
2844   if ($table eq 'customer') {
 
2845     $where = "WHERE role = 'P' ";
 
2848   my $query = qq|SELECT id, description
 
2851                  ORDER BY description|;
 
2852   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2854   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2856   $main::lxdebug->leave_sub();
 
2860   $main::lxdebug->enter_sub();
 
2862   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2865   if ($table eq "customer") {
 
2874   $self->all_vc($myconfig, $table, $module);
 
2876   # get last customers or vendors
 
2877   my ($query, $sth, $ref);
 
2879   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2884     my $transdate = "current_date";
 
2885     if ($self->{transdate}) {
 
2886       $transdate = $dbh->quote($self->{transdate});
 
2889     # now get the account numbers
 
2890     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2891                 FROM chart c, taxkeys tk
 
2892                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2893                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2896     $sth = $dbh->prepare($query);
 
2898     do_statement($self, $sth, $query, '%' . $module . '%');
 
2900     $self->{accounts} = "";
 
2901     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2903       foreach my $key (split(/:/, $ref->{link})) {
 
2904         if ($key =~ /\Q$module\E/) {
 
2906           # cross reference for keys
 
2907           $xkeyref{ $ref->{accno} } = $key;
 
2909           push @{ $self->{"${module}_links"}{$key} },
 
2910             { accno       => $ref->{accno},
 
2911               description => $ref->{description},
 
2912               taxkey      => $ref->{taxkey_id},
 
2913               tax_id      => $ref->{tax_id} };
 
2915           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2921   # get taxkeys and description
 
2922   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2923   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2925   if (($module eq "AP") || ($module eq "AR")) {
 
2926     # get tax rates and description
 
2927     $query = qq|SELECT * FROM tax|;
 
2928     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2934            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2935            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2936            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2937            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2940            d.description AS department,
 
2943          JOIN $table c ON (a.${table}_id = c.id)
 
2944          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2945          LEFT JOIN department d ON (d.id = a.department_id)
 
2947     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2949     foreach my $key (keys %$ref) {
 
2950       $self->{$key} = $ref->{$key};
 
2953     my $transdate = "current_date";
 
2954     if ($self->{transdate}) {
 
2955       $transdate = $dbh->quote($self->{transdate});
 
2958     # now get the account numbers
 
2959     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2961                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2963                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2964                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2967     $sth = $dbh->prepare($query);
 
2968     do_statement($self, $sth, $query, "%$module%");
 
2970     $self->{accounts} = "";
 
2971     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2973       foreach my $key (split(/:/, $ref->{link})) {
 
2974         if ($key =~ /\Q$module\E/) {
 
2976           # cross reference for keys
 
2977           $xkeyref{ $ref->{accno} } = $key;
 
2979           push @{ $self->{"${module}_links"}{$key} },
 
2980             { accno       => $ref->{accno},
 
2981               description => $ref->{description},
 
2982               taxkey      => $ref->{taxkey_id},
 
2983               tax_id      => $ref->{tax_id} };
 
2985           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2991     # get amounts from individual entries
 
2994            c.accno, c.description,
 
2995            a.acc_trans_id, a.source, a.amount, a.memo, a.transdate, a.gldate, a.cleared, a.project_id, a.taxkey,
 
2999          LEFT JOIN chart c ON (c.id = a.chart_id)
 
3000          LEFT JOIN project p ON (p.id = a.project_id)
 
3001          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
3002                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
3003                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
3004                                         THEN tk.chart_id = a.chart_id
 
3007                                        OR (c.link='%tax%')) AND
 
3008                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
3009          WHERE a.trans_id = ?
 
3010          AND a.fx_transaction = '0'
 
3011          ORDER BY a.acc_trans_id, a.transdate|;
 
3012     $sth = $dbh->prepare($query);
 
3013     do_statement($self, $sth, $query, $self->{id});
 
3015     # get exchangerate for currency
 
3016     $self->{exchangerate} =
 
3017       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
3020     # store amounts in {acc_trans}{$key} for multiple accounts
 
3021     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
3022       $ref->{exchangerate} =
 
3023         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
3024       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
3027       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
3028         $ref->{amount} *= -1;
 
3030       $ref->{index} = $index;
 
3032       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
3038            d.curr AS currencies, d.closedto, d.revtrans,
 
3039            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
3040            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
3042     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
3043     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
3050             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
3051             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
3052             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
3054     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
3055     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
3057     if ($self->{"$self->{vc}_id"}) {
 
3059       # only setup currency
 
3060       ($self->{currency}) = split(/:/, $self->{currencies});
 
3064       $self->lastname_used($dbh, $myconfig, $table, $module);
 
3066       # get exchangerate for currency
 
3067       $self->{exchangerate} =
 
3068         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
3074   $main::lxdebug->leave_sub();
 
3078   $main::lxdebug->enter_sub();
 
3080   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
3084   $table         = $table eq "customer" ? "customer" : "vendor";
 
3085   my %column_map = ("a.curr"                  => "currency",
 
3086                     "a.${table}_id"           => "${table}_id",
 
3087                     "a.department_id"         => "department_id",
 
3088                     "d.description"           => "department",
 
3089                     "ct.name"                 => $table,
 
3090                     "current_date + ct.terms" => "duedate",
 
3093   if ($self->{type} =~ /delivery_order/) {
 
3094     $arap  = 'delivery_orders';
 
3095     delete $column_map{"a.curr"};
 
3097   } elsif ($self->{type} =~ /_order/) {
 
3099     $where = "quotation = '0'";
 
3101   } elsif ($self->{type} =~ /_quotation/) {
 
3103     $where = "quotation = '1'";
 
3105   } elsif ($table eq 'customer') {
 
3113   $where           = "($where) AND" if ($where);
 
3114   my $query        = qq|SELECT MAX(id) FROM $arap
 
3115                         WHERE $where ${table}_id > 0|;
 
3116   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
3119   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
3120   $query           = qq|SELECT $column_spec
 
3122                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
3123                         LEFT JOIN department d  ON (a.department_id = d.id)
 
3125   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
3127   map { $self->{$_} = $ref->{$_} } values %column_map;
 
3129   $main::lxdebug->leave_sub();
 
3133   $main::lxdebug->enter_sub();
 
3136   my $myconfig = shift || \%::myconfig;
 
3137   my ($thisdate, $days) = @_;
 
3139   my $dbh = $self->get_standard_dbh($myconfig);
 
3144     my $dateformat = $myconfig->{dateformat};
 
3145     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
3146     $thisdate = $dbh->quote($thisdate);
 
3147     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
3149     $query = qq|SELECT current_date AS thisdate|;
 
3152   ($thisdate) = selectrow_query($self, $dbh, $query);
 
3154   $main::lxdebug->leave_sub();
 
3160   $main::lxdebug->enter_sub();
 
3162   my ($self, $string) = @_;
 
3164   if ($string !~ /%/) {
 
3165     $string = "%$string%";
 
3168   $string =~ s/\'/\'\'/g;
 
3170   $main::lxdebug->leave_sub();
 
3176   $main::lxdebug->enter_sub();
 
3178   my ($self, $flds, $new, $count, $numrows) = @_;
 
3182   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
3187   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
3189     my $j = $item->{ndx} - 1;
 
3190     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
3194   for $i ($count + 1 .. $numrows) {
 
3195     map { delete $self->{"${_}_$i"} } @{$flds};
 
3198   $main::lxdebug->leave_sub();
 
3202   $main::lxdebug->enter_sub();
 
3204   my ($self, $myconfig) = @_;
 
3208   my $dbh = $self->dbconnect_noauto($myconfig);
 
3210   my $query = qq|DELETE FROM status
 
3211                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3212   my $sth = prepare_query($self, $dbh, $query);
 
3214   if ($self->{formname} =~ /(check|receipt)/) {
 
3215     for $i (1 .. $self->{rowcount}) {
 
3216       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
3219     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3223   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3224   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3226   my %queued = split / /, $self->{queued};
 
3229   if ($self->{formname} =~ /(check|receipt)/) {
 
3231     # this is a check or receipt, add one entry for each lineitem
 
3232     my ($accno) = split /--/, $self->{account};
 
3233     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3234                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3235     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3236     $sth = prepare_query($self, $dbh, $query);
 
3238     for $i (1 .. $self->{rowcount}) {
 
3239       if ($self->{"checked_$i"}) {
 
3240         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3246     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3247                 VALUES (?, ?, ?, ?, ?)|;
 
3248     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3249              $queued{$self->{formname}}, $self->{formname});
 
3255   $main::lxdebug->leave_sub();
 
3259   $main::lxdebug->enter_sub();
 
3261   my ($self, $dbh) = @_;
 
3263   my ($query, $printed, $emailed);
 
3265   my $formnames  = $self->{printed};
 
3266   my $emailforms = $self->{emailed};
 
3268   $query = qq|DELETE FROM status
 
3269                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3270   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3272   # this only applies to the forms
 
3273   # checks and receipts are posted when printed or queued
 
3275   if ($self->{queued}) {
 
3276     my %queued = split / /, $self->{queued};
 
3278     foreach my $formname (keys %queued) {
 
3279       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3280       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3282       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3283                   VALUES (?, ?, ?, ?, ?)|;
 
3284       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3286       $formnames  =~ s/\Q$self->{formname}\E//;
 
3287       $emailforms =~ s/\Q$self->{formname}\E//;
 
3292   # save printed, emailed info
 
3293   $formnames  =~ s/^ +//g;
 
3294   $emailforms =~ s/^ +//g;
 
3297   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3298   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3300   foreach my $formname (keys %status) {
 
3301     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3302     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3304     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3305                 VALUES (?, ?, ?, ?)|;
 
3306     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3309   $main::lxdebug->leave_sub();
 
3313 # $main::locale->text('SAVED')
 
3314 # $main::locale->text('DELETED')
 
3315 # $main::locale->text('ADDED')
 
3316 # $main::locale->text('PAYMENT POSTED')
 
3317 # $main::locale->text('POSTED')
 
3318 # $main::locale->text('POSTED AS NEW')
 
3319 # $main::locale->text('ELSE')
 
3320 # $main::locale->text('SAVED FOR DUNNING')
 
3321 # $main::locale->text('DUNNING STARTED')
 
3322 # $main::locale->text('PRINTED')
 
3323 # $main::locale->text('MAILED')
 
3324 # $main::locale->text('SCREENED')
 
3325 # $main::locale->text('CANCELED')
 
3326 # $main::locale->text('invoice')
 
3327 # $main::locale->text('proforma')
 
3328 # $main::locale->text('sales_order')
 
3329 # $main::locale->text('pick_list')
 
3330 # $main::locale->text('purchase_order')
 
3331 # $main::locale->text('bin_list')
 
3332 # $main::locale->text('sales_quotation')
 
3333 # $main::locale->text('request_quotation')
 
3336   $main::lxdebug->enter_sub();
 
3339   my $dbh  = shift || $self->get_standard_dbh;
 
3341   if(!exists $self->{employee_id}) {
 
3342     &get_employee($self, $dbh);
 
3346    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3347    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3348   my @values = (conv_i($self->{id}), $self->{login},
 
3349                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3350   do_query($self, $dbh, $query, @values);
 
3354   $main::lxdebug->leave_sub();
 
3358   $main::lxdebug->enter_sub();
 
3360   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3361   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3362   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3365   if ($trans_id ne "") {
 
3367       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 | .
 
3368       qq|FROM history_erp h | .
 
3369       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3370       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3373     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3375     $sth->execute() || $self->dberror("$query");
 
3377     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3378       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3379       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3380       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3381       $tempArray[$i++] = $hash_ref;
 
3383     $main::lxdebug->leave_sub() and return \@tempArray
 
3384       if ($i > 0 && $tempArray[0] ne "");
 
3386   $main::lxdebug->leave_sub();
 
3390 sub update_defaults {
 
3391   $main::lxdebug->enter_sub();
 
3393   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3396   if ($provided_dbh) {
 
3397     $dbh = $provided_dbh;
 
3399     $dbh = $self->dbconnect_noauto($myconfig);
 
3401   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3402   my $sth   = $dbh->prepare($query);
 
3404   $sth->execute || $self->dberror($query);
 
3405   my ($var) = $sth->fetchrow_array;
 
3408   if ($var =~ m/\d+$/) {
 
3409     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3410     my $len_diff = length($var) - $-[0] - length($new_var);
 
3411     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3417   $query = qq|UPDATE defaults SET $fld = ?|;
 
3418   do_query($self, $dbh, $query, $var);
 
3420   if (!$provided_dbh) {
 
3425   $main::lxdebug->leave_sub();
 
3430 sub update_business {
 
3431   $main::lxdebug->enter_sub();
 
3433   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3436   if ($provided_dbh) {
 
3437     $dbh = $provided_dbh;
 
3439     $dbh = $self->dbconnect_noauto($myconfig);
 
3442     qq|SELECT customernumberinit FROM business
 
3443        WHERE id = ? FOR UPDATE|;
 
3444   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3446   return undef unless $var;
 
3448   if ($var =~ m/\d+$/) {
 
3449     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3450     my $len_diff = length($var) - $-[0] - length($new_var);
 
3451     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3457   $query = qq|UPDATE business
 
3458               SET customernumberinit = ?
 
3460   do_query($self, $dbh, $query, $var, $business_id);
 
3462   if (!$provided_dbh) {
 
3467   $main::lxdebug->leave_sub();
 
3472 sub get_partsgroup {
 
3473   $main::lxdebug->enter_sub();
 
3475   my ($self, $myconfig, $p) = @_;
 
3476   my $target = $p->{target} || 'all_partsgroup';
 
3478   my $dbh = $self->get_standard_dbh($myconfig);
 
3480   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3482                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3485   if ($p->{searchitems} eq 'part') {
 
3486     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3488   if ($p->{searchitems} eq 'service') {
 
3489     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3491   if ($p->{searchitems} eq 'assembly') {
 
3492     $query .= qq|WHERE p.assembly = '1'|;
 
3494   if ($p->{searchitems} eq 'labor') {
 
3495     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3498   $query .= qq|ORDER BY partsgroup|;
 
3501     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3502                 ORDER BY partsgroup|;
 
3505   if ($p->{language_code}) {
 
3506     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3507                   t.description AS translation
 
3509                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3510                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3511                 ORDER BY translation|;
 
3512     @values = ($p->{language_code});
 
3515   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3517   $main::lxdebug->leave_sub();
 
3520 sub get_pricegroup {
 
3521   $main::lxdebug->enter_sub();
 
3523   my ($self, $myconfig, $p) = @_;
 
3525   my $dbh = $self->get_standard_dbh($myconfig);
 
3527   my $query = qq|SELECT p.id, p.pricegroup
 
3530   $query .= qq| ORDER BY pricegroup|;
 
3533     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3534                 ORDER BY pricegroup|;
 
3537   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3539   $main::lxdebug->leave_sub();
 
3543 # usage $form->all_years($myconfig, [$dbh])
 
3544 # return list of all years where bookings found
 
3547   $main::lxdebug->enter_sub();
 
3549   my ($self, $myconfig, $dbh) = @_;
 
3551   $dbh ||= $self->get_standard_dbh($myconfig);
 
3554   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3555                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3556   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3558   if ($myconfig->{dateformat} =~ /^yy/) {
 
3559     ($startdate) = split /\W/, $startdate;
 
3560     ($enddate) = split /\W/, $enddate;
 
3562     (@_) = split /\W/, $startdate;
 
3564     (@_) = split /\W/, $enddate;
 
3569   $startdate = substr($startdate,0,4);
 
3570   $enddate = substr($enddate,0,4);
 
3572   while ($enddate >= $startdate) {
 
3573     push @all_years, $enddate--;
 
3578   $main::lxdebug->leave_sub();
 
3582   $main::lxdebug->enter_sub();
 
3586   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3588   $main::lxdebug->leave_sub();
 
3592   $main::lxdebug->enter_sub();
 
3597   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3599   $main::lxdebug->leave_sub();
 
3602 sub prepare_for_printing {
 
3605   $self->{templates} ||= $::myconfig{templates};
 
3606   $self->{formname}  ||= $self->{type};
 
3607   $self->{media}     ||= 'email';
 
3609   die "'media' other than 'email', 'file', 'printer' is not supported yet" unless $self->{media} =~ m/^(?:email|file|printer)$/;
 
3611   # set shipto from billto unless set
 
3612   my $has_shipto = any { $self->{"shipto$_"} } qw(name street zipcode city country contact);
 
3613   if (!$has_shipto && ($self->{type} =~ m/^(?:purchase_order|request_quotation)$/)) {
 
3614     $self->{shiptoname}   = $::myconfig{company};
 
3615     $self->{shiptostreet} = $::myconfig{address};
 
3618   my $language = $self->{language} ? '_' . $self->{language} : '';
 
3620   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
3621   if ($self->{language_id}) {
 
3622     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) = AM->get_language_details(\%::myconfig, $self, $self->{language_id});
 
3624     $output_dateformat   = $::myconfig{dateformat};
 
3625     $output_numberformat = $::myconfig{numberformat};
 
3626     $output_longdates    = 1;
 
3629   # Retrieve accounts for tax calculation.
 
3630   IC->retrieve_accounts(\%::myconfig, $self, map { $_ => $self->{"id_$_"} } 1 .. $self->{rowcount});
 
3632   if ($self->{type} =~ /_delivery_order$/) {
 
3633     DO->order_details();
 
3634   } elsif ($self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/) {
 
3635     OE->order_details(\%::myconfig, $self);
 
3637     IS->invoice_details(\%::myconfig, $self, $::locale);
 
3640   # Chose extension & set source file name
 
3641   my $extension = 'html';
 
3642   if ($self->{format} eq 'postscript') {
 
3643     $self->{postscript}   = 1;
 
3645   } elsif ($self->{"format"} =~ /pdf/) {
 
3647     $extension            = $self->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
3648   } elsif ($self->{"format"} =~ /opendocument/) {
 
3649     $self->{opendocument} = 1;
 
3651   } elsif ($self->{"format"} =~ /excel/) {
 
3656   my $printer_code    = '_' . $self->{printer_code} if $self->{printer_code};
 
3657   my $email_extension = '_email' if -f "$self->{templates}/$self->{formname}_email${language}${printer_code}.${extension}";
 
3658   $self->{IN}         = "$self->{formname}${email_extension}${language}${printer_code}.${extension}";
 
3661   $self->format_dates($output_dateformat, $output_longdates,
 
3662                       qw(invdate orddate quodate pldate duedate reqdate transdate shippingdate deliverydate validitydate paymentdate datepaid
 
3663                          transdate_oe deliverydate_oe employee_startdate employee_enddate),
 
3664                       grep({ /^(?:datepaid|transdate_oe|reqdate|deliverydate|deliverydate_oe|transdate)_\d+$/ } keys(%{$self})));
 
3666   $self->reformat_numbers($output_numberformat, 2,
 
3667                           qw(invtotal ordtotal quototal subtotal linetotal listprice sellprice netprice discount tax taxbase total paid),
 
3668                           grep({ /^(?:linetotal|listprice|sellprice|netprice|taxbase|discount|paid|subtotal|total|tax)_\d+$/ } keys(%{$self})));
 
3670   $self->reformat_numbers($output_numberformat, undef, qw(qty price_factor), grep({ /^qty_\d+$/} keys(%{$self})));
 
3672   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
3674   if (scalar @{ $cvar_date_fields }) {
 
3675     $self->format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
3678   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
3679     $self->reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
3686   my ($self, $dateformat, $longformat, @indices) = @_;
 
3688   $dateformat ||= $::myconfig{dateformat};
 
3690   foreach my $idx (@indices) {
 
3691     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3692       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3693         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $dateformat, $longformat);
 
3697     next unless defined $self->{$idx};
 
3699     if (!ref($self->{$idx})) {
 
3700       $self->{$idx} = $::locale->reformat_date(\%::myconfig, $self->{$idx}, $dateformat, $longformat);
 
3702     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3703       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3704         $self->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{$idx}->[$i], $dateformat, $longformat);
 
3710 sub reformat_numbers {
 
3711   my ($self, $numberformat, $places, @indices) = @_;
 
3713   return if !$numberformat || ($numberformat eq $::myconfig{numberformat});
 
3715   foreach my $idx (@indices) {
 
3716     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3717       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3718         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i]);
 
3722     next unless defined $self->{$idx};
 
3724     if (!ref($self->{$idx})) {
 
3725       $self->{$idx} = $self->parse_amount(\%::myconfig, $self->{$idx});
 
3727     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3728       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3729         $self->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{$idx}->[$i]);
 
3734   my $saved_numberformat    = $::myconfig{numberformat};
 
3735   $::myconfig{numberformat} = $numberformat;
 
3737   foreach my $idx (@indices) {
 
3738     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3739       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3740         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $places);
 
3744     next unless defined $self->{$idx};
 
3746     if (!ref($self->{$idx})) {
 
3747       $self->{$idx} = $self->format_amount(\%::myconfig, $self->{$idx}, $places);
 
3749     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3750       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3751         $self->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{$idx}->[$i], $places);
 
3756   $::myconfig{numberformat} = $saved_numberformat;
 
3765 SL::Form.pm - main data object.
 
3769 This is the main data object of Lx-Office.
 
3770 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3771 Points of interest for a beginner are:
 
3773  - $form->error            - renders a generic error in html. accepts an error message
 
3774  - $form->get_standard_dbh - returns a database connection for the
 
3776 =head1 SPECIAL FUNCTIONS
 
3778 =head2 C<_store_value()>
 
3780 parses a complex var name, and stores it in the form.
 
3783   $form->_store_value($key, $value);
 
3785 keys must start with a string, and can contain various tokens.
 
3786 supported key structures are:
 
3789   simple key strings work as expected
 
3794   separating two keys by a dot (.) will result in a hash lookup for the inner value
 
3795   this is similar to the behaviour of java and templating mechanisms.
 
3797   filter.description => $form->{filter}->{description}
 
3799 3. array+hashref access
 
3801   adding brackets ([]) before the dot will cause the next hash to be put into an array.
 
3802   using [+] instead of [] will force a new array index. this is useful for recurring
 
3803   data structures like part lists. put a [+] into the first varname, and use [] on the
 
3806   repeating these names in your template:
 
3809     invoice.items[].parts_id
 
3813     $form->{invoice}->{items}->[
 
3827   using brackets at the end of a name will result in a pure array to be created.
 
3828   note that you mustn't use [+], which is reserved for array+hash access and will
 
3829   result in undefined behaviour in array context.
 
3831   filter.status[]  => $form->{status}->[ val1, val2, ... ]
 
3833 =head2 C<update_business> PARAMS
 
3836  \%config,     - config hashref
 
3837  $business_id, - business id
 
3838  $dbh          - optional database handle
 
3840 handles business (thats customer/vendor types) sequences.
 
3842 special behaviour for empty strings in customerinitnumber field:
 
3843 will in this case not increase the value, and return undef.
 
3845 =head2 C<redirect_header> $url
 
3847 Generates a HTTP redirection header for the new C<$url>. Constructs an
 
3848 absolute URL including scheme, host name and port. If C<$url> is a
 
3849 relative URL then it is considered relative to Lx-Office base URL.
 
3851 This function C<die>s if headers have already been created with
 
3852 C<$::form-E<gt>header>.
 
3856   print $::form->redirect_header('oe.pl?action=edit&id=1234');
 
3857   print $::form->redirect_header('http://www.lx-office.org/');
 
3861 Generates a general purpose http/html header and includes most of the scripts
 
3862 and stylesheets needed. Stylesheets can be added with L<use_stylesheet>.
 
3864 Only one header will be generated. If the method was already called in this
 
3865 request it will not output anything and return undef. Also if no
 
3866 HTTP_USER_AGENT is found, no header is generated.
 
3868 Although header does not accept parameters itself, it will honor special
 
3869 hashkeys of its Form instance:
 
3877 If one of these is set, a http-equiv refresh is generated. Missing parameters
 
3878 default to 3 seconds and the refering url.
 
3882 Either a scalar or an array ref. Will be inlined into the header. Add
 
3883 stylesheets with the L<use_stylesheet> function.
 
3887 If true, a css snippet will be generated that sets the page in landscape mode.
 
3891 Used to override the default favicon.
 
3895 A html page title will be generated from this