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 #======================================================================
 
  58 use List::Util qw(first max min sum);
 
  59 use List::MoreUtils qw(any);
 
  66   disconnect_standard_dbh();
 
  69 sub disconnect_standard_dbh {
 
  70   return unless $standard_dbh;
 
  71   $standard_dbh->disconnect();
 
  76   $main::lxdebug->enter_sub(2);
 
  82   my @tokens = split /((?:\[\+?\])?(?:\.|$))/, $key;
 
  87      $curr = \ $self->{ shift @tokens };
 
  91     my $sep = shift @tokens;
 
  92     my $key = shift @tokens;
 
  94     $curr = \ $$curr->[++$#$$curr], next if $sep eq '[]';
 
  95     $curr = \ $$curr->[max 0, $#$$curr]  if $sep eq '[].';
 
  96     $curr = \ $$curr->[++$#$$curr]       if $sep eq '[+].';
 
  97     $curr = \ $$curr->{$key}
 
 102   $main::lxdebug->leave_sub(2);
 
 108   $main::lxdebug->enter_sub(2);
 
 113   my @pairs = split(/&/, $input);
 
 116     my ($key, $value) = split(/=/, $_, 2);
 
 117     $self->_store_value($self->unescape($key), $self->unescape($value)) if ($key);
 
 120   $main::lxdebug->leave_sub(2);
 
 123 sub _request_to_hash {
 
 124   $main::lxdebug->enter_sub(2);
 
 129   if (!$ENV{'CONTENT_TYPE'}
 
 130       || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
 
 132     $self->_input_to_hash($input);
 
 134     $main::lxdebug->leave_sub(2);
 
 138   my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
 
 140   my $boundary = '--' . $1;
 
 142   foreach my $line (split m/\n/, $input) {
 
 143     last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
 
 145     if (($line eq $boundary) || ($line eq "$boundary\r")) {
 
 146       ${ $previous } =~ s|\r?\n$|| if $previous;
 
 152       $content_type   = "text/plain";
 
 159     next unless $boundary_found;
 
 161     if (!$headers_done) {
 
 162       $line =~ s/[\r\n]*$//;
 
 169       if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
 
 170         if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
 
 172           substr $line, $-[0], $+[0] - $-[0], "";
 
 175         if ($line =~ m|name\s*=\s*"(.*?)"|i) {
 
 177           substr $line, $-[0], $+[0] - $-[0], "";
 
 180         $previous         = $self->_store_value($name, '') if ($name);
 
 181         $self->{FILENAME} = $filename if ($filename);
 
 186       if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
 
 193     next unless $previous;
 
 195     ${ $previous } .= "${line}\n";
 
 198   ${ $previous } =~ s|\r?\n$|| if $previous;
 
 200   $main::lxdebug->leave_sub(2);
 
 203 sub _recode_recursively {
 
 204   $main::lxdebug->enter_sub();
 
 205   my ($iconv, $param) = @_;
 
 207   if (any { ref $param eq $_ } qw(Form HASH)) {
 
 208     foreach my $key (keys %{ $param }) {
 
 209       if (!ref $param->{$key}) {
 
 210         # Workaround for a bug: converting $param->{$key} directly
 
 211         # leads to 'undef'. I don't know why. Converting a copy works,
 
 213         $param->{$key} = $iconv->convert("" . $param->{$key});
 
 215         _recode_recursively($iconv, $param->{$key});
 
 219   } elsif (ref $param eq 'ARRAY') {
 
 220     foreach my $idx (0 .. scalar(@{ $param }) - 1) {
 
 221       if (!ref $param->[$idx]) {
 
 222         # Workaround for a bug: converting $param->[$idx] directly
 
 223         # leads to 'undef'. I don't know why. Converting a copy works,
 
 225         $param->[$idx] = $iconv->convert("" . $param->[$idx]);
 
 227         _recode_recursively($iconv, $param->[$idx]);
 
 231   $main::lxdebug->leave_sub();
 
 235   $main::lxdebug->enter_sub();
 
 241   if ($LXDebug::watch_form) {
 
 242     require SL::Watchdog;
 
 243     tie %{ $self }, 'SL::Watchdog';
 
 248   $self->_input_to_hash($ENV{QUERY_STRING}) if $ENV{QUERY_STRING};
 
 249   $self->_input_to_hash($ARGV[0])           if @ARGV && $ARGV[0];
 
 251   if ($ENV{CONTENT_LENGTH}) {
 
 253     read STDIN, $content, $ENV{CONTENT_LENGTH};
 
 254     $self->_request_to_hash($content);
 
 257   my $db_charset   = $main::dbcharset;
 
 258   $db_charset    ||= Common::DEFAULT_CHARSET;
 
 260   if ($self->{INPUT_ENCODING}) {
 
 261     if (lc $self->{INPUT_ENCODING} ne lc $db_charset) {
 
 263       my $iconv = Text::Iconv->new($self->{INPUT_ENCODING}, $db_charset);
 
 265       _recode_recursively($iconv, $self);
 
 268     delete $self->{INPUT_ENCODING};
 
 271   $self->{action}  =  lc $self->{action};
 
 272   $self->{action}  =~ s/( |-|,|\#)/_/g;
 
 274   $self->{version} =  "2.6.1";
 
 276   $main::lxdebug->leave_sub();
 
 281 sub _flatten_variables_rec {
 
 282   $main::lxdebug->enter_sub(2);
 
 291   if ('' eq ref $curr->{$key}) {
 
 292     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
 
 294   } elsif ('HASH' eq ref $curr->{$key}) {
 
 295     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
 
 296       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
 
 300     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
 
 301       my $first_array_entry = 1;
 
 303       foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
 
 304         push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
 
 305         $first_array_entry = 0;
 
 310   $main::lxdebug->leave_sub(2);
 
 315 sub flatten_variables {
 
 316   $main::lxdebug->enter_sub(2);
 
 324     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 327   $main::lxdebug->leave_sub(2);
 
 332 sub flatten_standard_variables {
 
 333   $main::lxdebug->enter_sub(2);
 
 336   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
 
 340   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
 
 341     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 344   $main::lxdebug->leave_sub(2);
 
 350   $main::lxdebug->enter_sub();
 
 356   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 358   $main::lxdebug->leave_sub();
 
 362   $main::lxdebug->enter_sub(2);
 
 365   my $password      = $self->{password};
 
 367   $self->{password} = 'X' x 8;
 
 369   local $Data::Dumper::Sortkeys = 1;
 
 370   my $output                    = Dumper($self);
 
 372   $self->{password} = $password;
 
 374   $main::lxdebug->leave_sub(2);
 
 380   $main::lxdebug->enter_sub(2);
 
 382   my ($self, $str) = @_;
 
 384   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
 
 386   $main::lxdebug->leave_sub(2);
 
 392   $main::lxdebug->enter_sub(2);
 
 394   my ($self, $str) = @_;
 
 399   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
 401   $main::lxdebug->leave_sub(2);
 
 407   $main::lxdebug->enter_sub();
 
 408   my ($self, $str) = @_;
 
 410   if ($str && !ref($str)) {
 
 411     $str =~ s/\"/"/g;
 
 414   $main::lxdebug->leave_sub();
 
 420   $main::lxdebug->enter_sub();
 
 421   my ($self, $str) = @_;
 
 423   if ($str && !ref($str)) {
 
 424     $str =~ s/"/\"/g;
 
 427   $main::lxdebug->leave_sub();
 
 433   $main::lxdebug->enter_sub();
 
 437     map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
 
 439     for (sort keys %$self) {
 
 440       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
 
 441       print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
 
 444   $main::lxdebug->leave_sub();
 
 448   $main::lxdebug->enter_sub();
 
 450   $main::lxdebug->show_backtrace();
 
 452   my ($self, $msg) = @_;
 
 453   if ($ENV{HTTP_USER_AGENT}) {
 
 455     $self->show_generic_error($msg);
 
 458     print STDERR "Error: $msg\n";
 
 462   $main::lxdebug->leave_sub();
 
 466   $main::lxdebug->enter_sub();
 
 468   my ($self, $msg) = @_;
 
 470   if ($ENV{HTTP_USER_AGENT}) {
 
 473     if (!$self->{header}) {
 
 486     if ($self->{info_function}) {
 
 487       &{ $self->{info_function} }($msg);
 
 493   $main::lxdebug->leave_sub();
 
 496 # calculates the number of rows in a textarea based on the content and column number
 
 497 # can be capped with maxrows
 
 499   $main::lxdebug->enter_sub();
 
 500   my ($self, $str, $cols, $maxrows, $minrows) = @_;
 
 504   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
 
 507   $main::lxdebug->leave_sub();
 
 509   return max(min($rows, $maxrows), $minrows);
 
 513   $main::lxdebug->enter_sub();
 
 515   my ($self, $msg) = @_;
 
 517   $self->error("$msg\n" . $DBI::errstr);
 
 519   $main::lxdebug->leave_sub();
 
 523   $main::lxdebug->enter_sub();
 
 525   my ($self, $name, $msg) = @_;
 
 528   foreach my $part (split m/\./, $name) {
 
 529     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
 
 532     $curr = $curr->{$part};
 
 535   $main::lxdebug->leave_sub();
 
 538 sub _get_request_uri {
 
 541   return URI->new($ENV{HTTP_REFERER})->canonical() if $ENV{HTTP_X_FORWARDED_FOR};
 
 543   my $scheme =  $ENV{HTTPS} && (lc $ENV{HTTPS} eq 'on') ? 'https' : 'http';
 
 544   my $port   =  $ENV{SERVER_PORT} || '';
 
 545   $port      =  undef if (($scheme eq 'http' ) && ($port == 80))
 
 546                       || (($scheme eq 'https') && ($port == 443));
 
 548   my $uri    =  URI->new("${scheme}://");
 
 549   $uri->scheme($scheme);
 
 551   $uri->host($ENV{HTTP_HOST} || $ENV{SERVER_ADDR});
 
 552   $uri->path_query($ENV{REQUEST_URI});
 
 558 sub create_http_response {
 
 559   $main::lxdebug->enter_sub();
 
 564   my $cgi      = $main::cgi;
 
 565   $cgi       ||= CGI->new('');
 
 568   if (defined $main::auth) {
 
 569     my $uri      = $self->_get_request_uri;
 
 570     my @segments = $uri->path_segments;
 
 572     $uri->path_segments(@segments);
 
 574     my $session_cookie_value   = $main::auth->get_session_id();
 
 575     $session_cookie_value    ||= 'NO_SESSION';
 
 577     $session_cookie = $cgi->cookie('-name'   => $main::auth->get_session_cookie_name(),
 
 578                                    '-value'  => $session_cookie_value,
 
 579                                    '-path'   => $uri->path,
 
 580                                    '-secure' => $ENV{HTTPS});
 
 583   my %cgi_params = ('-type' => $params{content_type});
 
 584   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
 
 586   my $output = $cgi->header('-cookie' => $session_cookie,
 
 589   $main::lxdebug->leave_sub();
 
 596   $main::lxdebug->enter_sub();
 
 598   # extra code ist currently only used by menuv3 and menuv4 to set their css.
 
 599   # it is strongly deprecated, and will be changed in a future version.
 
 600   my ($self, $extra_code) = @_;
 
 602   if ($self->{header}) {
 
 603     $main::lxdebug->leave_sub();
 
 607   my ($stylesheet, $favicon, $pagelayout);
 
 609   if ($ENV{HTTP_USER_AGENT}) {
 
 612     if ($ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/) {
 
 613       # Only set the DOCTYPE for Internet Explorer. Other browsers have problems displaying the menu otherwise.
 
 614       $doctype = qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n|;
 
 617     my $stylesheets = "$self->{stylesheet} $self->{stylesheets}";
 
 619     $stylesheets =~ s|^\s*||;
 
 620     $stylesheets =~ s|\s*$||;
 
 621     foreach my $file (split m/\s+/, $stylesheets) {
 
 623       next if (! -f "css/$file");
 
 625       $stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|;
 
 628     $self->{favicon}    = "favicon.ico" unless $self->{favicon};
 
 630     if ($self->{favicon} && (-f "$self->{favicon}")) {
 
 632         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
 
 636     my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
 638     if ($self->{landscape}) {
 
 639       $pagelayout = qq|<style type="text/css">
 
 640                         \@page { size:landscape; }
 
 645     <script type="text/javascript">
 
 648         document.$self->{fokus}.focus();
 
 652     | if $self->{"fokus"};
 
 656     if ($self->{jsscript} == 1) {
 
 659         <script type="text/javascript" src="js/jquery.js"></script>
 
 660         <script type="text/javascript" src="js/common.js"></script>
 
 661         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
 
 662         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
 
 663         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
 
 664         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
 
 671       ? "$self->{title} - $self->{titlebar}"
 
 674     for my $item (@ { $self->{AJAX} || [] }) {
 
 675       $ajax .= $item->show_javascript();
 
 678     print $self->create_http_response('content_type' => 'text/html',
 
 679                                       'charset'      => $db_charset,);
 
 680     print qq|${doctype}<html>
 
 682   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
 
 683   <title>$self->{titlebar}</title>
 
 692   <link rel="stylesheet" href="css/jquery.autocomplete.css" type="text/css" />
 
 694   <meta name="robots" content="noindex,nofollow" />
 
 695   <script type="text/javascript" src="js/highlight_input.js"></script>
 
 697   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
 
 698   <script type="text/javascript" src="js/tabcontent.js">
 
 700   /***********************************************
 
 701    * Tab Content script v2.2- Â© Dynamic Drive DHTML code library (www.dynamicdrive.com)
 
 702    * This notice MUST stay intact for legal use
 
 703    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
 
 704    ***********************************************/
 
 715   $main::lxdebug->leave_sub();
 
 718 sub ajax_response_header {
 
 719   $main::lxdebug->enter_sub();
 
 723   my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
 724   my $cgi        = $main::cgi || CGI->new('');
 
 725   my $output     = $cgi->header('-charset' => $db_charset);
 
 727   $main::lxdebug->leave_sub();
 
 732 sub redirect_header {
 
 736   my $base_uri = $self->_get_request_uri;
 
 737   my $new_uri  = URI->new_abs($new_url, $base_uri);
 
 739   die "Headers already sent" if $::self->{header};
 
 742   my $cgi = $main::cgi || CGI->new('');
 
 743   return $cgi->redirect($new_uri);
 
 746 sub set_standard_title {
 
 747   $::lxdebug->enter_sub;
 
 750   $self->{titlebar}  = "Lx-Office " . $::locale->text('Version') . " $self->{version}";
 
 751   $self->{titlebar} .= "- $::myconfig{name}"   if $::myconfig{name};
 
 752   $self->{titlebar} .= "- $::myconfig{dbname}" if $::myconfig{name};
 
 754   $::lxdebug->leave_sub;
 
 757 sub _prepare_html_template {
 
 758   $main::lxdebug->enter_sub();
 
 760   my ($self, $file, $additional_params) = @_;
 
 763   if (!%::myconfig || !$::myconfig{"countrycode"}) {
 
 764     $language = $main::language;
 
 766     $language = $main::myconfig{"countrycode"};
 
 768   $language = "de" unless ($language);
 
 770   if (-f "templates/webpages/${file}.html") {
 
 771     if ((-f ".developer") && ((stat("templates/webpages/${file}.html"))[9] > (stat("locale/${language}/all"))[9])) {
 
 772       my $info = "Developer information: templates/webpages/${file}.html is newer than the translation file locale/${language}/all.\n" .
 
 773         "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 774       print(qq|<pre>$info</pre>|);
 
 778     $file = "templates/webpages/${file}.html";
 
 781     my $info = "Web page template '${file}' not found.\n" .
 
 782       "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 783     print(qq|<pre>$info</pre>|);
 
 787   if ($self->{"DEBUG"}) {
 
 788     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
 
 791   if ($additional_params->{"DEBUG"}) {
 
 792     $additional_params->{"DEBUG"} =
 
 793       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
 
 796   if (%main::myconfig) {
 
 797     map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
 
 798     my $jsc_dateformat = $main::myconfig{"dateformat"};
 
 799     $jsc_dateformat =~ s/d+/\%d/gi;
 
 800     $jsc_dateformat =~ s/m+/\%m/gi;
 
 801     $jsc_dateformat =~ s/y+/\%Y/gi;
 
 802     $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
 
 803     $additional_params->{"myconfig"} ||= \%::myconfig;
 
 806   $additional_params->{"conf_dbcharset"}              = $main::dbcharset;
 
 807   $additional_params->{"conf_webdav"}                 = $main::webdav;
 
 808   $additional_params->{"conf_lizenzen"}               = $main::lizenzen;
 
 809   $additional_params->{"conf_latex_templates"}        = $main::latex;
 
 810   $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
 
 811   $additional_params->{"conf_vertreter"}              = $main::vertreter;
 
 812   $additional_params->{"conf_show_best_before"}       = $main::show_best_before;
 
 814   if (%main::debug_options) {
 
 815     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
 
 818   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 819     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 820       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 824   $main::lxdebug->leave_sub();
 
 829 sub parse_html_template {
 
 830   $main::lxdebug->enter_sub();
 
 832   my ($self, $file, $additional_params) = @_;
 
 834   $additional_params ||= { };
 
 836   $file = $self->_prepare_html_template($file, $additional_params);
 
 838   my $template = Template->new({ 'INTERPOLATE'  => 0,
 
 842                                  'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 843                                  'INCLUDE_PATH' => '.:templates/webpages',
 
 846   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 848   my $in = IO::File->new($file, 'r');
 
 851     print STDERR "Error opening template file: $!";
 
 852     $main::lxdebug->leave_sub();
 
 856   my $input = join('', <$in>);
 
 860   if (!$template->process(\$input, $additional_params, \$output)) {
 
 861     print STDERR $template->error();
 
 864   $main::lxdebug->leave_sub();
 
 869 sub show_generic_error {
 
 870   $main::lxdebug->enter_sub();
 
 872   my ($self, $error, %params) = @_;
 
 875     'title_error' => $params{title},
 
 876     'label_error' => $error,
 
 879   if ($params{action}) {
 
 882     map { delete($self->{$_}); } qw(action);
 
 883     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 885     $add_params->{SHOW_BUTTON}  = 1;
 
 886     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 887     $add_params->{VARIABLES}    = \@vars;
 
 889   } elsif ($params{back_button}) {
 
 890     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 893   $self->{title} = $params{title} if $params{title};
 
 896   print $self->parse_html_template("generic/error", $add_params);
 
 898   print STDERR "Error: $error\n";
 
 900   $main::lxdebug->leave_sub();
 
 905 sub show_generic_information {
 
 906   $main::lxdebug->enter_sub();
 
 908   my ($self, $text, $title) = @_;
 
 911     'title_information' => $title,
 
 912     'label_information' => $text,
 
 915   $self->{title} = $title if ($title);
 
 918   print $self->parse_html_template("generic/information", $add_params);
 
 920   $main::lxdebug->leave_sub();
 
 925 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 926 # changed it to accept an arbitrary number of triggers - sschoeling
 
 928   $main::lxdebug->enter_sub();
 
 931   my $myconfig = shift;
 
 934   # set dateform for jsscript
 
 937     "dd.mm.yy" => "%d.%m.%Y",
 
 938     "dd-mm-yy" => "%d-%m-%Y",
 
 939     "dd/mm/yy" => "%d/%m/%Y",
 
 940     "mm/dd/yy" => "%m/%d/%Y",
 
 941     "mm-dd-yy" => "%m-%d-%Y",
 
 942     "yyyy-mm-dd" => "%Y-%m-%d",
 
 945   my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
 
 946     $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
 
 953       inputField : "| . (shift) . qq|",
 
 954       ifFormat :"$ifFormat",
 
 955       align : "| .  (shift) . qq|",
 
 956       button : "| . (shift) . qq|"
 
 962        <script type="text/javascript">
 
 963        <!--| . join("", @triggers) . qq|//-->
 
 967   $main::lxdebug->leave_sub();
 
 970 }    #end sub write_trigger
 
 973   $main::lxdebug->enter_sub();
 
 975   my ($self, $msg) = @_;
 
 977   if (!$self->{callback}) {
 
 983 #  my ($script, $argv) = split(/\?/, $self->{callback}, 2);
 
 984 #  $script =~ s|.*/||;
 
 985 #  $script =~ s|[^a-zA-Z0-9_\.]||g;
 
 986 #  exec("perl", "$script", $argv);
 
 988   print $::form->redirect_header($self->{callback});
 
 990   $main::lxdebug->leave_sub();
 
 993 # sort of columns removed - empty sub
 
 995   $main::lxdebug->enter_sub();
 
 997   my ($self, @columns) = @_;
 
 999   $main::lxdebug->leave_sub();
 
1005   $main::lxdebug->enter_sub(2);
 
1007   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
1009   if ($amount eq "") {
 
1013   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
1015   my $neg = ($amount =~ s/^-//);
 
1016   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
1018   if (defined($places) && ($places ne '')) {
 
1024         my ($actual_places) = ($amount =~ /\.(\d+)/);
 
1025         $actual_places = length($actual_places);
 
1026         $places = $actual_places > $places ? $actual_places : $places;
 
1029     $amount = $self->round_amount($amount, $places);
 
1032   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
1033   my @p = split(/\./, $amount); # split amount at decimal point
 
1035   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
1038   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
1041     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
1042     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
1043                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
1047   $main::lxdebug->leave_sub(2);
 
1051 sub format_amount_units {
 
1052   $main::lxdebug->enter_sub();
 
1057   my $myconfig         = \%main::myconfig;
 
1058   my $amount           = $params{amount} * 1;
 
1059   my $places           = $params{places};
 
1060   my $part_unit_name   = $params{part_unit};
 
1061   my $amount_unit_name = $params{amount_unit};
 
1062   my $conv_units       = $params{conv_units};
 
1063   my $max_places       = $params{max_places};
 
1065   if (!$part_unit_name) {
 
1066     $main::lxdebug->leave_sub();
 
1070   AM->retrieve_all_units();
 
1071   my $all_units        = $main::all_units;
 
1073   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
1074     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
1077   if (!scalar @{ $conv_units }) {
 
1078     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
1079     $main::lxdebug->leave_sub();
 
1083   my $part_unit  = $all_units->{$part_unit_name};
 
1084   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
1086   $amount       *= $conv_unit->{factor};
 
1091   foreach my $unit (@$conv_units) {
 
1092     my $last = $unit->{name} eq $part_unit->{name};
 
1094       $num     = int($amount / $unit->{factor});
 
1095       $amount -= $num * $unit->{factor};
 
1098     if ($last ? $amount : $num) {
 
1099       push @values, { "unit"   => $unit->{name},
 
1100                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
1101                       "places" => $last ? $places : 0 };
 
1108     push @values, { "unit"   => $part_unit_name,
 
1113   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
1115   $main::lxdebug->leave_sub();
 
1121   $main::lxdebug->enter_sub(2);
 
1126   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
1127   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
1128   $input =~ s/\#\#/\#/g;
 
1130   $main::lxdebug->leave_sub(2);
 
1138   $main::lxdebug->enter_sub(2);
 
1140   my ($self, $myconfig, $amount) = @_;
 
1142   if (   ($myconfig->{numberformat} eq '1.000,00')
 
1143       || ($myconfig->{numberformat} eq '1000,00')) {
 
1148   if ($myconfig->{numberformat} eq "1'000.00") {
 
1154   $main::lxdebug->leave_sub(2);
 
1156   return ($amount * 1);
 
1160   $main::lxdebug->enter_sub(2);
 
1162   my ($self, $amount, $places) = @_;
 
1165   # Rounding like "Kaufmannsrunden" (see http://de.wikipedia.org/wiki/Rundung )
 
1167   # Round amounts to eight places before rounding to the requested
 
1168   # number of places. This gets rid of errors due to internal floating
 
1169   # point representation.
 
1170   $amount       = $self->round_amount($amount, 8) if $places < 8;
 
1171   $amount       = $amount * (10**($places));
 
1172   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1174   $main::lxdebug->leave_sub(2);
 
1176   return $round_amount;
 
1180 sub parse_template {
 
1181   $main::lxdebug->enter_sub();
 
1183   my ($self, $myconfig, $userspath) = @_;
 
1184   my ($template, $out);
 
1188   $self->{"cwd"} = getcwd();
 
1189   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1193   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1194     $template       = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1195     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
1197   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1198     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1199     $template         = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1200     $ext_for_format   = 'pdf';
 
1202   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1203     $template       = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1204     $ext_for_format = 'html';
 
1206   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1207     $template       = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1208     $ext_for_format = 'xml';
 
1210   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
 
1211     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1213   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
 
1214     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1216   } elsif ( $self->{"format"} =~ /excel/i ) {
 
1217     $template = ExcelTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1218     $ext_for_format = 'xls';
 
1220   } elsif ( defined $self->{'format'}) {
 
1221     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1223   } elsif ( $self->{'format'} eq '' ) {
 
1224     $self->error("No Outputformat given: $self->{'format'}");
 
1226   } else { #Catch the rest
 
1227     $self->error("Outputformat not defined: $self->{'format'}");
 
1230   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1231   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1233   if (!$self->{employee_id}) {
 
1234     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
 
1237   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
 
1239   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1241   # OUT is used for the media, screen, printer, email
 
1242   # for postscript we store a copy in a temporary file
 
1244   my $prepend_userspath;
 
1246   if (!$self->{tmpfile}) {
 
1247     $self->{tmpfile}   = "${fileid}.$self->{IN}";
 
1248     $prepend_userspath = 1;
 
1251   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
 
1253   $self->{tmpfile} =~ s|.*/||;
 
1254   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
 
1255   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
 
1257   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1258     $out = $self->{OUT};
 
1259     $self->{OUT} = ">$self->{tmpfile}";
 
1265     open OUT, "$self->{OUT}" or $self->error("$self->{OUT} : $!");
 
1266     $result = $template->parse(*OUT);
 
1271     $result = $template->parse(*STDOUT);
 
1276     $self->error("$self->{IN} : " . $template->get_error());
 
1279   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1281     if ($self->{media} eq 'email') {
 
1283       my $mail = new Mailer;
 
1285       map { $mail->{$_} = $self->{$_} }
 
1286         qw(cc bcc subject message version format);
 
1287       $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
1288       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1289       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1290       $mail->{fileid} = "$fileid.";
 
1291       $myconfig->{signature} =~ s/\r//g;
 
1293       # if we send html or plain text inline
 
1294       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1295         $mail->{contenttype} = "text/html";
 
1297         $mail->{message}       =~ s/\r//g;
 
1298         $mail->{message}       =~ s/\n/<br>\n/g;
 
1299         $myconfig->{signature} =~ s/\n/<br>\n/g;
 
1300         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
1302         open(IN, $self->{tmpfile})
 
1303           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1305           $mail->{message} .= $_;
 
1312         if (!$self->{"do_not_attach"}) {
 
1313           my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1314           $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1315           $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1316                                      "name"     => $attachment_name }];
 
1319         $mail->{message}  =~ s/\r//g;
 
1320         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1324       my $err = $mail->send();
 
1325       $self->error($self->cleanup . "$err") if ($err);
 
1329       $self->{OUT} = $out;
 
1331       my $numbytes = (-s $self->{tmpfile});
 
1332       open(IN, $self->{tmpfile})
 
1333         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1335       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1337       chdir("$self->{cwd}");
 
1338       #print(STDERR "Kopien $self->{copies}\n");
 
1339       #print(STDERR "OUT $self->{OUT}\n");
 
1340       for my $i (1 .. $self->{copies}) {
 
1342           open OUT, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1343           print OUT while <IN>;
 
1348           $self->{attachment_filename} = ($self->{attachment_filename})
 
1349                                        ? $self->{attachment_filename}
 
1350                                        : $self->generate_attachment_filename();
 
1352           # launch application
 
1353           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1354 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1355 Content-Length: $numbytes
 
1359           $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
 
1370   chdir("$self->{cwd}");
 
1371   $main::lxdebug->leave_sub();
 
1374 sub get_formname_translation {
 
1375   $main::lxdebug->enter_sub();
 
1376   my ($self, $formname) = @_;
 
1378   $formname ||= $self->{formname};
 
1380   my %formname_translations = (
 
1381     bin_list                => $main::locale->text('Bin List'),
 
1382     credit_note             => $main::locale->text('Credit Note'),
 
1383     invoice                 => $main::locale->text('Invoice'),
 
1384     packing_list            => $main::locale->text('Packing List'),
 
1385     pick_list               => $main::locale->text('Pick List'),
 
1386     proforma                => $main::locale->text('Proforma Invoice'),
 
1387     purchase_order          => $main::locale->text('Purchase Order'),
 
1388     request_quotation       => $main::locale->text('RFQ'),
 
1389     sales_order             => $main::locale->text('Confirmation'),
 
1390     sales_quotation         => $main::locale->text('Quotation'),
 
1391     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1392     storno_packing_list     => $main::locale->text('Storno Packing List'),
 
1393     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1394     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1395     dunning                 => $main::locale->text('Dunning'),
 
1398   $main::lxdebug->leave_sub();
 
1399   return $formname_translations{$formname}
 
1402 sub get_number_prefix_for_type {
 
1403   $main::lxdebug->enter_sub();
 
1407       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1408     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1409     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1412   $main::lxdebug->leave_sub();
 
1416 sub get_extension_for_format {
 
1417   $main::lxdebug->enter_sub();
 
1420   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1421                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1422                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1423                 : $self->{format} =~ /excel/i        ? ".xls"
 
1424                 : $self->{format} =~ /html/i         ? ".html"
 
1427   $main::lxdebug->leave_sub();
 
1431 sub generate_attachment_filename {
 
1432   $main::lxdebug->enter_sub();
 
1435   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1436   my $prefix              = $self->get_number_prefix_for_type();
 
1438   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1439     $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1441   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1442     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1445     $attachment_filename = "";
 
1448   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1449   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1451   $main::lxdebug->leave_sub();
 
1452   return $attachment_filename;
 
1455 sub generate_email_subject {
 
1456   $main::lxdebug->enter_sub();
 
1459   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1460   my $prefix  = $self->get_number_prefix_for_type();
 
1462   if ($subject && $self->{"${prefix}number"}) {
 
1463     $subject .= " " . $self->{"${prefix}number"}
 
1466   $main::lxdebug->leave_sub();
 
1471   $main::lxdebug->enter_sub();
 
1475   chdir("$self->{tmpdir}");
 
1478   if (-f "$self->{tmpfile}.err") {
 
1479     open(FH, "$self->{tmpfile}.err");
 
1484   if ($self->{tmpfile} && ! $::keep_temp_files) {
 
1485     $self->{tmpfile} =~ s|.*/||g;
 
1487     $self->{tmpfile} =~ s/\.\w+$//g;
 
1488     my $tmpfile = $self->{tmpfile};
 
1489     unlink(<$tmpfile.*>);
 
1492   chdir("$self->{cwd}");
 
1494   $main::lxdebug->leave_sub();
 
1500   $main::lxdebug->enter_sub();
 
1502   my ($self, $date, $myconfig) = @_;
 
1505   if ($date && $date =~ /\D/) {
 
1507     if ($myconfig->{dateformat} =~ /^yy/) {
 
1508       ($yy, $mm, $dd) = split /\D/, $date;
 
1510     if ($myconfig->{dateformat} =~ /^mm/) {
 
1511       ($mm, $dd, $yy) = split /\D/, $date;
 
1513     if ($myconfig->{dateformat} =~ /^dd/) {
 
1514       ($dd, $mm, $yy) = split /\D/, $date;
 
1519     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1520     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1522     $dd = "0$dd" if ($dd < 10);
 
1523     $mm = "0$mm" if ($mm < 10);
 
1525     $date = "$yy$mm$dd";
 
1528   $main::lxdebug->leave_sub();
 
1533 # Database routines used throughout
 
1536   $main::lxdebug->enter_sub(2);
 
1538   my ($self, $myconfig) = @_;
 
1540   # connect to database
 
1542     DBI->connect($myconfig->{dbconnect},
 
1543                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
 
1547   if ($myconfig->{dboptions}) {
 
1548     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1551   $main::lxdebug->leave_sub(2);
 
1556 sub dbconnect_noauto {
 
1557   $main::lxdebug->enter_sub();
 
1559   my ($self, $myconfig) = @_;
 
1561   # connect to database
 
1563     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
 
1564                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
 
1568   if ($myconfig->{dboptions}) {
 
1569     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1572   $main::lxdebug->leave_sub();
 
1577 sub get_standard_dbh {
 
1578   $main::lxdebug->enter_sub(2);
 
1580   my ($self, $myconfig) = @_;
 
1582   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1583     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1584     undef $standard_dbh;
 
1587   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1589   $main::lxdebug->leave_sub(2);
 
1591   return $standard_dbh;
 
1595   $main::lxdebug->enter_sub();
 
1597   my ($self, $date, $myconfig) = @_;
 
1598   my $dbh = $self->dbconnect($myconfig);
 
1600   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1601   my $sth = prepare_execute_query($self, $dbh, $query, $date);
 
1602   my ($closed) = $sth->fetchrow_array;
 
1604   $main::lxdebug->leave_sub();
 
1609 sub update_balance {
 
1610   $main::lxdebug->enter_sub();
 
1612   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1614   # if we have a value, go do it
 
1617     # retrieve balance from table
 
1618     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1619     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1620     my ($balance) = $sth->fetchrow_array;
 
1626     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1627     do_query($self, $dbh, $query, @values);
 
1629   $main::lxdebug->leave_sub();
 
1632 sub update_exchangerate {
 
1633   $main::lxdebug->enter_sub();
 
1635   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1637   # some sanity check for currency
 
1639     $main::lxdebug->leave_sub();
 
1642   $query = qq|SELECT curr FROM defaults|;
 
1644   my ($currency) = selectrow_query($self, $dbh, $query);
 
1645   my ($defaultcurrency) = split m/:/, $currency;
 
1648   if ($curr eq $defaultcurrency) {
 
1649     $main::lxdebug->leave_sub();
 
1653   $query = qq|SELECT e.curr FROM exchangerate e
 
1654                  WHERE e.curr = ? AND e.transdate = ?
 
1656   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1665   $buy = conv_i($buy, "NULL");
 
1666   $sell = conv_i($sell, "NULL");
 
1669   if ($buy != 0 && $sell != 0) {
 
1670     $set = "buy = $buy, sell = $sell";
 
1671   } elsif ($buy != 0) {
 
1672     $set = "buy = $buy";
 
1673   } elsif ($sell != 0) {
 
1674     $set = "sell = $sell";
 
1677   if ($sth->fetchrow_array) {
 
1678     $query = qq|UPDATE exchangerate
 
1684     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1685                 VALUES (?, $buy, $sell, ?)|;
 
1688   do_query($self, $dbh, $query, $curr, $transdate);
 
1690   $main::lxdebug->leave_sub();
 
1693 sub save_exchangerate {
 
1694   $main::lxdebug->enter_sub();
 
1696   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1698   my $dbh = $self->dbconnect($myconfig);
 
1702   $buy  = $rate if $fld eq 'buy';
 
1703   $sell = $rate if $fld eq 'sell';
 
1706   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1711   $main::lxdebug->leave_sub();
 
1714 sub get_exchangerate {
 
1715   $main::lxdebug->enter_sub();
 
1717   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1720   unless ($transdate) {
 
1721     $main::lxdebug->leave_sub();
 
1725   $query = qq|SELECT curr FROM defaults|;
 
1727   my ($currency) = selectrow_query($self, $dbh, $query);
 
1728   my ($defaultcurrency) = split m/:/, $currency;
 
1730   if ($currency eq $defaultcurrency) {
 
1731     $main::lxdebug->leave_sub();
 
1735   $query = qq|SELECT e.$fld FROM exchangerate e
 
1736                  WHERE e.curr = ? AND e.transdate = ?|;
 
1737   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1741   $main::lxdebug->leave_sub();
 
1743   return $exchangerate;
 
1746 sub check_exchangerate {
 
1747   $main::lxdebug->enter_sub();
 
1749   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1751   if ($fld !~/^buy|sell$/) {
 
1752     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1755   unless ($transdate) {
 
1756     $main::lxdebug->leave_sub();
 
1760   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1762   if ($currency eq $defaultcurrency) {
 
1763     $main::lxdebug->leave_sub();
 
1767   my $dbh   = $self->get_standard_dbh($myconfig);
 
1768   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1769                  WHERE e.curr = ? AND e.transdate = ?|;
 
1771   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1773   $main::lxdebug->leave_sub();
 
1775   return $exchangerate;
 
1778 sub get_all_currencies {
 
1779   $main::lxdebug->enter_sub();
 
1781   my ($self, $myconfig) = @_;
 
1782   my $dbh = $self->get_standard_dbh($myconfig);
 
1784   my $query = qq|SELECT curr FROM defaults|;
 
1786   my ($curr)     = selectrow_query($self, $dbh, $query);
 
1787   my @currencies = grep { $_ } map { s/\s//g; $_ } split m/:/, $curr;
 
1789   $main::lxdebug->leave_sub();
 
1794 sub get_default_currency {
 
1795   $main::lxdebug->enter_sub();
 
1797   my ($self, $myconfig) = @_;
 
1798   my @currencies        = $self->get_all_currencies($myconfig);
 
1800   $main::lxdebug->leave_sub();
 
1802   return $currencies[0];
 
1805 sub set_payment_options {
 
1806   $main::lxdebug->enter_sub();
 
1808   my ($self, $myconfig, $transdate) = @_;
 
1810   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1812   my $dbh = $self->get_standard_dbh($myconfig);
 
1815     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
 
1816     qq|FROM payment_terms p | .
 
1819   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1820    $self->{payment_terms}) =
 
1821      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1823   if ($transdate eq "") {
 
1824     if ($self->{invdate}) {
 
1825       $transdate = $self->{invdate};
 
1827       $transdate = $self->{transdate};
 
1832     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1833     qq|FROM payment_terms|;
 
1834   ($self->{netto_date}, $self->{skonto_date}) =
 
1835     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1837   my ($invtotal, $total);
 
1838   my (%amounts, %formatted_amounts);
 
1840   if ($self->{type} =~ /_order$/) {
 
1841     $amounts{invtotal} = $self->{ordtotal};
 
1842     $amounts{total}    = $self->{ordtotal};
 
1844   } elsif ($self->{type} =~ /_quotation$/) {
 
1845     $amounts{invtotal} = $self->{quototal};
 
1846     $amounts{total}    = $self->{quototal};
 
1849     $amounts{invtotal} = $self->{invtotal};
 
1850     $amounts{total}    = $self->{total};
 
1852   $amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto};
 
1854   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1856   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1857   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1858   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1860   foreach (keys %amounts) {
 
1861     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1862     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1865   if ($self->{"language_id"}) {
 
1867       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1868       qq|FROM translation_payment_terms t | .
 
1869       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1870       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
 
1871     my ($description_long, $output_numberformat, $output_dateformat,
 
1872       $output_longdates) =
 
1873       selectrow_query($self, $dbh, $query,
 
1874                       $self->{"language_id"}, $self->{"payment_id"});
 
1876     $self->{payment_terms} = $description_long if ($description_long);
 
1878     if ($output_dateformat) {
 
1879       foreach my $key (qw(netto_date skonto_date)) {
 
1881           $main::locale->reformat_date($myconfig, $self->{$key},
 
1887     if ($output_numberformat &&
 
1888         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1889       my $saved_numberformat = $myconfig->{"numberformat"};
 
1890       $myconfig->{"numberformat"} = $output_numberformat;
 
1891       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1892       $myconfig->{"numberformat"} = $saved_numberformat;
 
1896   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1897   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1898   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1899   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1900   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1901   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1902   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1904   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1906   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
 
1908   $main::lxdebug->leave_sub();
 
1912 sub get_template_language {
 
1913   $main::lxdebug->enter_sub();
 
1915   my ($self, $myconfig) = @_;
 
1917   my $template_code = "";
 
1919   if ($self->{language_id}) {
 
1920     my $dbh = $self->get_standard_dbh($myconfig);
 
1921     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1922     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1925   $main::lxdebug->leave_sub();
 
1927   return $template_code;
 
1930 sub get_printer_code {
 
1931   $main::lxdebug->enter_sub();
 
1933   my ($self, $myconfig) = @_;
 
1935   my $template_code = "";
 
1937   if ($self->{printer_id}) {
 
1938     my $dbh = $self->get_standard_dbh($myconfig);
 
1939     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1940     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1943   $main::lxdebug->leave_sub();
 
1945   return $template_code;
 
1949   $main::lxdebug->enter_sub();
 
1951   my ($self, $myconfig) = @_;
 
1953   my $template_code = "";
 
1955   if ($self->{shipto_id}) {
 
1956     my $dbh = $self->get_standard_dbh($myconfig);
 
1957     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1958     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1959     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1962   $main::lxdebug->leave_sub();
 
1966   $main::lxdebug->enter_sub();
 
1968   my ($self, $dbh, $id, $module) = @_;
 
1973   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
1974                        contact phone fax email)) {
 
1975     if ($self->{"shipto$item"}) {
 
1976       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1978     push(@values, $self->{"shipto${item}"});
 
1982     if ($self->{shipto_id}) {
 
1983       my $query = qq|UPDATE shipto set
 
1985                        shiptodepartment_1 = ?,
 
1986                        shiptodepartment_2 = ?,
 
1995                      WHERE shipto_id = ?|;
 
1996       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1998       my $query = qq|SELECT * FROM shipto
 
1999                      WHERE shiptoname = ? AND
 
2000                        shiptodepartment_1 = ? AND
 
2001                        shiptodepartment_2 = ? AND
 
2002                        shiptostreet = ? AND
 
2003                        shiptozipcode = ? AND
 
2005                        shiptocountry = ? AND
 
2006                        shiptocontact = ? AND
 
2012       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
2015           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
2016                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
2017                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
 
2018              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
2019         do_query($self, $dbh, $query, $id, @values, $module);
 
2024   $main::lxdebug->leave_sub();
 
2028   $main::lxdebug->enter_sub();
 
2030   my ($self, $dbh) = @_;
 
2032   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
2034   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
2035   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
2036   $self->{"employee_id"} *= 1;
 
2038   $main::lxdebug->leave_sub();
 
2041 sub get_employee_data {
 
2042   $main::lxdebug->enter_sub();
 
2047   Common::check_params(\%params, qw(prefix));
 
2048   Common::check_params_x(\%params, qw(id));
 
2051     $main::lxdebug->leave_sub();
 
2055   my $myconfig = \%main::myconfig;
 
2056   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
2058   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
 
2061     my $user = User->new($login);
 
2062     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
 
2064     $self->{$params{prefix} . '_login'}   = $login;
 
2065     $self->{$params{prefix} . '_name'}  ||= $login;
 
2068   $main::lxdebug->leave_sub();
 
2072   $main::lxdebug->enter_sub();
 
2074   my ($self, $myconfig, $reference_date) = @_;
 
2076   $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
 
2078   my $dbh         = $self->get_standard_dbh($myconfig);
 
2079   my $query       = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
 
2080   my ($duedate)   = selectrow_query($self, $dbh, $query, $self->{payment_id});
 
2082   $main::lxdebug->leave_sub();
 
2088   $main::lxdebug->enter_sub();
 
2090   my ($self, $dbh, $id, $key) = @_;
 
2092   $key = "all_contacts" unless ($key);
 
2096     $main::lxdebug->leave_sub();
 
2101     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
2102     qq|FROM contacts | .
 
2103     qq|WHERE cp_cv_id = ? | .
 
2104     qq|ORDER BY lower(cp_name)|;
 
2106   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
2108   $main::lxdebug->leave_sub();
 
2112   $main::lxdebug->enter_sub();
 
2114   my ($self, $dbh, $key) = @_;
 
2116   my ($all, $old_id, $where, @values);
 
2118   if (ref($key) eq "HASH") {
 
2121     $key = "ALL_PROJECTS";
 
2123     foreach my $p (keys(%{$params})) {
 
2125         $all = $params->{$p};
 
2126       } elsif ($p eq "old_id") {
 
2127         $old_id = $params->{$p};
 
2128       } elsif ($p eq "key") {
 
2129         $key = $params->{$p};
 
2135     $where = "WHERE active ";
 
2137       if (ref($old_id) eq "ARRAY") {
 
2138         my @ids = grep({ $_ } @{$old_id});
 
2140           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
2141           push(@values, @ids);
 
2144         $where .= " OR (id = ?) ";
 
2145         push(@values, $old_id);
 
2151     qq|SELECT id, projectnumber, description, active | .
 
2154     qq|ORDER BY lower(projectnumber)|;
 
2156   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2158   $main::lxdebug->leave_sub();
 
2162   $main::lxdebug->enter_sub();
 
2164   my ($self, $dbh, $vc_id, $key) = @_;
 
2166   $key = "all_shipto" unless ($key);
 
2169     # get shipping addresses
 
2170     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2172     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2178   $main::lxdebug->leave_sub();
 
2182   $main::lxdebug->enter_sub();
 
2184   my ($self, $dbh, $key) = @_;
 
2186   $key = "all_printers" unless ($key);
 
2188   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2190   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2192   $main::lxdebug->leave_sub();
 
2196   $main::lxdebug->enter_sub();
 
2198   my ($self, $dbh, $params) = @_;
 
2201   $key = $params->{key};
 
2202   $key = "all_charts" unless ($key);
 
2204   my $transdate = quote_db_date($params->{transdate});
 
2207     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2209     qq|LEFT JOIN taxkeys tk ON | .
 
2210     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2211     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2212     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2213     qq|ORDER BY c.accno|;
 
2215   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2217   $main::lxdebug->leave_sub();
 
2220 sub _get_taxcharts {
 
2221   $main::lxdebug->enter_sub();
 
2223   my ($self, $dbh, $params) = @_;
 
2225   my $key = "all_taxcharts";
 
2228   if (ref $params eq 'HASH') {
 
2229     $key = $params->{key} if ($params->{key});
 
2230     if ($params->{module} eq 'AR') {
 
2231       push @where, 'taxkey NOT IN (8, 9, 18, 19)';
 
2233     } elsif ($params->{module} eq 'AP') {
 
2234       push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
 
2241   my $where = ' WHERE ' . join(' AND ', map { "($_)" } @where) if (@where);
 
2243   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
 
2245   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2247   $main::lxdebug->leave_sub();
 
2251   $main::lxdebug->enter_sub();
 
2253   my ($self, $dbh, $key) = @_;
 
2255   $key = "all_taxzones" unless ($key);
 
2257   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2259   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2261   $main::lxdebug->leave_sub();
 
2264 sub _get_employees {
 
2265   $main::lxdebug->enter_sub();
 
2267   my ($self, $dbh, $default_key, $key) = @_;
 
2269   $key = $default_key unless ($key);
 
2270   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2272   $main::lxdebug->leave_sub();
 
2275 sub _get_business_types {
 
2276   $main::lxdebug->enter_sub();
 
2278   my ($self, $dbh, $key) = @_;
 
2280   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2281   $options->{key} ||= "all_business_types";
 
2284   if (exists $options->{salesman}) {
 
2285     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2288   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2290   $main::lxdebug->leave_sub();
 
2293 sub _get_languages {
 
2294   $main::lxdebug->enter_sub();
 
2296   my ($self, $dbh, $key) = @_;
 
2298   $key = "all_languages" unless ($key);
 
2300   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2302   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2304   $main::lxdebug->leave_sub();
 
2307 sub _get_dunning_configs {
 
2308   $main::lxdebug->enter_sub();
 
2310   my ($self, $dbh, $key) = @_;
 
2312   $key = "all_dunning_configs" unless ($key);
 
2314   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2316   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2318   $main::lxdebug->leave_sub();
 
2321 sub _get_currencies {
 
2322 $main::lxdebug->enter_sub();
 
2324   my ($self, $dbh, $key) = @_;
 
2326   $key = "all_currencies" unless ($key);
 
2328   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2330   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2332   $main::lxdebug->leave_sub();
 
2336 $main::lxdebug->enter_sub();
 
2338   my ($self, $dbh, $key) = @_;
 
2340   $key = "all_payments" unless ($key);
 
2342   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
 
2344   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2346   $main::lxdebug->leave_sub();
 
2349 sub _get_customers {
 
2350   $main::lxdebug->enter_sub();
 
2352   my ($self, $dbh, $key) = @_;
 
2354   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2355   $options->{key}  ||= "all_customers";
 
2356   my $limit_clause   = "LIMIT $options->{limit}" if $options->{limit};
 
2357   my $where          = $options->{business_is_salesman} ? qq| AND business_id IN (SELECT id FROM business WHERE salesman)| : '';
 
2359   my $query = qq|SELECT * FROM customer WHERE NOT obsolete $where ORDER BY name $limit_clause|;
 
2360   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2362   $main::lxdebug->leave_sub();
 
2366   $main::lxdebug->enter_sub();
 
2368   my ($self, $dbh, $key) = @_;
 
2370   $key = "all_vendors" unless ($key);
 
2372   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2374   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2376   $main::lxdebug->leave_sub();
 
2379 sub _get_departments {
 
2380   $main::lxdebug->enter_sub();
 
2382   my ($self, $dbh, $key) = @_;
 
2384   $key = "all_departments" unless ($key);
 
2386   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2388   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2390   $main::lxdebug->leave_sub();
 
2393 sub _get_warehouses {
 
2394   $main::lxdebug->enter_sub();
 
2396   my ($self, $dbh, $param) = @_;
 
2398   my ($key, $bins_key);
 
2400   if ('' eq ref $param) {
 
2404     $key      = $param->{key};
 
2405     $bins_key = $param->{bins};
 
2408   my $query = qq|SELECT w.* FROM warehouse w
 
2409                  WHERE (NOT w.invalid) AND
 
2410                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2411                  ORDER BY w.sortkey|;
 
2413   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2416     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
 
2417     my $sth = prepare_query($self, $dbh, $query);
 
2419     foreach my $warehouse (@{ $self->{$key} }) {
 
2420       do_statement($self, $sth, $query, $warehouse->{id});
 
2421       $warehouse->{$bins_key} = [];
 
2423       while (my $ref = $sth->fetchrow_hashref()) {
 
2424         push @{ $warehouse->{$bins_key} }, $ref;
 
2430   $main::lxdebug->leave_sub();
 
2434   $main::lxdebug->enter_sub();
 
2436   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2438   my $query  = qq|SELECT * FROM $table|;
 
2439   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2441   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2443   $main::lxdebug->leave_sub();
 
2447 #  $main::lxdebug->enter_sub();
 
2449 #  my ($self, $dbh, $key) = @_;
 
2451 #  $key ||= "all_groups";
 
2453 #  my $groups = $main::auth->read_groups();
 
2455 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2457 #  $main::lxdebug->leave_sub();
 
2461   $main::lxdebug->enter_sub();
 
2466   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2467   my ($sth, $query, $ref);
 
2469   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2470   my $vc_id = $self->{"${vc}_id"};
 
2472   if ($params{"contacts"}) {
 
2473     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2476   if ($params{"shipto"}) {
 
2477     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2480   if ($params{"projects"} || $params{"all_projects"}) {
 
2481     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2482                          $params{"all_projects"} : $params{"projects"},
 
2483                          $params{"all_projects"} ? 1 : 0);
 
2486   if ($params{"printers"}) {
 
2487     $self->_get_printers($dbh, $params{"printers"});
 
2490   if ($params{"languages"}) {
 
2491     $self->_get_languages($dbh, $params{"languages"});
 
2494   if ($params{"charts"}) {
 
2495     $self->_get_charts($dbh, $params{"charts"});
 
2498   if ($params{"taxcharts"}) {
 
2499     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2502   if ($params{"taxzones"}) {
 
2503     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2506   if ($params{"employees"}) {
 
2507     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2510   if ($params{"salesmen"}) {
 
2511     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2514   if ($params{"business_types"}) {
 
2515     $self->_get_business_types($dbh, $params{"business_types"});
 
2518   if ($params{"dunning_configs"}) {
 
2519     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2522   if($params{"currencies"}) {
 
2523     $self->_get_currencies($dbh, $params{"currencies"});
 
2526   if($params{"customers"}) {
 
2527     $self->_get_customers($dbh, $params{"customers"});
 
2530   if($params{"vendors"}) {
 
2531     if (ref $params{"vendors"} eq 'HASH') {
 
2532       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2534       $self->_get_vendors($dbh, $params{"vendors"});
 
2538   if($params{"payments"}) {
 
2539     $self->_get_payments($dbh, $params{"payments"});
 
2542   if($params{"departments"}) {
 
2543     $self->_get_departments($dbh, $params{"departments"});
 
2546   if ($params{price_factors}) {
 
2547     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2550   if ($params{warehouses}) {
 
2551     $self->_get_warehouses($dbh, $params{warehouses});
 
2554 #  if ($params{groups}) {
 
2555 #    $self->_get_groups($dbh, $params{groups});
 
2558   if ($params{partsgroup}) {
 
2559     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2562   $main::lxdebug->leave_sub();
 
2565 # this sub gets the id and name from $table
 
2567   $main::lxdebug->enter_sub();
 
2569   my ($self, $myconfig, $table) = @_;
 
2571   # connect to database
 
2572   my $dbh = $self->get_standard_dbh($myconfig);
 
2574   $table = $table eq "customer" ? "customer" : "vendor";
 
2575   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2577   my ($query, @values);
 
2579   if (!$self->{openinvoices}) {
 
2581     if ($self->{customernumber} ne "") {
 
2582       $where = qq|(vc.customernumber ILIKE ?)|;
 
2583       push(@values, '%' . $self->{customernumber} . '%');
 
2585       $where = qq|(vc.name ILIKE ?)|;
 
2586       push(@values, '%' . $self->{$table} . '%');
 
2590       qq~SELECT vc.id, vc.name,
 
2591            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2593          WHERE $where AND (NOT vc.obsolete)
 
2597       qq~SELECT DISTINCT vc.id, vc.name,
 
2598            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2600          JOIN $table vc ON (a.${table}_id = vc.id)
 
2601          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2603     push(@values, '%' . $self->{$table} . '%');
 
2606   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2608   $main::lxdebug->leave_sub();
 
2610   return scalar(@{ $self->{name_list} });
 
2613 # the selection sub is used in the AR, AP, IS, IR and OE module
 
2616   $main::lxdebug->enter_sub();
 
2618   my ($self, $myconfig, $table, $module) = @_;
 
2621   my $dbh = $self->get_standard_dbh($myconfig);
 
2623   $table = $table eq "customer" ? "customer" : "vendor";
 
2625   my $query = qq|SELECT count(*) FROM $table|;
 
2626   my ($count) = selectrow_query($self, $dbh, $query);
 
2628   # build selection list
 
2629   if ($count <= $myconfig->{vclimit}) {
 
2630     $query = qq|SELECT id, name, salesman_id
 
2631                 FROM $table WHERE NOT obsolete
 
2633     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2637   $self->get_employee($dbh);
 
2639   # setup sales contacts
 
2640   $query = qq|SELECT e.id, e.name
 
2642               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
 
2643   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2646   push(@{ $self->{all_employees} },
 
2647        { id   => $self->{employee_id},
 
2648          name => $self->{employee} });
 
2650   # sort the whole thing
 
2651   @{ $self->{all_employees} } =
 
2652     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
2654   if ($module eq 'AR') {
 
2656     # prepare query for departments
 
2657     $query = qq|SELECT id, description
 
2660                 ORDER BY description|;
 
2663     $query = qq|SELECT id, description
 
2665                 ORDER BY description|;
 
2668   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2671   $query = qq|SELECT id, description
 
2675   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2678   $query = qq|SELECT printer_description, id
 
2680               ORDER BY printer_description|;
 
2682   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2685   $query = qq|SELECT id, description
 
2689   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2691   $main::lxdebug->leave_sub();
 
2694 sub language_payment {
 
2695   $main::lxdebug->enter_sub();
 
2697   my ($self, $myconfig) = @_;
 
2699   my $dbh = $self->get_standard_dbh($myconfig);
 
2701   my $query = qq|SELECT id, description
 
2705   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2708   $query = qq|SELECT printer_description, id
 
2710               ORDER BY printer_description|;
 
2712   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2715   $query = qq|SELECT id, description
 
2719   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2721   # get buchungsgruppen
 
2722   $query = qq|SELECT id, description
 
2723               FROM buchungsgruppen|;
 
2725   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2727   $main::lxdebug->leave_sub();
 
2730 # this is only used for reports
 
2731 sub all_departments {
 
2732   $main::lxdebug->enter_sub();
 
2734   my ($self, $myconfig, $table) = @_;
 
2736   my $dbh = $self->get_standard_dbh($myconfig);
 
2739   if ($table eq 'customer') {
 
2740     $where = "WHERE role = 'P' ";
 
2743   my $query = qq|SELECT id, description
 
2746                  ORDER BY description|;
 
2747   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2749   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2751   $main::lxdebug->leave_sub();
 
2755   $main::lxdebug->enter_sub();
 
2757   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2760   if ($table eq "customer") {
 
2769   $self->all_vc($myconfig, $table, $module);
 
2771   # get last customers or vendors
 
2772   my ($query, $sth, $ref);
 
2774   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2779     my $transdate = "current_date";
 
2780     if ($self->{transdate}) {
 
2781       $transdate = $dbh->quote($self->{transdate});
 
2784     # now get the account numbers
 
2785     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2786                 FROM chart c, taxkeys tk
 
2787                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2788                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2791     $sth = $dbh->prepare($query);
 
2793     do_statement($self, $sth, $query, '%' . $module . '%');
 
2795     $self->{accounts} = "";
 
2796     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2798       foreach my $key (split(/:/, $ref->{link})) {
 
2799         if ($key =~ /\Q$module\E/) {
 
2801           # cross reference for keys
 
2802           $xkeyref{ $ref->{accno} } = $key;
 
2804           push @{ $self->{"${module}_links"}{$key} },
 
2805             { accno       => $ref->{accno},
 
2806               description => $ref->{description},
 
2807               taxkey      => $ref->{taxkey_id},
 
2808               tax_id      => $ref->{tax_id} };
 
2810           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2816   # get taxkeys and description
 
2817   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2818   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2820   if (($module eq "AP") || ($module eq "AR")) {
 
2821     # get tax rates and description
 
2822     $query = qq|SELECT * FROM tax|;
 
2823     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2829            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2830            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2831            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2832            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2834            d.description AS department,
 
2837          JOIN $table c ON (a.${table}_id = c.id)
 
2838          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2839          LEFT JOIN department d ON (d.id = a.department_id)
 
2841     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2843     foreach my $key (keys %$ref) {
 
2844       $self->{$key} = $ref->{$key};
 
2847     my $transdate = "current_date";
 
2848     if ($self->{transdate}) {
 
2849       $transdate = $dbh->quote($self->{transdate});
 
2852     # now get the account numbers
 
2853     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2855                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2857                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2858                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2861     $sth = $dbh->prepare($query);
 
2862     do_statement($self, $sth, $query, "%$module%");
 
2864     $self->{accounts} = "";
 
2865     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2867       foreach my $key (split(/:/, $ref->{link})) {
 
2868         if ($key =~ /\Q$module\E/) {
 
2870           # cross reference for keys
 
2871           $xkeyref{ $ref->{accno} } = $key;
 
2873           push @{ $self->{"${module}_links"}{$key} },
 
2874             { accno       => $ref->{accno},
 
2875               description => $ref->{description},
 
2876               taxkey      => $ref->{taxkey_id},
 
2877               tax_id      => $ref->{tax_id} };
 
2879           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2885     # get amounts from individual entries
 
2888            c.accno, c.description,
 
2889            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
 
2893          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2894          LEFT JOIN project p ON (p.id = a.project_id)
 
2895          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
2896                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
2897                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
2898                                         THEN tk.chart_id = a.chart_id
 
2901                                        OR (c.link='%tax%')) AND
 
2902                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
2903          WHERE a.trans_id = ?
 
2904          AND a.fx_transaction = '0'
 
2905          ORDER BY a.acc_trans_id, a.transdate|;
 
2906     $sth = $dbh->prepare($query);
 
2907     do_statement($self, $sth, $query, $self->{id});
 
2909     # get exchangerate for currency
 
2910     $self->{exchangerate} =
 
2911       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2914     # store amounts in {acc_trans}{$key} for multiple accounts
 
2915     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2916       $ref->{exchangerate} =
 
2917         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2918       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2921       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2922         $ref->{amount} *= -1;
 
2924       $ref->{index} = $index;
 
2926       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2932            d.curr AS currencies, d.closedto, d.revtrans,
 
2933            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2934            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2936     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2937     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2944             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
2945             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2946             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2948     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2949     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2951     if ($self->{"$self->{vc}_id"}) {
 
2953       # only setup currency
 
2954       ($self->{currency}) = split(/:/, $self->{currencies});
 
2958       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2960       # get exchangerate for currency
 
2961       $self->{exchangerate} =
 
2962         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2968   $main::lxdebug->leave_sub();
 
2972   $main::lxdebug->enter_sub();
 
2974   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2978   $table         = $table eq "customer" ? "customer" : "vendor";
 
2979   my %column_map = ("a.curr"                  => "currency",
 
2980                     "a.${table}_id"           => "${table}_id",
 
2981                     "a.department_id"         => "department_id",
 
2982                     "d.description"           => "department",
 
2983                     "ct.name"                 => $table,
 
2984                     "current_date + ct.terms" => "duedate",
 
2987   if ($self->{type} =~ /delivery_order/) {
 
2988     $arap  = 'delivery_orders';
 
2989     delete $column_map{"a.curr"};
 
2991   } elsif ($self->{type} =~ /_order/) {
 
2993     $where = "quotation = '0'";
 
2995   } elsif ($self->{type} =~ /_quotation/) {
 
2997     $where = "quotation = '1'";
 
2999   } elsif ($table eq 'customer') {
 
3007   $where           = "($where) AND" if ($where);
 
3008   my $query        = qq|SELECT MAX(id) FROM $arap
 
3009                         WHERE $where ${table}_id > 0|;
 
3010   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
3013   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
3014   $query           = qq|SELECT $column_spec
 
3016                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
3017                         LEFT JOIN department d  ON (a.department_id = d.id)
 
3019   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
3021   map { $self->{$_} = $ref->{$_} } values %column_map;
 
3023   $main::lxdebug->leave_sub();
 
3027   $main::lxdebug->enter_sub();
 
3030   my $myconfig          = shift  || \%::myconfig;
 
3031   my ($thisdate, $days) = @_;
 
3033   my $dbh = $self->get_standard_dbh($myconfig);
 
3038     my $dateformat = $myconfig->{dateformat};
 
3039     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
3040     $thisdate = $dbh->quote($thisdate);
 
3041     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
3043     $query = qq|SELECT current_date AS thisdate|;
 
3046   ($thisdate) = selectrow_query($self, $dbh, $query);
 
3048   $main::lxdebug->leave_sub();
 
3054   $main::lxdebug->enter_sub();
 
3056   my ($self, $string) = @_;
 
3058   if ($string !~ /%/) {
 
3059     $string = "%$string%";
 
3062   $string =~ s/\'/\'\'/g;
 
3064   $main::lxdebug->leave_sub();
 
3070   $main::lxdebug->enter_sub();
 
3072   my ($self, $flds, $new, $count, $numrows) = @_;
 
3076   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
3081   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
3083     my $j = $item->{ndx} - 1;
 
3084     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
3088   for $i ($count + 1 .. $numrows) {
 
3089     map { delete $self->{"${_}_$i"} } @{$flds};
 
3092   $main::lxdebug->leave_sub();
 
3096   $main::lxdebug->enter_sub();
 
3098   my ($self, $myconfig) = @_;
 
3102   my $dbh = $self->dbconnect_noauto($myconfig);
 
3104   my $query = qq|DELETE FROM status
 
3105                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3106   my $sth = prepare_query($self, $dbh, $query);
 
3108   if ($self->{formname} =~ /(check|receipt)/) {
 
3109     for $i (1 .. $self->{rowcount}) {
 
3110       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
3113     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3117   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3118   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3120   my %queued = split / /, $self->{queued};
 
3123   if ($self->{formname} =~ /(check|receipt)/) {
 
3125     # this is a check or receipt, add one entry for each lineitem
 
3126     my ($accno) = split /--/, $self->{account};
 
3127     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3128                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3129     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3130     $sth = prepare_query($self, $dbh, $query);
 
3132     for $i (1 .. $self->{rowcount}) {
 
3133       if ($self->{"checked_$i"}) {
 
3134         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3140     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3141                 VALUES (?, ?, ?, ?, ?)|;
 
3142     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3143              $queued{$self->{formname}}, $self->{formname});
 
3149   $main::lxdebug->leave_sub();
 
3153   $main::lxdebug->enter_sub();
 
3155   my ($self, $dbh) = @_;
 
3157   my ($query, $printed, $emailed);
 
3159   my $formnames  = $self->{printed};
 
3160   my $emailforms = $self->{emailed};
 
3162   $query = qq|DELETE FROM status
 
3163                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3164   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3166   # this only applies to the forms
 
3167   # checks and receipts are posted when printed or queued
 
3169   if ($self->{queued}) {
 
3170     my %queued = split / /, $self->{queued};
 
3172     foreach my $formname (keys %queued) {
 
3173       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3174       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3176       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3177                   VALUES (?, ?, ?, ?, ?)|;
 
3178       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3180       $formnames  =~ s/\Q$self->{formname}\E//;
 
3181       $emailforms =~ s/\Q$self->{formname}\E//;
 
3186   # save printed, emailed info
 
3187   $formnames  =~ s/^ +//g;
 
3188   $emailforms =~ s/^ +//g;
 
3191   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3192   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3194   foreach my $formname (keys %status) {
 
3195     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3196     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3198     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3199                 VALUES (?, ?, ?, ?)|;
 
3200     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3203   $main::lxdebug->leave_sub();
 
3207 # $main::locale->text('SAVED')
 
3208 # $main::locale->text('DELETED')
 
3209 # $main::locale->text('ADDED')
 
3210 # $main::locale->text('PAYMENT POSTED')
 
3211 # $main::locale->text('POSTED')
 
3212 # $main::locale->text('POSTED AS NEW')
 
3213 # $main::locale->text('ELSE')
 
3214 # $main::locale->text('SAVED FOR DUNNING')
 
3215 # $main::locale->text('DUNNING STARTED')
 
3216 # $main::locale->text('PRINTED')
 
3217 # $main::locale->text('MAILED')
 
3218 # $main::locale->text('SCREENED')
 
3219 # $main::locale->text('CANCELED')
 
3220 # $main::locale->text('invoice')
 
3221 # $main::locale->text('proforma')
 
3222 # $main::locale->text('sales_order')
 
3223 # $main::locale->text('packing_list')
 
3224 # $main::locale->text('pick_list')
 
3225 # $main::locale->text('purchase_order')
 
3226 # $main::locale->text('bin_list')
 
3227 # $main::locale->text('sales_quotation')
 
3228 # $main::locale->text('request_quotation')
 
3231   $main::lxdebug->enter_sub();
 
3236   if(!exists $self->{employee_id}) {
 
3237     &get_employee($self, $dbh);
 
3241    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3242    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3243   my @values = (conv_i($self->{id}), $self->{login},
 
3244                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3245   do_query($self, $dbh, $query, @values);
 
3247   $main::lxdebug->leave_sub();
 
3251   $main::lxdebug->enter_sub();
 
3253   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3254   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3255   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3258   if ($trans_id ne "") {
 
3260       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 | .
 
3261       qq|FROM history_erp h | .
 
3262       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3263       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3266     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3268     $sth->execute() || $self->dberror("$query");
 
3270     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3271       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3272       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3273       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3274       $tempArray[$i++] = $hash_ref;
 
3276     $main::lxdebug->leave_sub() and return \@tempArray
 
3277       if ($i > 0 && $tempArray[0] ne "");
 
3279   $main::lxdebug->leave_sub();
 
3283 sub update_defaults {
 
3284   $main::lxdebug->enter_sub();
 
3286   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3289   if ($provided_dbh) {
 
3290     $dbh = $provided_dbh;
 
3292     $dbh = $self->dbconnect_noauto($myconfig);
 
3294   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3295   my $sth   = $dbh->prepare($query);
 
3297   $sth->execute || $self->dberror($query);
 
3298   my ($var) = $sth->fetchrow_array;
 
3301   if ($var =~ m/\d+$/) {
 
3302     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3303     my $len_diff = length($var) - $-[0] - length($new_var);
 
3304     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3310   $query = qq|UPDATE defaults SET $fld = ?|;
 
3311   do_query($self, $dbh, $query, $var);
 
3313   if (!$provided_dbh) {
 
3318   $main::lxdebug->leave_sub();
 
3323 sub update_business {
 
3324   $main::lxdebug->enter_sub();
 
3326   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3329   if ($provided_dbh) {
 
3330     $dbh = $provided_dbh;
 
3332     $dbh = $self->dbconnect_noauto($myconfig);
 
3335     qq|SELECT customernumberinit FROM business
 
3336        WHERE id = ? FOR UPDATE|;
 
3337   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3339   return undef unless $var;
 
3341   if ($var =~ m/\d+$/) {
 
3342     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3343     my $len_diff = length($var) - $-[0] - length($new_var);
 
3344     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3350   $query = qq|UPDATE business
 
3351               SET customernumberinit = ?
 
3353   do_query($self, $dbh, $query, $var, $business_id);
 
3355   if (!$provided_dbh) {
 
3360   $main::lxdebug->leave_sub();
 
3365 sub get_partsgroup {
 
3366   $main::lxdebug->enter_sub();
 
3368   my ($self, $myconfig, $p) = @_;
 
3369   my $target = $p->{target} || 'all_partsgroup';
 
3371   my $dbh = $self->get_standard_dbh($myconfig);
 
3373   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3375                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3378   if ($p->{searchitems} eq 'part') {
 
3379     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3381   if ($p->{searchitems} eq 'service') {
 
3382     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3384   if ($p->{searchitems} eq 'assembly') {
 
3385     $query .= qq|WHERE p.assembly = '1'|;
 
3387   if ($p->{searchitems} eq 'labor') {
 
3388     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3391   $query .= qq|ORDER BY partsgroup|;
 
3394     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3395                 ORDER BY partsgroup|;
 
3398   if ($p->{language_code}) {
 
3399     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3400                   t.description AS translation
 
3402                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3403                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3404                 ORDER BY translation|;
 
3405     @values = ($p->{language_code});
 
3408   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3410   $main::lxdebug->leave_sub();
 
3413 sub get_pricegroup {
 
3414   $main::lxdebug->enter_sub();
 
3416   my ($self, $myconfig, $p) = @_;
 
3418   my $dbh = $self->get_standard_dbh($myconfig);
 
3420   my $query = qq|SELECT p.id, p.pricegroup
 
3423   $query .= qq| ORDER BY pricegroup|;
 
3426     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3427                 ORDER BY pricegroup|;
 
3430   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3432   $main::lxdebug->leave_sub();
 
3436 # usage $form->all_years($myconfig, [$dbh])
 
3437 # return list of all years where bookings found
 
3440   $main::lxdebug->enter_sub();
 
3442   my ($self, $myconfig, $dbh) = @_;
 
3444   $dbh ||= $self->get_standard_dbh($myconfig);
 
3447   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3448                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3449   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3451   if ($myconfig->{dateformat} =~ /^yy/) {
 
3452     ($startdate) = split /\W/, $startdate;
 
3453     ($enddate) = split /\W/, $enddate;
 
3455     (@_) = split /\W/, $startdate;
 
3457     (@_) = split /\W/, $enddate;
 
3462   $startdate = substr($startdate,0,4);
 
3463   $enddate = substr($enddate,0,4);
 
3465   while ($enddate >= $startdate) {
 
3466     push @all_years, $enddate--;
 
3471   $main::lxdebug->leave_sub();
 
3475   $main::lxdebug->enter_sub();
 
3479   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3481   $main::lxdebug->leave_sub();
 
3485   $main::lxdebug->enter_sub();
 
3490   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3492   $main::lxdebug->leave_sub();
 
3501 SL::Form.pm - main data object.
 
3505 This is the main data object of Lx-Office.
 
3506 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3507 Points of interest for a beginner are:
 
3509  - $form->error            - renders a generic error in html. accepts an error message
 
3510  - $form->get_standard_dbh - returns a database connection for the
 
3512 =head1 SPECIAL FUNCTIONS
 
3516 =item _store_value()
 
3518 parses a complex var name, and stores it in the form.
 
3521   $form->_store_value($key, $value);
 
3523 keys must start with a string, and can contain various tokens.
 
3524 supported key structures are:
 
3527   simple key strings work as expected
 
3532   separating two keys by a dot (.) will result in a hash lookup for the inner value
 
3533   this is similar to the behaviour of java and templating mechanisms.
 
3535   filter.description => $form->{filter}->{description}
 
3537 3. array+hashref access
 
3539   adding brackets ([]) before the dot will cause the next hash to be put into an array.
 
3540   using [+] instead of [] will force a new array index. this is useful for recurring
 
3541   data structures like part lists. put a [+] into the first varname, and use [] on the
 
3544   repeating these names in your template:
 
3547     invoice.items[].parts_id
 
3551     $form->{invoice}->{items}->[
 
3565   using brackets at the end of a name will result in a pure array to be created.
 
3566   note that you mustn't use [+], which is reserved for array+hash access and will
 
3567   result in undefined behaviour in array context.
 
3569   filter.status[]  => $form->{status}->[ val1, val2, ... ]
 
3571 =item update_business PARAMS
 
3574  \%config,     - config hashref
 
3575  $business_id, - business id
 
3576  $dbh          - optional database handle
 
3578 handles business (thats customer/vendor types) sequences.
 
3580 special behaviour for empty strings in customerinitnumber field:
 
3581 will in this case not increase the value, and return undef.
 
3583 =item redirect_header $url
 
3585 Generates a HTTP redirection header for the new C<$url>. Constructs an
 
3586 absolute URL including scheme, host name and port. If C<$url> is a
 
3587 relative URL then it is considered relative to Lx-Office base URL.
 
3589 This function C<die>s if headers have already been created with
 
3590 C<$::form-E<gt>header>.
 
3594   print $::form->redirect_header('oe.pl?action=edit&id=1234');
 
3595   print $::form->redirect_header('http://www.lx-office.org/');