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->{"INSTANCE_CONF"}               = $::instance_conf;
 
 847   if (%main::debug_options) {
 
 848     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
 
 851   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 852     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 853       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 857   $main::lxdebug->leave_sub();
 
 862 sub parse_html_template {
 
 863   $main::lxdebug->enter_sub();
 
 865   my ($self, $file, $additional_params) = @_;
 
 867   $additional_params ||= { };
 
 869   my $real_file = $self->_prepare_html_template($file, $additional_params);
 
 870   my $template  = $self->template || $self->init_template;
 
 872   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 875   $template->process($real_file, $additional_params, \$output) || die $template->error;
 
 877   $main::lxdebug->leave_sub();
 
 885   return $self->template if $self->template;
 
 887   return $self->template(Template->new({
 
 892      'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 893      'INCLUDE_PATH' => '.:templates/webpages',
 
 894      'COMPILE_EXT'  => '.tcc',
 
 895      'COMPILE_DIR'  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
 
 901   $self->{template_object} = shift if @_;
 
 902   return $self->{template_object};
 
 905 sub show_generic_error {
 
 906   $main::lxdebug->enter_sub();
 
 908   my ($self, $error, %params) = @_;
 
 910   if ($self->{__ERROR_HANDLER}) {
 
 911     $self->{__ERROR_HANDLER}->($error);
 
 912     $main::lxdebug->leave_sub();
 
 917     'title_error' => $params{title},
 
 918     'label_error' => $error,
 
 921   if ($params{action}) {
 
 924     map { delete($self->{$_}); } qw(action);
 
 925     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 927     $add_params->{SHOW_BUTTON}  = 1;
 
 928     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 929     $add_params->{VARIABLES}    = \@vars;
 
 931   } elsif ($params{back_button}) {
 
 932     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 935   $self->{title} = $params{title} if $params{title};
 
 938   print $self->parse_html_template("generic/error", $add_params);
 
 940   print STDERR "Error: $error\n";
 
 942   $main::lxdebug->leave_sub();
 
 947 sub show_generic_information {
 
 948   $main::lxdebug->enter_sub();
 
 950   my ($self, $text, $title) = @_;
 
 953     'title_information' => $title,
 
 954     'label_information' => $text,
 
 957   $self->{title} = $title if ($title);
 
 960   print $self->parse_html_template("generic/information", $add_params);
 
 962   $main::lxdebug->leave_sub();
 
 967 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 968 # changed it to accept an arbitrary number of triggers - sschoeling
 
 970   $main::lxdebug->enter_sub();
 
 973   my $myconfig = shift;
 
 976   # set dateform for jsscript
 
 979     "dd.mm.yy" => "%d.%m.%Y",
 
 980     "dd-mm-yy" => "%d-%m-%Y",
 
 981     "dd/mm/yy" => "%d/%m/%Y",
 
 982     "mm/dd/yy" => "%m/%d/%Y",
 
 983     "mm-dd-yy" => "%m-%d-%Y",
 
 984     "yyyy-mm-dd" => "%Y-%m-%d",
 
 987   my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
 
 988     $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
 
 995       inputField : "| . (shift) . qq|",
 
 996       ifFormat :"$ifFormat",
 
 997       align : "| .  (shift) . qq|",
 
 998       button : "| . (shift) . qq|"
 
1004        <script type="text/javascript">
 
1005        <!--| . join("", @triggers) . qq|//-->
 
1009   $main::lxdebug->leave_sub();
 
1012 }    #end sub write_trigger
 
1014 sub _store_redirect_info_in_session {
 
1017   return unless $self->{callback} =~ m:^ ( [^\?/]+ \.pl ) \? (.+) :x;
 
1019   my ($controller, $params) = ($1, $2);
 
1020   my $form                  = { map { map { $self->unescape($_) } split /=/, $_, 2 } split m/\&/, $params };
 
1021   $self->{callback}         = "${controller}?RESTORE_FORM_FROM_SESSION_ID=" . $::auth->save_form_in_session(form => $form);
 
1025   $main::lxdebug->enter_sub();
 
1027   my ($self, $msg) = @_;
 
1029   if (!$self->{callback}) {
 
1033     $self->_store_redirect_info_in_session;
 
1034     print $::form->redirect_header($self->{callback});
 
1039   $main::lxdebug->leave_sub();
 
1042 # sort of columns removed - empty sub
 
1044   $main::lxdebug->enter_sub();
 
1046   my ($self, @columns) = @_;
 
1048   $main::lxdebug->leave_sub();
 
1054   $main::lxdebug->enter_sub(2);
 
1056   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
1058   if ($amount eq "") {
 
1062   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
1064   my $neg = ($amount =~ s/^-//);
 
1065   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
1067   if (defined($places) && ($places ne '')) {
 
1073         my ($actual_places) = ($amount =~ /\.(\d+)/);
 
1074         $actual_places = length($actual_places);
 
1075         $places = $actual_places > $places ? $actual_places : $places;
 
1078     $amount = $self->round_amount($amount, $places);
 
1081   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
1082   my @p = split(/\./, $amount); # split amount at decimal point
 
1084   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
1087   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
1090     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
1091     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
1092                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
1096   $main::lxdebug->leave_sub(2);
 
1100 sub format_amount_units {
 
1101   $main::lxdebug->enter_sub();
 
1106   my $myconfig         = \%main::myconfig;
 
1107   my $amount           = $params{amount} * 1;
 
1108   my $places           = $params{places};
 
1109   my $part_unit_name   = $params{part_unit};
 
1110   my $amount_unit_name = $params{amount_unit};
 
1111   my $conv_units       = $params{conv_units};
 
1112   my $max_places       = $params{max_places};
 
1114   if (!$part_unit_name) {
 
1115     $main::lxdebug->leave_sub();
 
1119   AM->retrieve_all_units();
 
1120   my $all_units        = $main::all_units;
 
1122   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
1123     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
1126   if (!scalar @{ $conv_units }) {
 
1127     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
1128     $main::lxdebug->leave_sub();
 
1132   my $part_unit  = $all_units->{$part_unit_name};
 
1133   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
1135   $amount       *= $conv_unit->{factor};
 
1140   foreach my $unit (@$conv_units) {
 
1141     my $last = $unit->{name} eq $part_unit->{name};
 
1143       $num     = int($amount / $unit->{factor});
 
1144       $amount -= $num * $unit->{factor};
 
1147     if ($last ? $amount : $num) {
 
1148       push @values, { "unit"   => $unit->{name},
 
1149                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
1150                       "places" => $last ? $places : 0 };
 
1157     push @values, { "unit"   => $part_unit_name,
 
1162   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
1164   $main::lxdebug->leave_sub();
 
1170   $main::lxdebug->enter_sub(2);
 
1175   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
1176   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
1177   $input =~ s/\#\#/\#/g;
 
1179   $main::lxdebug->leave_sub(2);
 
1187   $main::lxdebug->enter_sub(2);
 
1189   my ($self, $myconfig, $amount) = @_;
 
1191   if (   ($myconfig->{numberformat} eq '1.000,00')
 
1192       || ($myconfig->{numberformat} eq '1000,00')) {
 
1194     $amount =~ s/,/\./g;
 
1197   if ($myconfig->{numberformat} eq "1'000.00") {
 
1203   $main::lxdebug->leave_sub(2);
 
1205   # Make sure no code wich is not a math expression ends up in eval().
 
1206   return 0 unless $amount =~ /^ [\s \d \( \) \- \+ \* \/ \. ]* $/x;
 
1207   return scalar(eval($amount)) * 1 ;
 
1211   $main::lxdebug->enter_sub(2);
 
1213   my ($self, $amount, $places) = @_;
 
1216   # Rounding like "Kaufmannsrunden" (see http://de.wikipedia.org/wiki/Rundung )
 
1218   # Round amounts to eight places before rounding to the requested
 
1219   # number of places. This gets rid of errors due to internal floating
 
1220   # point representation.
 
1221   $amount       = $self->round_amount($amount, 8) if $places < 8;
 
1222   $amount       = $amount * (10**($places));
 
1223   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1225   $main::lxdebug->leave_sub(2);
 
1227   return $round_amount;
 
1231 sub parse_template {
 
1232   $main::lxdebug->enter_sub();
 
1234   my ($self, $myconfig) = @_;
 
1239   my $userspath = $::lx_office_conf{paths}->{userspath};
 
1241   $self->{"cwd"} = getcwd();
 
1242   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1247   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1248     $template_type  = 'OpenDocument';
 
1249     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
1251   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1252     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1253     $template_type    = 'LaTeX';
 
1254     $ext_for_format   = 'pdf';
 
1256   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1257     $template_type  = 'HTML';
 
1258     $ext_for_format = 'html';
 
1260   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1261     $template_type  = 'XML';
 
1262     $ext_for_format = 'xml';
 
1264   } elsif ( $self->{"format"} =~ /elster(?:winston|taxbird)/i ) {
 
1265     $template_type = 'XML';
 
1267   } elsif ( $self->{"format"} =~ /excel/i ) {
 
1268     $template_type  = 'Excel';
 
1269     $ext_for_format = 'xls';
 
1271   } elsif ( defined $self->{'format'}) {
 
1272     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1274   } elsif ( $self->{'format'} eq '' ) {
 
1275     $self->error("No Outputformat given: $self->{'format'}");
 
1277   } else { #Catch the rest
 
1278     $self->error("Outputformat not defined: $self->{'format'}");
 
1281   my $template = SL::Template::create(type      => $template_type,
 
1282                                       file_name => $self->{IN},
 
1284                                       myconfig  => $myconfig,
 
1285                                       userspath => $userspath);
 
1287   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1288   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1290   if (!$self->{employee_id}) {
 
1291     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
 
1294   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
 
1295   map { $self->{"myconfig_${_}"} = $myconfig->{$_} } grep { $_ ne 'dbpasswd' } keys %{ $myconfig };
 
1297   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1299   # OUT is used for the media, screen, printer, email
 
1300   # for postscript we store a copy in a temporary file
 
1302   my $prepend_userspath;
 
1304   if (!$self->{tmpfile}) {
 
1305     $self->{tmpfile}   = "${fileid}.$self->{IN}";
 
1306     $prepend_userspath = 1;
 
1309   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
 
1311   $self->{tmpfile} =~ s|.*/||;
 
1312   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
 
1313   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
 
1315   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1316     $out = $self->{OUT};
 
1317     $self->{OUT} = ">$self->{tmpfile}";
 
1323     open OUT, "$self->{OUT}" or $self->error("$self->{OUT} : $!");
 
1324     $result = $template->parse(*OUT);
 
1329     $result = $template->parse(*STDOUT);
 
1334     $self->error("$self->{IN} : " . $template->get_error());
 
1337   if ($self->{media} eq 'file') {
 
1338     copy(join('/', $self->{cwd}, $userspath, $self->{tmpfile}), $out =~ m|^/| ? $out : join('/', $self->{cwd}, $out)) if $template->uses_temp_file;
 
1340     chdir("$self->{cwd}");
 
1342     $::lxdebug->leave_sub();
 
1347   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1349     if ($self->{media} eq 'email') {
 
1351       my $mail = new Mailer;
 
1353       map { $mail->{$_} = $self->{$_} }
 
1354         qw(cc bcc subject message version format);
 
1355       $mail->{charset} = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
 
1356       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1357       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1358       $mail->{fileid} = "$fileid.";
 
1359       $myconfig->{signature} =~ s/\r//g;
 
1361       # if we send html or plain text inline
 
1362       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1363         $mail->{contenttype} = "text/html";
 
1365         $mail->{message}       =~ s/\r//g;
 
1366         $mail->{message}       =~ s/\n/<br>\n/g;
 
1367         $myconfig->{signature} =~ s/\n/<br>\n/g;
 
1368         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
1370         open(IN, $self->{tmpfile})
 
1371           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1373           $mail->{message} .= $_;
 
1380         if (!$self->{"do_not_attach"}) {
 
1381           my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1382           $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1383           $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1384                                      "name"     => $attachment_name }];
 
1387         $mail->{message}  =~ s/\r//g;
 
1388         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1392       my $err = $mail->send();
 
1393       $self->error($self->cleanup . "$err") if ($err);
 
1397       $self->{OUT} = $out;
 
1399       my $numbytes = (-s $self->{tmpfile});
 
1400       open(IN, $self->{tmpfile})
 
1401         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1404       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1406       chdir("$self->{cwd}");
 
1407       #print(STDERR "Kopien $self->{copies}\n");
 
1408       #print(STDERR "OUT $self->{OUT}\n");
 
1409       for my $i (1 .. $self->{copies}) {
 
1411           open OUT, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1412           print OUT while <IN>;
 
1417           $self->{attachment_filename} = ($self->{attachment_filename})
 
1418                                        ? $self->{attachment_filename}
 
1419                                        : $self->generate_attachment_filename();
 
1421           # launch application
 
1422           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1423 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1424 Content-Length: $numbytes
 
1428           $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
 
1439   chdir("$self->{cwd}");
 
1440   $main::lxdebug->leave_sub();
 
1443 sub get_formname_translation {
 
1444   $main::lxdebug->enter_sub();
 
1445   my ($self, $formname) = @_;
 
1447   $formname ||= $self->{formname};
 
1449   my %formname_translations = (
 
1450     bin_list                => $main::locale->text('Bin List'),
 
1451     credit_note             => $main::locale->text('Credit Note'),
 
1452     invoice                 => $main::locale->text('Invoice'),
 
1453     pick_list               => $main::locale->text('Pick List'),
 
1454     proforma                => $main::locale->text('Proforma Invoice'),
 
1455     purchase_order          => $main::locale->text('Purchase Order'),
 
1456     request_quotation       => $main::locale->text('RFQ'),
 
1457     sales_order             => $main::locale->text('Confirmation'),
 
1458     sales_quotation         => $main::locale->text('Quotation'),
 
1459     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1460     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1461     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1462     dunning                 => $main::locale->text('Dunning'),
 
1465   $main::lxdebug->leave_sub();
 
1466   return $formname_translations{$formname}
 
1469 sub get_number_prefix_for_type {
 
1470   $main::lxdebug->enter_sub();
 
1474       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1475     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1476     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1479   $main::lxdebug->leave_sub();
 
1483 sub get_extension_for_format {
 
1484   $main::lxdebug->enter_sub();
 
1487   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1488                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1489                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1490                 : $self->{format} =~ /excel/i        ? ".xls"
 
1491                 : $self->{format} =~ /html/i         ? ".html"
 
1494   $main::lxdebug->leave_sub();
 
1498 sub generate_attachment_filename {
 
1499   $main::lxdebug->enter_sub();
 
1502   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1503   my $prefix              = $self->get_number_prefix_for_type();
 
1505   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1506     $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1508   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1509     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1512     $attachment_filename = "";
 
1515   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1516   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1518   $main::lxdebug->leave_sub();
 
1519   return $attachment_filename;
 
1522 sub generate_email_subject {
 
1523   $main::lxdebug->enter_sub();
 
1526   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1527   my $prefix  = $self->get_number_prefix_for_type();
 
1529   if ($subject && $self->{"${prefix}number"}) {
 
1530     $subject .= " " . $self->{"${prefix}number"}
 
1533   $main::lxdebug->leave_sub();
 
1538   $main::lxdebug->enter_sub();
 
1542   chdir("$self->{tmpdir}");
 
1545   if (-f "$self->{tmpfile}.err") {
 
1546     open(FH, "$self->{tmpfile}.err");
 
1551   if ($self->{tmpfile} && !($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})) {
 
1552     $self->{tmpfile} =~ s|.*/||g;
 
1554     $self->{tmpfile} =~ s/\.\w+$//g;
 
1555     my $tmpfile = $self->{tmpfile};
 
1556     unlink(<$tmpfile.*>);
 
1559   chdir("$self->{cwd}");
 
1561   $main::lxdebug->leave_sub();
 
1567   $main::lxdebug->enter_sub();
 
1569   my ($self, $date, $myconfig) = @_;
 
1572   if ($date && $date =~ /\D/) {
 
1574     if ($myconfig->{dateformat} =~ /^yy/) {
 
1575       ($yy, $mm, $dd) = split /\D/, $date;
 
1577     if ($myconfig->{dateformat} =~ /^mm/) {
 
1578       ($mm, $dd, $yy) = split /\D/, $date;
 
1580     if ($myconfig->{dateformat} =~ /^dd/) {
 
1581       ($dd, $mm, $yy) = split /\D/, $date;
 
1586     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1587     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1589     $dd = "0$dd" if ($dd < 10);
 
1590     $mm = "0$mm" if ($mm < 10);
 
1592     $date = "$yy$mm$dd";
 
1595   $main::lxdebug->leave_sub();
 
1600 # Database routines used throughout
 
1602 sub _dbconnect_options {
 
1604   my $options = { pg_enable_utf8 => $::locale->is_utf8,
 
1611   $main::lxdebug->enter_sub(2);
 
1613   my ($self, $myconfig) = @_;
 
1615   # connect to database
 
1616   my $dbh = SL::DBConnect->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}, $self->_dbconnect_options)
 
1620   if ($myconfig->{dboptions}) {
 
1621     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1624   $main::lxdebug->leave_sub(2);
 
1629 sub dbconnect_noauto {
 
1630   $main::lxdebug->enter_sub();
 
1632   my ($self, $myconfig) = @_;
 
1634   # connect to database
 
1635   my $dbh = SL::DBConnect->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}, $self->_dbconnect_options(AutoCommit => 0))
 
1639   if ($myconfig->{dboptions}) {
 
1640     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1643   $main::lxdebug->leave_sub();
 
1648 sub get_standard_dbh {
 
1649   $main::lxdebug->enter_sub(2);
 
1652   my $myconfig = shift || \%::myconfig;
 
1654   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1655     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1656     undef $standard_dbh;
 
1659   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1661   $main::lxdebug->leave_sub(2);
 
1663   return $standard_dbh;
 
1667   $main::lxdebug->enter_sub();
 
1669   my ($self, $date, $myconfig) = @_;
 
1670   my $dbh = $self->dbconnect($myconfig);
 
1672   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1673   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
 
1675   # Falls $date = '' - Fehlermeldung aus der Datenbank. Ich denke,
 
1676   # es ist sicher ein conv_date vorher IMMER auszuführen.
 
1677   # Testfälle ohne definiertes closedto:
 
1678   #   Leere Datumseingabe i.O.
 
1679   #     SELECT 1 FROM defaults WHERE '' < closedto
 
1680   #   normale Zahlungsbuchung Ã¼ber Rechnungsmaske i.O.
 
1681   #     SELECT 1 FROM defaults WHERE '10.05.2011' < closedto
 
1682   # Testfälle mit definiertem closedto (30.04.2011):
 
1683   #  Leere Datumseingabe i.O.
 
1684   #   SELECT 1 FROM defaults WHERE '' < closedto
 
1685   # normale Buchung im geschloßenem Zeitraum i.O.
 
1686   #   SELECT 1 FROM defaults WHERE '21.04.2011' < closedto
 
1687   #     Fehlermeldung: Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!
 
1688   # normale Buchung in aktiver Buchungsperiode i.O.
 
1689   #   SELECT 1 FROM defaults WHERE '01.05.2011' < closedto
 
1691   my ($closed) = $sth->fetchrow_array;
 
1693   $main::lxdebug->leave_sub();
 
1698 sub update_balance {
 
1699   $main::lxdebug->enter_sub();
 
1701   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1703   # if we have a value, go do it
 
1706     # retrieve balance from table
 
1707     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1708     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1709     my ($balance) = $sth->fetchrow_array;
 
1715     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1716     do_query($self, $dbh, $query, @values);
 
1718   $main::lxdebug->leave_sub();
 
1721 sub update_exchangerate {
 
1722   $main::lxdebug->enter_sub();
 
1724   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1726   # some sanity check for currency
 
1728     $main::lxdebug->leave_sub();
 
1731   $query = qq|SELECT curr FROM defaults|;
 
1733   my ($currency) = selectrow_query($self, $dbh, $query);
 
1734   my ($defaultcurrency) = split m/:/, $currency;
 
1737   if ($curr eq $defaultcurrency) {
 
1738     $main::lxdebug->leave_sub();
 
1742   $query = qq|SELECT e.curr FROM exchangerate e
 
1743                  WHERE e.curr = ? AND e.transdate = ?
 
1745   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1754   $buy = conv_i($buy, "NULL");
 
1755   $sell = conv_i($sell, "NULL");
 
1758   if ($buy != 0 && $sell != 0) {
 
1759     $set = "buy = $buy, sell = $sell";
 
1760   } elsif ($buy != 0) {
 
1761     $set = "buy = $buy";
 
1762   } elsif ($sell != 0) {
 
1763     $set = "sell = $sell";
 
1766   if ($sth->fetchrow_array) {
 
1767     $query = qq|UPDATE exchangerate
 
1773     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1774                 VALUES (?, $buy, $sell, ?)|;
 
1777   do_query($self, $dbh, $query, $curr, $transdate);
 
1779   $main::lxdebug->leave_sub();
 
1782 sub save_exchangerate {
 
1783   $main::lxdebug->enter_sub();
 
1785   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1787   my $dbh = $self->dbconnect($myconfig);
 
1791   $buy  = $rate if $fld eq 'buy';
 
1792   $sell = $rate if $fld eq 'sell';
 
1795   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1800   $main::lxdebug->leave_sub();
 
1803 sub get_exchangerate {
 
1804   $main::lxdebug->enter_sub();
 
1806   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1809   unless ($transdate) {
 
1810     $main::lxdebug->leave_sub();
 
1814   $query = qq|SELECT curr FROM defaults|;
 
1816   my ($currency) = selectrow_query($self, $dbh, $query);
 
1817   my ($defaultcurrency) = split m/:/, $currency;
 
1819   if ($currency eq $defaultcurrency) {
 
1820     $main::lxdebug->leave_sub();
 
1824   $query = qq|SELECT e.$fld FROM exchangerate e
 
1825                  WHERE e.curr = ? AND e.transdate = ?|;
 
1826   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1830   $main::lxdebug->leave_sub();
 
1832   return $exchangerate;
 
1835 sub check_exchangerate {
 
1836   $main::lxdebug->enter_sub();
 
1838   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1840   if ($fld !~/^buy|sell$/) {
 
1841     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1844   unless ($transdate) {
 
1845     $main::lxdebug->leave_sub();
 
1849   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1851   if ($currency eq $defaultcurrency) {
 
1852     $main::lxdebug->leave_sub();
 
1856   my $dbh   = $self->get_standard_dbh($myconfig);
 
1857   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1858                  WHERE e.curr = ? AND e.transdate = ?|;
 
1860   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1862   $main::lxdebug->leave_sub();
 
1864   return $exchangerate;
 
1867 sub get_all_currencies {
 
1868   $main::lxdebug->enter_sub();
 
1871   my $myconfig = shift || \%::myconfig;
 
1872   my $dbh      = $self->get_standard_dbh($myconfig);
 
1874   my $query = qq|SELECT curr FROM defaults|;
 
1876   my ($curr)     = selectrow_query($self, $dbh, $query);
 
1877   my @currencies = grep { $_ } map { s/\s//g; $_ } split m/:/, $curr;
 
1879   $main::lxdebug->leave_sub();
 
1884 sub get_default_currency {
 
1885   $main::lxdebug->enter_sub();
 
1887   my ($self, $myconfig) = @_;
 
1888   my @currencies        = $self->get_all_currencies($myconfig);
 
1890   $main::lxdebug->leave_sub();
 
1892   return $currencies[0];
 
1895 sub set_payment_options {
 
1896   $main::lxdebug->enter_sub();
 
1898   my ($self, $myconfig, $transdate) = @_;
 
1900   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1902   my $dbh = $self->get_standard_dbh($myconfig);
 
1905     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long , p.description | .
 
1906     qq|FROM payment_terms p | .
 
1909   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1910    $self->{payment_terms}, $self->{payment_description}) =
 
1911      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1913   if ($transdate eq "") {
 
1914     if ($self->{invdate}) {
 
1915       $transdate = $self->{invdate};
 
1917       $transdate = $self->{transdate};
 
1922     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1923     qq|FROM payment_terms|;
 
1924   ($self->{netto_date}, $self->{skonto_date}) =
 
1925     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1927   my ($invtotal, $total);
 
1928   my (%amounts, %formatted_amounts);
 
1930   if ($self->{type} =~ /_order$/) {
 
1931     $amounts{invtotal} = $self->{ordtotal};
 
1932     $amounts{total}    = $self->{ordtotal};
 
1934   } elsif ($self->{type} =~ /_quotation$/) {
 
1935     $amounts{invtotal} = $self->{quototal};
 
1936     $amounts{total}    = $self->{quototal};
 
1939     $amounts{invtotal} = $self->{invtotal};
 
1940     $amounts{total}    = $self->{total};
 
1942   $amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto};
 
1944   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1946   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1947   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1948   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1950   foreach (keys %amounts) {
 
1951     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1952     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1955   if ($self->{"language_id"}) {
 
1957       qq|SELECT t.translation, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1958       qq|FROM generic_translations t | .
 
1959       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1960       qq|WHERE (t.language_id = ?)
 
1961            AND (t.translation_id = ?)
 
1962            AND (t.translation_type = 'SL::DB::PaymentTerm/description_long')|;
 
1963     my ($description_long, $output_numberformat, $output_dateformat,
 
1964       $output_longdates) =
 
1965       selectrow_query($self, $dbh, $query,
 
1966                       $self->{"language_id"}, $self->{"payment_id"});
 
1968     $self->{payment_terms} = $description_long if ($description_long);
 
1970     if ($output_dateformat) {
 
1971       foreach my $key (qw(netto_date skonto_date)) {
 
1973           $main::locale->reformat_date($myconfig, $self->{$key},
 
1979     if ($output_numberformat &&
 
1980         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1981       my $saved_numberformat = $myconfig->{"numberformat"};
 
1982       $myconfig->{"numberformat"} = $output_numberformat;
 
1983       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1984       $myconfig->{"numberformat"} = $saved_numberformat;
 
1988   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1989   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1990   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1991   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1992   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1993   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1994   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1996   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1998   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
 
2000   $main::lxdebug->leave_sub();
 
2004 sub get_template_language {
 
2005   $main::lxdebug->enter_sub();
 
2007   my ($self, $myconfig) = @_;
 
2009   my $template_code = "";
 
2011   if ($self->{language_id}) {
 
2012     my $dbh = $self->get_standard_dbh($myconfig);
 
2013     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
2014     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
2017   $main::lxdebug->leave_sub();
 
2019   return $template_code;
 
2022 sub get_printer_code {
 
2023   $main::lxdebug->enter_sub();
 
2025   my ($self, $myconfig) = @_;
 
2027   my $template_code = "";
 
2029   if ($self->{printer_id}) {
 
2030     my $dbh = $self->get_standard_dbh($myconfig);
 
2031     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
2032     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
2035   $main::lxdebug->leave_sub();
 
2037   return $template_code;
 
2041   $main::lxdebug->enter_sub();
 
2043   my ($self, $myconfig) = @_;
 
2045   my $template_code = "";
 
2047   if ($self->{shipto_id}) {
 
2048     my $dbh = $self->get_standard_dbh($myconfig);
 
2049     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
2050     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
2051     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
2054   $main::lxdebug->leave_sub();
 
2058   $main::lxdebug->enter_sub();
 
2060   my ($self, $dbh, $id, $module) = @_;
 
2065   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
2066                        contact cp_gender phone fax email)) {
 
2067     if ($self->{"shipto$item"}) {
 
2068       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
2070     push(@values, $self->{"shipto${item}"});
 
2074     if ($self->{shipto_id}) {
 
2075       my $query = qq|UPDATE shipto set
 
2077                        shiptodepartment_1 = ?,
 
2078                        shiptodepartment_2 = ?,
 
2084                        shiptocp_gender = ?,
 
2088                      WHERE shipto_id = ?|;
 
2089       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
2091       my $query = qq|SELECT * FROM shipto
 
2092                      WHERE shiptoname = ? AND
 
2093                        shiptodepartment_1 = ? AND
 
2094                        shiptodepartment_2 = ? AND
 
2095                        shiptostreet = ? AND
 
2096                        shiptozipcode = ? AND
 
2098                        shiptocountry = ? AND
 
2099                        shiptocontact = ? AND
 
2100                        shiptocp_gender = ? AND
 
2106       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
2109           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
2110                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
2111                                  shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
 
2112              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
2113         do_query($self, $dbh, $query, $id, @values, $module);
 
2118   $main::lxdebug->leave_sub();
 
2122   $main::lxdebug->enter_sub();
 
2124   my ($self, $dbh) = @_;
 
2126   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
2128   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
2129   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
2130   $self->{"employee_id"} *= 1;
 
2132   $main::lxdebug->leave_sub();
 
2135 sub get_employee_data {
 
2136   $main::lxdebug->enter_sub();
 
2141   Common::check_params(\%params, qw(prefix));
 
2142   Common::check_params_x(\%params, qw(id));
 
2145     $main::lxdebug->leave_sub();
 
2149   my $myconfig = \%main::myconfig;
 
2150   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
2152   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
 
2155     my $user = User->new($login);
 
2156     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
 
2158     $self->{$params{prefix} . '_login'}   = $login;
 
2159     $self->{$params{prefix} . '_name'}  ||= $login;
 
2162   $main::lxdebug->leave_sub();
 
2166   $main::lxdebug->enter_sub();
 
2168   my ($self, $myconfig, $reference_date) = @_;
 
2170   $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
 
2172   my $dbh         = $self->get_standard_dbh($myconfig);
 
2173   my $query       = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
 
2174   my ($duedate)   = selectrow_query($self, $dbh, $query, $self->{payment_id});
 
2176   $main::lxdebug->leave_sub();
 
2182   $main::lxdebug->enter_sub();
 
2184   my ($self, $dbh, $id, $key) = @_;
 
2186   $key = "all_contacts" unless ($key);
 
2190     $main::lxdebug->leave_sub();
 
2195     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
2196     qq|FROM contacts | .
 
2197     qq|WHERE cp_cv_id = ? | .
 
2198     qq|ORDER BY lower(cp_name)|;
 
2200   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
2202   $main::lxdebug->leave_sub();
 
2206   $main::lxdebug->enter_sub();
 
2208   my ($self, $dbh, $key) = @_;
 
2210   my ($all, $old_id, $where, @values);
 
2212   if (ref($key) eq "HASH") {
 
2215     $key = "ALL_PROJECTS";
 
2217     foreach my $p (keys(%{$params})) {
 
2219         $all = $params->{$p};
 
2220       } elsif ($p eq "old_id") {
 
2221         $old_id = $params->{$p};
 
2222       } elsif ($p eq "key") {
 
2223         $key = $params->{$p};
 
2229     $where = "WHERE active ";
 
2231       if (ref($old_id) eq "ARRAY") {
 
2232         my @ids = grep({ $_ } @{$old_id});
 
2234           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
2235           push(@values, @ids);
 
2238         $where .= " OR (id = ?) ";
 
2239         push(@values, $old_id);
 
2245     qq|SELECT id, projectnumber, description, active | .
 
2248     qq|ORDER BY lower(projectnumber)|;
 
2250   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2252   $main::lxdebug->leave_sub();
 
2256   $main::lxdebug->enter_sub();
 
2258   my ($self, $dbh, $vc_id, $key) = @_;
 
2260   $key = "all_shipto" unless ($key);
 
2263     # get shipping addresses
 
2264     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2266     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2272   $main::lxdebug->leave_sub();
 
2276   $main::lxdebug->enter_sub();
 
2278   my ($self, $dbh, $key) = @_;
 
2280   $key = "all_printers" unless ($key);
 
2282   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2284   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2286   $main::lxdebug->leave_sub();
 
2290   $main::lxdebug->enter_sub();
 
2292   my ($self, $dbh, $params) = @_;
 
2295   $key = $params->{key};
 
2296   $key = "all_charts" unless ($key);
 
2298   my $transdate = quote_db_date($params->{transdate});
 
2301     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2303     qq|LEFT JOIN taxkeys tk ON | .
 
2304     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2305     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2306     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2307     qq|ORDER BY c.accno|;
 
2309   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2311   $main::lxdebug->leave_sub();
 
2314 sub _get_taxcharts {
 
2315   $main::lxdebug->enter_sub();
 
2317   my ($self, $dbh, $params) = @_;
 
2319   my $key = "all_taxcharts";
 
2322   if (ref $params eq 'HASH') {
 
2323     $key = $params->{key} if ($params->{key});
 
2324     if ($params->{module} eq 'AR') {
 
2325       push @where, 'taxkey NOT IN (8, 9, 18, 19)';
 
2327     } elsif ($params->{module} eq 'AP') {
 
2328       push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
 
2335   my $where = ' WHERE ' . join(' AND ', map { "($_)" } @where) if (@where);
 
2337   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
 
2339   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2341   $main::lxdebug->leave_sub();
 
2345   $main::lxdebug->enter_sub();
 
2347   my ($self, $dbh, $key) = @_;
 
2349   $key = "all_taxzones" unless ($key);
 
2351   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2353   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2355   $main::lxdebug->leave_sub();
 
2358 sub _get_employees {
 
2359   $main::lxdebug->enter_sub();
 
2361   my ($self, $dbh, $default_key, $key) = @_;
 
2363   $key = $default_key unless ($key);
 
2364   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2366   $main::lxdebug->leave_sub();
 
2369 sub _get_business_types {
 
2370   $main::lxdebug->enter_sub();
 
2372   my ($self, $dbh, $key) = @_;
 
2374   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2375   $options->{key} ||= "all_business_types";
 
2378   if (exists $options->{salesman}) {
 
2379     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2382   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2384   $main::lxdebug->leave_sub();
 
2387 sub _get_languages {
 
2388   $main::lxdebug->enter_sub();
 
2390   my ($self, $dbh, $key) = @_;
 
2392   $key = "all_languages" unless ($key);
 
2394   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2396   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2398   $main::lxdebug->leave_sub();
 
2401 sub _get_dunning_configs {
 
2402   $main::lxdebug->enter_sub();
 
2404   my ($self, $dbh, $key) = @_;
 
2406   $key = "all_dunning_configs" unless ($key);
 
2408   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2410   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2412   $main::lxdebug->leave_sub();
 
2415 sub _get_currencies {
 
2416 $main::lxdebug->enter_sub();
 
2418   my ($self, $dbh, $key) = @_;
 
2420   $key = "all_currencies" unless ($key);
 
2422   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2424   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2426   $main::lxdebug->leave_sub();
 
2430 $main::lxdebug->enter_sub();
 
2432   my ($self, $dbh, $key) = @_;
 
2434   $key = "all_payments" unless ($key);
 
2436   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
 
2438   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2440   $main::lxdebug->leave_sub();
 
2443 sub _get_customers {
 
2444   $main::lxdebug->enter_sub();
 
2446   my ($self, $dbh, $key) = @_;
 
2448   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2449   $options->{key}  ||= "all_customers";
 
2450   my $limit_clause   = "LIMIT $options->{limit}" if $options->{limit};
 
2453   push @where, qq|business_id IN (SELECT id FROM business WHERE salesman)| if  $options->{business_is_salesman};
 
2454   push @where, qq|NOT obsolete|                                            if !$options->{with_obsolete};
 
2455   my $where_str = @where ? "WHERE " . join(" AND ", map { "($_)" } @where) : '';
 
2457   my $query = qq|SELECT * FROM customer $where_str ORDER BY name $limit_clause|;
 
2458   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2460   $main::lxdebug->leave_sub();
 
2464   $main::lxdebug->enter_sub();
 
2466   my ($self, $dbh, $key) = @_;
 
2468   $key = "all_vendors" unless ($key);
 
2470   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2472   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2474   $main::lxdebug->leave_sub();
 
2477 sub _get_departments {
 
2478   $main::lxdebug->enter_sub();
 
2480   my ($self, $dbh, $key) = @_;
 
2482   $key = "all_departments" unless ($key);
 
2484   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2486   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2488   $main::lxdebug->leave_sub();
 
2491 sub _get_warehouses {
 
2492   $main::lxdebug->enter_sub();
 
2494   my ($self, $dbh, $param) = @_;
 
2496   my ($key, $bins_key);
 
2498   if ('' eq ref $param) {
 
2502     $key      = $param->{key};
 
2503     $bins_key = $param->{bins};
 
2506   my $query = qq|SELECT w.* FROM warehouse w
 
2507                  WHERE (NOT w.invalid) AND
 
2508                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2509                  ORDER BY w.sortkey|;
 
2511   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2514     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
 
2515                 ORDER BY description|;
 
2516     my $sth = prepare_query($self, $dbh, $query);
 
2518     foreach my $warehouse (@{ $self->{$key} }) {
 
2519       do_statement($self, $sth, $query, $warehouse->{id});
 
2520       $warehouse->{$bins_key} = [];
 
2522       while (my $ref = $sth->fetchrow_hashref()) {
 
2523         push @{ $warehouse->{$bins_key} }, $ref;
 
2529   $main::lxdebug->leave_sub();
 
2533   $main::lxdebug->enter_sub();
 
2535   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2537   my $query  = qq|SELECT * FROM $table|;
 
2538   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2540   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2542   $main::lxdebug->leave_sub();
 
2546 #  $main::lxdebug->enter_sub();
 
2548 #  my ($self, $dbh, $key) = @_;
 
2550 #  $key ||= "all_groups";
 
2552 #  my $groups = $main::auth->read_groups();
 
2554 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2556 #  $main::lxdebug->leave_sub();
 
2560   $main::lxdebug->enter_sub();
 
2565   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2566   my ($sth, $query, $ref);
 
2568   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2569   my $vc_id = $self->{"${vc}_id"};
 
2571   if ($params{"contacts"}) {
 
2572     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2575   if ($params{"shipto"}) {
 
2576     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2579   if ($params{"projects"} || $params{"all_projects"}) {
 
2580     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2581                          $params{"all_projects"} : $params{"projects"},
 
2582                          $params{"all_projects"} ? 1 : 0);
 
2585   if ($params{"printers"}) {
 
2586     $self->_get_printers($dbh, $params{"printers"});
 
2589   if ($params{"languages"}) {
 
2590     $self->_get_languages($dbh, $params{"languages"});
 
2593   if ($params{"charts"}) {
 
2594     $self->_get_charts($dbh, $params{"charts"});
 
2597   if ($params{"taxcharts"}) {
 
2598     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2601   if ($params{"taxzones"}) {
 
2602     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2605   if ($params{"employees"}) {
 
2606     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2609   if ($params{"salesmen"}) {
 
2610     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2613   if ($params{"business_types"}) {
 
2614     $self->_get_business_types($dbh, $params{"business_types"});
 
2617   if ($params{"dunning_configs"}) {
 
2618     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2621   if($params{"currencies"}) {
 
2622     $self->_get_currencies($dbh, $params{"currencies"});
 
2625   if($params{"customers"}) {
 
2626     $self->_get_customers($dbh, $params{"customers"});
 
2629   if($params{"vendors"}) {
 
2630     if (ref $params{"vendors"} eq 'HASH') {
 
2631       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2633       $self->_get_vendors($dbh, $params{"vendors"});
 
2637   if($params{"payments"}) {
 
2638     $self->_get_payments($dbh, $params{"payments"});
 
2641   if($params{"departments"}) {
 
2642     $self->_get_departments($dbh, $params{"departments"});
 
2645   if ($params{price_factors}) {
 
2646     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2649   if ($params{warehouses}) {
 
2650     $self->_get_warehouses($dbh, $params{warehouses});
 
2653 #  if ($params{groups}) {
 
2654 #    $self->_get_groups($dbh, $params{groups});
 
2657   if ($params{partsgroup}) {
 
2658     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2661   $main::lxdebug->leave_sub();
 
2664 # this sub gets the id and name from $table
 
2666   $main::lxdebug->enter_sub();
 
2668   my ($self, $myconfig, $table) = @_;
 
2670   # connect to database
 
2671   my $dbh = $self->get_standard_dbh($myconfig);
 
2673   $table = $table eq "customer" ? "customer" : "vendor";
 
2674   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2676   my ($query, @values);
 
2678   if (!$self->{openinvoices}) {
 
2680     if ($self->{customernumber} ne "") {
 
2681       $where = qq|(vc.customernumber ILIKE ?)|;
 
2682       push(@values, '%' . $self->{customernumber} . '%');
 
2684       $where = qq|(vc.name ILIKE ?)|;
 
2685       push(@values, '%' . $self->{$table} . '%');
 
2689       qq~SELECT vc.id, vc.name,
 
2690            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2692          WHERE $where AND (NOT vc.obsolete)
 
2696       qq~SELECT DISTINCT vc.id, vc.name,
 
2697            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2699          JOIN $table vc ON (a.${table}_id = vc.id)
 
2700          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2702     push(@values, '%' . $self->{$table} . '%');
 
2705   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2707   $main::lxdebug->leave_sub();
 
2709   return scalar(@{ $self->{name_list} });
 
2712 # the selection sub is used in the AR, AP, IS, IR and OE module
 
2715   $main::lxdebug->enter_sub();
 
2717   my ($self, $myconfig, $table, $module) = @_;
 
2720   my $dbh = $self->get_standard_dbh;
 
2722   $table = $table eq "customer" ? "customer" : "vendor";
 
2724   my $query = qq|SELECT count(*) FROM $table|;
 
2725   my ($count) = selectrow_query($self, $dbh, $query);
 
2727   # build selection list
 
2728   if ($count <= $myconfig->{vclimit}) {
 
2729     $query = qq|SELECT id, name, salesman_id
 
2730                 FROM $table WHERE NOT obsolete
 
2732     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2736   $self->get_employee($dbh);
 
2738   # setup sales contacts
 
2739   $query = qq|SELECT e.id, e.name
 
2741               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
 
2742   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2745   push(@{ $self->{all_employees} },
 
2746        { id   => $self->{employee_id},
 
2747          name => $self->{employee} });
 
2749   # sort the whole thing
 
2750   @{ $self->{all_employees} } =
 
2751     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
2753   if ($module eq 'AR') {
 
2755     # prepare query for departments
 
2756     $query = qq|SELECT id, description
 
2759                 ORDER BY description|;
 
2762     $query = qq|SELECT id, description
 
2764                 ORDER BY description|;
 
2767   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2770   $query = qq|SELECT id, description
 
2774   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2777   $query = qq|SELECT printer_description, id
 
2779               ORDER BY printer_description|;
 
2781   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2784   $query = qq|SELECT id, description
 
2788   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2790   $main::lxdebug->leave_sub();
 
2793 sub language_payment {
 
2794   $main::lxdebug->enter_sub();
 
2796   my ($self, $myconfig) = @_;
 
2798   my $dbh = $self->get_standard_dbh($myconfig);
 
2800   my $query = qq|SELECT id, description
 
2804   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2807   $query = qq|SELECT printer_description, id
 
2809               ORDER BY printer_description|;
 
2811   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2814   $query = qq|SELECT id, description
 
2818   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2820   # get buchungsgruppen
 
2821   $query = qq|SELECT id, description
 
2822               FROM buchungsgruppen|;
 
2824   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2826   $main::lxdebug->leave_sub();
 
2829 # this is only used for reports
 
2830 sub all_departments {
 
2831   $main::lxdebug->enter_sub();
 
2833   my ($self, $myconfig, $table) = @_;
 
2835   my $dbh = $self->get_standard_dbh($myconfig);
 
2838   if ($table eq 'customer') {
 
2839     $where = "WHERE role = 'P' ";
 
2842   my $query = qq|SELECT id, description
 
2845                  ORDER BY description|;
 
2846   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2848   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2850   $main::lxdebug->leave_sub();
 
2854   $main::lxdebug->enter_sub();
 
2856   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2859   if ($table eq "customer") {
 
2868   $self->all_vc($myconfig, $table, $module);
 
2870   # get last customers or vendors
 
2871   my ($query, $sth, $ref);
 
2873   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2878     my $transdate = "current_date";
 
2879     if ($self->{transdate}) {
 
2880       $transdate = $dbh->quote($self->{transdate});
 
2883     # now get the account numbers
 
2884     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2885                 FROM chart c, taxkeys tk
 
2886                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2887                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2890     $sth = $dbh->prepare($query);
 
2892     do_statement($self, $sth, $query, '%' . $module . '%');
 
2894     $self->{accounts} = "";
 
2895     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2897       foreach my $key (split(/:/, $ref->{link})) {
 
2898         if ($key =~ /\Q$module\E/) {
 
2900           # cross reference for keys
 
2901           $xkeyref{ $ref->{accno} } = $key;
 
2903           push @{ $self->{"${module}_links"}{$key} },
 
2904             { accno       => $ref->{accno},
 
2905               description => $ref->{description},
 
2906               taxkey      => $ref->{taxkey_id},
 
2907               tax_id      => $ref->{tax_id} };
 
2909           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2915   # get taxkeys and description
 
2916   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2917   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2919   if (($module eq "AP") || ($module eq "AR")) {
 
2920     # get tax rates and description
 
2921     $query = qq|SELECT * FROM tax|;
 
2922     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2928            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2929            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2930            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2931            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2933            d.description AS department,
 
2936          JOIN $table c ON (a.${table}_id = c.id)
 
2937          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2938          LEFT JOIN department d ON (d.id = a.department_id)
 
2940     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2942     foreach my $key (keys %$ref) {
 
2943       $self->{$key} = $ref->{$key};
 
2946     my $transdate = "current_date";
 
2947     if ($self->{transdate}) {
 
2948       $transdate = $dbh->quote($self->{transdate});
 
2951     # now get the account numbers
 
2952     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2954                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2956                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2957                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2960     $sth = $dbh->prepare($query);
 
2961     do_statement($self, $sth, $query, "%$module%");
 
2963     $self->{accounts} = "";
 
2964     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2966       foreach my $key (split(/:/, $ref->{link})) {
 
2967         if ($key =~ /\Q$module\E/) {
 
2969           # cross reference for keys
 
2970           $xkeyref{ $ref->{accno} } = $key;
 
2972           push @{ $self->{"${module}_links"}{$key} },
 
2973             { accno       => $ref->{accno},
 
2974               description => $ref->{description},
 
2975               taxkey      => $ref->{taxkey_id},
 
2976               tax_id      => $ref->{tax_id} };
 
2978           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2984     # get amounts from individual entries
 
2987            c.accno, c.description,
 
2988            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
 
2992          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2993          LEFT JOIN project p ON (p.id = a.project_id)
 
2994          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
2995                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
2996                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
2997                                         THEN tk.chart_id = a.chart_id
 
3000                                        OR (c.link='%tax%')) AND
 
3001                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
3002          WHERE a.trans_id = ?
 
3003          AND a.fx_transaction = '0'
 
3004          ORDER BY a.acc_trans_id, a.transdate|;
 
3005     $sth = $dbh->prepare($query);
 
3006     do_statement($self, $sth, $query, $self->{id});
 
3008     # get exchangerate for currency
 
3009     $self->{exchangerate} =
 
3010       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
3013     # store amounts in {acc_trans}{$key} for multiple accounts
 
3014     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
3015       $ref->{exchangerate} =
 
3016         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
3017       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
3020       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
3021         $ref->{amount} *= -1;
 
3023       $ref->{index} = $index;
 
3025       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
3031            d.curr AS currencies, d.closedto, d.revtrans,
 
3032            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
3033            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
3035     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
3036     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
3043             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
3044             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
3045             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
3047     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
3048     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
3050     if ($self->{"$self->{vc}_id"}) {
 
3052       # only setup currency
 
3053       ($self->{currency}) = split(/:/, $self->{currencies});
 
3057       $self->lastname_used($dbh, $myconfig, $table, $module);
 
3059       # get exchangerate for currency
 
3060       $self->{exchangerate} =
 
3061         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
3067   $main::lxdebug->leave_sub();
 
3071   $main::lxdebug->enter_sub();
 
3073   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
3077   $table         = $table eq "customer" ? "customer" : "vendor";
 
3078   my %column_map = ("a.curr"                  => "currency",
 
3079                     "a.${table}_id"           => "${table}_id",
 
3080                     "a.department_id"         => "department_id",
 
3081                     "d.description"           => "department",
 
3082                     "ct.name"                 => $table,
 
3083                     "current_date + ct.terms" => "duedate",
 
3086   if ($self->{type} =~ /delivery_order/) {
 
3087     $arap  = 'delivery_orders';
 
3088     delete $column_map{"a.curr"};
 
3090   } elsif ($self->{type} =~ /_order/) {
 
3092     $where = "quotation = '0'";
 
3094   } elsif ($self->{type} =~ /_quotation/) {
 
3096     $where = "quotation = '1'";
 
3098   } elsif ($table eq 'customer') {
 
3106   $where           = "($where) AND" if ($where);
 
3107   my $query        = qq|SELECT MAX(id) FROM $arap
 
3108                         WHERE $where ${table}_id > 0|;
 
3109   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
3112   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
3113   $query           = qq|SELECT $column_spec
 
3115                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
3116                         LEFT JOIN department d  ON (a.department_id = d.id)
 
3118   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
3120   map { $self->{$_} = $ref->{$_} } values %column_map;
 
3122   $main::lxdebug->leave_sub();
 
3126   $main::lxdebug->enter_sub();
 
3129   my $myconfig = shift || \%::myconfig;
 
3130   my ($thisdate, $days) = @_;
 
3132   my $dbh = $self->get_standard_dbh($myconfig);
 
3137     my $dateformat = $myconfig->{dateformat};
 
3138     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
3139     $thisdate = $dbh->quote($thisdate);
 
3140     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
3142     $query = qq|SELECT current_date AS thisdate|;
 
3145   ($thisdate) = selectrow_query($self, $dbh, $query);
 
3147   $main::lxdebug->leave_sub();
 
3153   $main::lxdebug->enter_sub();
 
3155   my ($self, $string) = @_;
 
3157   if ($string !~ /%/) {
 
3158     $string = "%$string%";
 
3161   $string =~ s/\'/\'\'/g;
 
3163   $main::lxdebug->leave_sub();
 
3169   $main::lxdebug->enter_sub();
 
3171   my ($self, $flds, $new, $count, $numrows) = @_;
 
3175   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
3180   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
3182     my $j = $item->{ndx} - 1;
 
3183     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
3187   for $i ($count + 1 .. $numrows) {
 
3188     map { delete $self->{"${_}_$i"} } @{$flds};
 
3191   $main::lxdebug->leave_sub();
 
3195   $main::lxdebug->enter_sub();
 
3197   my ($self, $myconfig) = @_;
 
3201   my $dbh = $self->dbconnect_noauto($myconfig);
 
3203   my $query = qq|DELETE FROM status
 
3204                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3205   my $sth = prepare_query($self, $dbh, $query);
 
3207   if ($self->{formname} =~ /(check|receipt)/) {
 
3208     for $i (1 .. $self->{rowcount}) {
 
3209       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
3212     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3216   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3217   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3219   my %queued = split / /, $self->{queued};
 
3222   if ($self->{formname} =~ /(check|receipt)/) {
 
3224     # this is a check or receipt, add one entry for each lineitem
 
3225     my ($accno) = split /--/, $self->{account};
 
3226     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3227                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3228     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3229     $sth = prepare_query($self, $dbh, $query);
 
3231     for $i (1 .. $self->{rowcount}) {
 
3232       if ($self->{"checked_$i"}) {
 
3233         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3239     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3240                 VALUES (?, ?, ?, ?, ?)|;
 
3241     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3242              $queued{$self->{formname}}, $self->{formname});
 
3248   $main::lxdebug->leave_sub();
 
3252   $main::lxdebug->enter_sub();
 
3254   my ($self, $dbh) = @_;
 
3256   my ($query, $printed, $emailed);
 
3258   my $formnames  = $self->{printed};
 
3259   my $emailforms = $self->{emailed};
 
3261   $query = qq|DELETE FROM status
 
3262                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3263   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3265   # this only applies to the forms
 
3266   # checks and receipts are posted when printed or queued
 
3268   if ($self->{queued}) {
 
3269     my %queued = split / /, $self->{queued};
 
3271     foreach my $formname (keys %queued) {
 
3272       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3273       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3275       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3276                   VALUES (?, ?, ?, ?, ?)|;
 
3277       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3279       $formnames  =~ s/\Q$self->{formname}\E//;
 
3280       $emailforms =~ s/\Q$self->{formname}\E//;
 
3285   # save printed, emailed info
 
3286   $formnames  =~ s/^ +//g;
 
3287   $emailforms =~ s/^ +//g;
 
3290   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3291   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3293   foreach my $formname (keys %status) {
 
3294     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3295     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3297     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3298                 VALUES (?, ?, ?, ?)|;
 
3299     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3302   $main::lxdebug->leave_sub();
 
3306 # $main::locale->text('SAVED')
 
3307 # $main::locale->text('DELETED')
 
3308 # $main::locale->text('ADDED')
 
3309 # $main::locale->text('PAYMENT POSTED')
 
3310 # $main::locale->text('POSTED')
 
3311 # $main::locale->text('POSTED AS NEW')
 
3312 # $main::locale->text('ELSE')
 
3313 # $main::locale->text('SAVED FOR DUNNING')
 
3314 # $main::locale->text('DUNNING STARTED')
 
3315 # $main::locale->text('PRINTED')
 
3316 # $main::locale->text('MAILED')
 
3317 # $main::locale->text('SCREENED')
 
3318 # $main::locale->text('CANCELED')
 
3319 # $main::locale->text('invoice')
 
3320 # $main::locale->text('proforma')
 
3321 # $main::locale->text('sales_order')
 
3322 # $main::locale->text('pick_list')
 
3323 # $main::locale->text('purchase_order')
 
3324 # $main::locale->text('bin_list')
 
3325 # $main::locale->text('sales_quotation')
 
3326 # $main::locale->text('request_quotation')
 
3329   $main::lxdebug->enter_sub();
 
3332   my $dbh  = shift || $self->get_standard_dbh;
 
3334   if(!exists $self->{employee_id}) {
 
3335     &get_employee($self, $dbh);
 
3339    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3340    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3341   my @values = (conv_i($self->{id}), $self->{login},
 
3342                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3343   do_query($self, $dbh, $query, @values);
 
3347   $main::lxdebug->leave_sub();
 
3351   $main::lxdebug->enter_sub();
 
3353   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3354   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3355   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3358   if ($trans_id ne "") {
 
3360       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 | .
 
3361       qq|FROM history_erp h | .
 
3362       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3363       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3366     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3368     $sth->execute() || $self->dberror("$query");
 
3370     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3371       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3372       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3373       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3374       $tempArray[$i++] = $hash_ref;
 
3376     $main::lxdebug->leave_sub() and return \@tempArray
 
3377       if ($i > 0 && $tempArray[0] ne "");
 
3379   $main::lxdebug->leave_sub();
 
3383 sub update_defaults {
 
3384   $main::lxdebug->enter_sub();
 
3386   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3389   if ($provided_dbh) {
 
3390     $dbh = $provided_dbh;
 
3392     $dbh = $self->dbconnect_noauto($myconfig);
 
3394   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3395   my $sth   = $dbh->prepare($query);
 
3397   $sth->execute || $self->dberror($query);
 
3398   my ($var) = $sth->fetchrow_array;
 
3401   if ($var =~ m/\d+$/) {
 
3402     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3403     my $len_diff = length($var) - $-[0] - length($new_var);
 
3404     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3410   $query = qq|UPDATE defaults SET $fld = ?|;
 
3411   do_query($self, $dbh, $query, $var);
 
3413   if (!$provided_dbh) {
 
3418   $main::lxdebug->leave_sub();
 
3423 sub update_business {
 
3424   $main::lxdebug->enter_sub();
 
3426   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3429   if ($provided_dbh) {
 
3430     $dbh = $provided_dbh;
 
3432     $dbh = $self->dbconnect_noauto($myconfig);
 
3435     qq|SELECT customernumberinit FROM business
 
3436        WHERE id = ? FOR UPDATE|;
 
3437   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3439   return undef unless $var;
 
3441   if ($var =~ m/\d+$/) {
 
3442     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3443     my $len_diff = length($var) - $-[0] - length($new_var);
 
3444     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3450   $query = qq|UPDATE business
 
3451               SET customernumberinit = ?
 
3453   do_query($self, $dbh, $query, $var, $business_id);
 
3455   if (!$provided_dbh) {
 
3460   $main::lxdebug->leave_sub();
 
3465 sub get_partsgroup {
 
3466   $main::lxdebug->enter_sub();
 
3468   my ($self, $myconfig, $p) = @_;
 
3469   my $target = $p->{target} || 'all_partsgroup';
 
3471   my $dbh = $self->get_standard_dbh($myconfig);
 
3473   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3475                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3478   if ($p->{searchitems} eq 'part') {
 
3479     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3481   if ($p->{searchitems} eq 'service') {
 
3482     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3484   if ($p->{searchitems} eq 'assembly') {
 
3485     $query .= qq|WHERE p.assembly = '1'|;
 
3487   if ($p->{searchitems} eq 'labor') {
 
3488     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3491   $query .= qq|ORDER BY partsgroup|;
 
3494     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3495                 ORDER BY partsgroup|;
 
3498   if ($p->{language_code}) {
 
3499     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3500                   t.description AS translation
 
3502                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3503                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3504                 ORDER BY translation|;
 
3505     @values = ($p->{language_code});
 
3508   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3510   $main::lxdebug->leave_sub();
 
3513 sub get_pricegroup {
 
3514   $main::lxdebug->enter_sub();
 
3516   my ($self, $myconfig, $p) = @_;
 
3518   my $dbh = $self->get_standard_dbh($myconfig);
 
3520   my $query = qq|SELECT p.id, p.pricegroup
 
3523   $query .= qq| ORDER BY pricegroup|;
 
3526     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3527                 ORDER BY pricegroup|;
 
3530   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3532   $main::lxdebug->leave_sub();
 
3536 # usage $form->all_years($myconfig, [$dbh])
 
3537 # return list of all years where bookings found
 
3540   $main::lxdebug->enter_sub();
 
3542   my ($self, $myconfig, $dbh) = @_;
 
3544   $dbh ||= $self->get_standard_dbh($myconfig);
 
3547   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3548                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3549   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3551   if ($myconfig->{dateformat} =~ /^yy/) {
 
3552     ($startdate) = split /\W/, $startdate;
 
3553     ($enddate) = split /\W/, $enddate;
 
3555     (@_) = split /\W/, $startdate;
 
3557     (@_) = split /\W/, $enddate;
 
3562   $startdate = substr($startdate,0,4);
 
3563   $enddate = substr($enddate,0,4);
 
3565   while ($enddate >= $startdate) {
 
3566     push @all_years, $enddate--;
 
3571   $main::lxdebug->leave_sub();
 
3575   $main::lxdebug->enter_sub();
 
3579   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3581   $main::lxdebug->leave_sub();
 
3585   $main::lxdebug->enter_sub();
 
3590   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3592   $main::lxdebug->leave_sub();
 
3595 sub prepare_for_printing {
 
3598   $self->{templates} ||= $::myconfig{templates};
 
3599   $self->{formname}  ||= $self->{type};
 
3600   $self->{media}     ||= 'email';
 
3602   die "'media' other than 'email', 'file', 'printer' is not supported yet" unless $self->{media} =~ m/^(?:email|file|printer)$/;
 
3604   # set shipto from billto unless set
 
3605   my $has_shipto = any { $self->{"shipto$_"} } qw(name street zipcode city country contact);
 
3606   if (!$has_shipto && ($self->{type} =~ m/^(?:purchase_order|request_quotation)$/)) {
 
3607     $self->{shiptoname}   = $::myconfig{company};
 
3608     $self->{shiptostreet} = $::myconfig{address};
 
3611   my $language = $self->{language} ? '_' . $self->{language} : '';
 
3613   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
3614   if ($self->{language_id}) {
 
3615     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) = AM->get_language_details(\%::myconfig, $self, $self->{language_id});
 
3617     $output_dateformat   = $::myconfig{dateformat};
 
3618     $output_numberformat = $::myconfig{numberformat};
 
3619     $output_longdates    = 1;
 
3622   # Retrieve accounts for tax calculation.
 
3623   IC->retrieve_accounts(\%::myconfig, $self, map { $_ => $self->{"id_$_"} } 1 .. $self->{rowcount});
 
3625   if ($self->{type} =~ /_delivery_order$/) {
 
3626     DO->order_details();
 
3627   } elsif ($self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/) {
 
3628     OE->order_details(\%::myconfig, $self);
 
3630     IS->invoice_details(\%::myconfig, $self, $::locale);
 
3633   # Chose extension & set source file name
 
3634   my $extension = 'html';
 
3635   if ($self->{format} eq 'postscript') {
 
3636     $self->{postscript}   = 1;
 
3638   } elsif ($self->{"format"} =~ /pdf/) {
 
3640     $extension            = $self->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
3641   } elsif ($self->{"format"} =~ /opendocument/) {
 
3642     $self->{opendocument} = 1;
 
3644   } elsif ($self->{"format"} =~ /excel/) {
 
3649   my $printer_code    = '_' . $self->{printer_code} if $self->{printer_code};
 
3650   my $email_extension = '_email' if -f "$self->{templates}/$self->{formname}_email${language}${printer_code}.${extension}";
 
3651   $self->{IN}         = "$self->{formname}${email_extension}${language}${printer_code}.${extension}";
 
3654   $self->format_dates($output_dateformat, $output_longdates,
 
3655                       qw(invdate orddate quodate pldate duedate reqdate transdate shippingdate deliverydate validitydate paymentdate datepaid
 
3656                          transdate_oe deliverydate_oe employee_startdate employee_enddate),
 
3657                       grep({ /^(?:datepaid|transdate_oe|reqdate|deliverydate|deliverydate_oe|transdate)_\d+$/ } keys(%{$self})));
 
3659   $self->reformat_numbers($output_numberformat, 2,
 
3660                           qw(invtotal ordtotal quototal subtotal linetotal listprice sellprice netprice discount tax taxbase total paid),
 
3661                           grep({ /^(?:linetotal|listprice|sellprice|netprice|taxbase|discount|paid|subtotal|total|tax)_\d+$/ } keys(%{$self})));
 
3663   $self->reformat_numbers($output_numberformat, undef, qw(qty price_factor), grep({ /^qty_\d+$/} keys(%{$self})));
 
3665   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
3667   if (scalar @{ $cvar_date_fields }) {
 
3668     $self->format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
3671   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
3672     $self->reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
3679   my ($self, $dateformat, $longformat, @indices) = @_;
 
3681   $dateformat ||= $::myconfig{dateformat};
 
3683   foreach my $idx (@indices) {
 
3684     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3685       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3686         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $dateformat, $longformat);
 
3690     next unless defined $self->{$idx};
 
3692     if (!ref($self->{$idx})) {
 
3693       $self->{$idx} = $::locale->reformat_date(\%::myconfig, $self->{$idx}, $dateformat, $longformat);
 
3695     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3696       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3697         $self->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{$idx}->[$i], $dateformat, $longformat);
 
3703 sub reformat_numbers {
 
3704   my ($self, $numberformat, $places, @indices) = @_;
 
3706   return if !$numberformat || ($numberformat eq $::myconfig{numberformat});
 
3708   foreach my $idx (@indices) {
 
3709     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3710       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3711         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i]);
 
3715     next unless defined $self->{$idx};
 
3717     if (!ref($self->{$idx})) {
 
3718       $self->{$idx} = $self->parse_amount(\%::myconfig, $self->{$idx});
 
3720     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3721       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3722         $self->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{$idx}->[$i]);
 
3727   my $saved_numberformat    = $::myconfig{numberformat};
 
3728   $::myconfig{numberformat} = $numberformat;
 
3730   foreach my $idx (@indices) {
 
3731     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3732       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3733         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $places);
 
3737     next unless defined $self->{$idx};
 
3739     if (!ref($self->{$idx})) {
 
3740       $self->{$idx} = $self->format_amount(\%::myconfig, $self->{$idx}, $places);
 
3742     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3743       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3744         $self->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{$idx}->[$i], $places);
 
3749   $::myconfig{numberformat} = $saved_numberformat;
 
3758 SL::Form.pm - main data object.
 
3762 This is the main data object of Lx-Office.
 
3763 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3764 Points of interest for a beginner are:
 
3766  - $form->error            - renders a generic error in html. accepts an error message
 
3767  - $form->get_standard_dbh - returns a database connection for the
 
3769 =head1 SPECIAL FUNCTIONS
 
3771 =head2 C<_store_value()>
 
3773 parses a complex var name, and stores it in the form.
 
3776   $form->_store_value($key, $value);
 
3778 keys must start with a string, and can contain various tokens.
 
3779 supported key structures are:
 
3782   simple key strings work as expected
 
3787   separating two keys by a dot (.) will result in a hash lookup for the inner value
 
3788   this is similar to the behaviour of java and templating mechanisms.
 
3790   filter.description => $form->{filter}->{description}
 
3792 3. array+hashref access
 
3794   adding brackets ([]) before the dot will cause the next hash to be put into an array.
 
3795   using [+] instead of [] will force a new array index. this is useful for recurring
 
3796   data structures like part lists. put a [+] into the first varname, and use [] on the
 
3799   repeating these names in your template:
 
3802     invoice.items[].parts_id
 
3806     $form->{invoice}->{items}->[
 
3820   using brackets at the end of a name will result in a pure array to be created.
 
3821   note that you mustn't use [+], which is reserved for array+hash access and will
 
3822   result in undefined behaviour in array context.
 
3824   filter.status[]  => $form->{status}->[ val1, val2, ... ]
 
3826 =head2 C<update_business> PARAMS
 
3829  \%config,     - config hashref
 
3830  $business_id, - business id
 
3831  $dbh          - optional database handle
 
3833 handles business (thats customer/vendor types) sequences.
 
3835 special behaviour for empty strings in customerinitnumber field:
 
3836 will in this case not increase the value, and return undef.
 
3838 =head2 C<redirect_header> $url
 
3840 Generates a HTTP redirection header for the new C<$url>. Constructs an
 
3841 absolute URL including scheme, host name and port. If C<$url> is a
 
3842 relative URL then it is considered relative to Lx-Office base URL.
 
3844 This function C<die>s if headers have already been created with
 
3845 C<$::form-E<gt>header>.
 
3849   print $::form->redirect_header('oe.pl?action=edit&id=1234');
 
3850   print $::form->redirect_header('http://www.lx-office.org/');
 
3854 Generates a general purpose http/html header and includes most of the scripts
 
3855 and stylesheets needed. Stylesheets can be added with L<use_stylesheet>.
 
3857 Only one header will be generated. If the method was already called in this
 
3858 request it will not output anything and return undef. Also if no
 
3859 HTTP_USER_AGENT is found, no header is generated.
 
3861 Although header does not accept parameters itself, it will honor special
 
3862 hashkeys of its Form instance:
 
3870 If one of these is set, a http-equiv refresh is generated. Missing parameters
 
3871 default to 3 seconds and the refering url.
 
3875 Either a scalar or an array ref. Will be inlined into the header. Add
 
3876 stylesheets with the L<use_stylesheet> function.
 
3880 If true, a css snippet will be generated that sets the page in landscape mode.
 
3884 Used to override the default favicon.
 
3888 A html page title will be generated from this