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 #======================================================================
 
  57 use List::Util qw(first max min sum);
 
  58 use List::MoreUtils qw(any);
 
  66     $standard_dbh->disconnect();
 
  72   $main::lxdebug->enter_sub(2);
 
  78   my @tokens = split /((?:\[\+?\])?(?:\.|$))/, $key;
 
  83      $curr = \ $self->{ shift @tokens };
 
  87     my $sep = shift @tokens;
 
  88     my $key = shift @tokens;
 
  90     $curr = \ $$curr->[++$#$$curr], next if $sep eq '[]';
 
  91     $curr = \ $$curr->[max 0, $#$$curr]  if $sep eq '[].';
 
  92     $curr = \ $$curr->[++$#$$curr]       if $sep eq '[+].';
 
  93     $curr = \ $$curr->{$key}
 
  98   $main::lxdebug->leave_sub(2);
 
 104   $main::lxdebug->enter_sub(2);
 
 109   my @pairs = split(/&/, $input);
 
 112     my ($key, $value) = split(/=/, $_, 2);
 
 113     $self->_store_value($self->unescape($key), $self->unescape($value)) if ($key);
 
 116   $main::lxdebug->leave_sub(2);
 
 119 sub _request_to_hash {
 
 120   $main::lxdebug->enter_sub(2);
 
 125   if (!$ENV{'CONTENT_TYPE'}
 
 126       || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
 
 128     $self->_input_to_hash($input);
 
 130     $main::lxdebug->leave_sub(2);
 
 134   my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
 
 136   my $boundary = '--' . $1;
 
 138   foreach my $line (split m/\n/, $input) {
 
 139     last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
 
 141     if (($line eq $boundary) || ($line eq "$boundary\r")) {
 
 142       ${ $previous } =~ s|\r?\n$|| if $previous;
 
 148       $content_type   = "text/plain";
 
 155     next unless $boundary_found;
 
 157     if (!$headers_done) {
 
 158       $line =~ s/[\r\n]*$//;
 
 165       if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
 
 166         if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
 
 168           substr $line, $-[0], $+[0] - $-[0], "";
 
 171         if ($line =~ m|name\s*=\s*"(.*?)"|i) {
 
 173           substr $line, $-[0], $+[0] - $-[0], "";
 
 176         $previous         = $self->_store_value($name, '') if ($name);
 
 177         $self->{FILENAME} = $filename if ($filename);
 
 182       if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
 
 189     next unless $previous;
 
 191     ${ $previous } .= "${line}\n";
 
 194   ${ $previous } =~ s|\r?\n$|| if $previous;
 
 196   $main::lxdebug->leave_sub(2);
 
 199 sub _recode_recursively {
 
 200   $main::lxdebug->enter_sub();
 
 201   my ($iconv, $param) = @_;
 
 203   if (any { ref $param eq $_ } qw(Form HASH)) {
 
 204     foreach my $key (keys %{ $param }) {
 
 205       if (!ref $param->{$key}) {
 
 206         # Workaround for a bug: converting $param->{$key} directly
 
 207         # leads to 'undef'. I don't know why. Converting a copy works,
 
 209         $param->{$key} = $iconv->convert("" . $param->{$key});
 
 211         _recode_recursively($iconv, $param->{$key});
 
 215   } elsif (ref $param eq 'ARRAY') {
 
 216     foreach my $idx (0 .. scalar(@{ $param }) - 1) {
 
 217       if (!ref $param->[$idx]) {
 
 218         # Workaround for a bug: converting $param->[$idx] directly
 
 219         # leads to 'undef'. I don't know why. Converting a copy works,
 
 221         $param->[$idx] = $iconv->convert("" . $param->[$idx]);
 
 223         _recode_recursively($iconv, $param->[$idx]);
 
 227   $main::lxdebug->leave_sub();
 
 231   $main::lxdebug->enter_sub();
 
 237   if ($LXDebug::watch_form) {
 
 238     require SL::Watchdog;
 
 239     tie %{ $self }, 'SL::Watchdog';
 
 242   read(STDIN, $_, $ENV{CONTENT_LENGTH});
 
 244   if ($ENV{QUERY_STRING}) {
 
 245     $_ = $ENV{QUERY_STRING};
 
 254   $self->_request_to_hash($_);
 
 256   my $db_charset   = $main::dbcharset;
 
 257   $db_charset    ||= Common::DEFAULT_CHARSET;
 
 259   if ($self->{INPUT_ENCODING}) {
 
 260     if (lc $self->{INPUT_ENCODING} ne lc $db_charset) {
 
 262       my $iconv = Text::Iconv->new($self->{INPUT_ENCODING}, $db_charset);
 
 264       _recode_recursively($iconv, $self);
 
 267     delete $self->{INPUT_ENCODING};
 
 270   $self->{action}  =  lc $self->{action};
 
 271   $self->{action}  =~ s/( |-|,|\#)/_/g;
 
 273   $self->{version} =  "2.6.0";
 
 275   $main::lxdebug->leave_sub();
 
 280 sub _flatten_variables_rec {
 
 281   $main::lxdebug->enter_sub(2);
 
 290   if ('' eq ref $curr->{$key}) {
 
 291     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
 
 293   } elsif ('HASH' eq ref $curr->{$key}) {
 
 294     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
 
 295       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
 
 299     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
 
 300       my $first_array_entry = 1;
 
 302       foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
 
 303         push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
 
 304         $first_array_entry = 0;
 
 309   $main::lxdebug->leave_sub(2);
 
 314 sub flatten_variables {
 
 315   $main::lxdebug->enter_sub(2);
 
 323     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 326   $main::lxdebug->leave_sub(2);
 
 331 sub flatten_standard_variables {
 
 332   $main::lxdebug->enter_sub(2);
 
 335   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
 
 339   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
 
 340     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 343   $main::lxdebug->leave_sub(2);
 
 349   $main::lxdebug->enter_sub();
 
 355   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 357   $main::lxdebug->leave_sub();
 
 361   $main::lxdebug->enter_sub(2);
 
 364   my $password      = $self->{password};
 
 366   $self->{password} = 'X' x 8;
 
 368   local $Data::Dumper::Sortkeys = 1;
 
 369   my $output                    = Dumper($self);
 
 371   $self->{password} = $password;
 
 373   $main::lxdebug->leave_sub(2);
 
 379   $main::lxdebug->enter_sub(2);
 
 381   my ($self, $str) = @_;
 
 383   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
 
 385   $main::lxdebug->leave_sub(2);
 
 391   $main::lxdebug->enter_sub(2);
 
 393   my ($self, $str) = @_;
 
 398   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
 400   $main::lxdebug->leave_sub(2);
 
 406   $main::lxdebug->enter_sub();
 
 407   my ($self, $str) = @_;
 
 409   if ($str && !ref($str)) {
 
 410     $str =~ s/\"/"/g;
 
 413   $main::lxdebug->leave_sub();
 
 419   $main::lxdebug->enter_sub();
 
 420   my ($self, $str) = @_;
 
 422   if ($str && !ref($str)) {
 
 423     $str =~ s/"/\"/g;
 
 426   $main::lxdebug->leave_sub();
 
 432   $main::lxdebug->enter_sub();
 
 436     map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
 
 438     for (sort keys %$self) {
 
 439       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
 
 440       print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
 
 443   $main::lxdebug->leave_sub();
 
 447   $main::lxdebug->enter_sub();
 
 449   $main::lxdebug->show_backtrace();
 
 451   my ($self, $msg) = @_;
 
 452   if ($ENV{HTTP_USER_AGENT}) {
 
 454     $self->show_generic_error($msg);
 
 461   $main::lxdebug->leave_sub();
 
 465   $main::lxdebug->enter_sub();
 
 467   my ($self, $msg) = @_;
 
 469   if ($ENV{HTTP_USER_AGENT}) {
 
 472     if (!$self->{header}) {
 
 485     if ($self->{info_function}) {
 
 486       &{ $self->{info_function} }($msg);
 
 492   $main::lxdebug->leave_sub();
 
 495 # calculates the number of rows in a textarea based on the content and column number
 
 496 # can be capped with maxrows
 
 498   $main::lxdebug->enter_sub();
 
 499   my ($self, $str, $cols, $maxrows, $minrows) = @_;
 
 503   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
 
 506   $main::lxdebug->leave_sub();
 
 508   return max(min($rows, $maxrows), $minrows);
 
 512   $main::lxdebug->enter_sub();
 
 514   my ($self, $msg) = @_;
 
 516   $self->error("$msg\n" . $DBI::errstr);
 
 518   $main::lxdebug->leave_sub();
 
 522   $main::lxdebug->enter_sub();
 
 524   my ($self, $name, $msg) = @_;
 
 527   foreach my $part (split m/\./, $name) {
 
 528     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
 
 531     $curr = $curr->{$part};
 
 534   $main::lxdebug->leave_sub();
 
 537 sub create_http_response {
 
 538   $main::lxdebug->enter_sub();
 
 543   my $cgi      = $main::cgi;
 
 544   $cgi       ||= CGI->new('');
 
 548   if ($ENV{HTTP_X_FORWARDED_FOR}) {
 
 549     $base_path =  $ENV{HTTP_REFERER};
 
 550     $base_path =~ s|^.*?://.*?/|/|;
 
 552     $base_path =  $ENV{REQUEST_URI};
 
 554   $base_path =~ s|[^/]+$||;
 
 555   $base_path =~ s|/$||;
 
 558   if (defined $main::auth) {
 
 559     my $session_cookie_value   = $main::auth->get_session_id();
 
 560     $session_cookie_value    ||= 'NO_SESSION';
 
 562     $session_cookie = $cgi->cookie('-name'   => $main::auth->get_session_cookie_name(),
 
 563                                    '-value'  => $session_cookie_value,
 
 564                                    '-path'   => $base_path,
 
 565                                    '-secure' => $ENV{HTTPS});
 
 568   my %cgi_params = ('-type' => $params{content_type});
 
 569   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
 
 571   my $output = $cgi->header('-cookie' => $session_cookie,
 
 574   $main::lxdebug->leave_sub();
 
 581   $main::lxdebug->enter_sub();
 
 583   # extra code ist currently only used by menuv3 and menuv4 to set their css.
 
 584   # it is strongly deprecated, and will be changed in a future version.
 
 585   my ($self, $extra_code) = @_;
 
 587   if ($self->{header}) {
 
 588     $main::lxdebug->leave_sub();
 
 592   my ($stylesheet, $favicon, $pagelayout);
 
 594   if ($ENV{HTTP_USER_AGENT}) {
 
 597     if ($ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/) {
 
 598       # Only set the DOCTYPE for Internet Explorer. Other browsers have problems displaying the menu otherwise.
 
 599       $doctype = qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n|;
 
 602     my $stylesheets = "$self->{stylesheet} $self->{stylesheets}";
 
 604     $stylesheets =~ s|^\s*||;
 
 605     $stylesheets =~ s|\s*$||;
 
 606     foreach my $file (split m/\s+/, $stylesheets) {
 
 608       next if (! -f "css/$file");
 
 610       $stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|;
 
 613     $self->{favicon}    = "favicon.ico" unless $self->{favicon};
 
 615     if ($self->{favicon} && (-f "$self->{favicon}")) {
 
 617         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
 
 621     my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
 623     if ($self->{landscape}) {
 
 624       $pagelayout = qq|<style type="text/css">
 
 625                         \@page { size:landscape; }
 
 630     <script type="text/javascript">
 
 633         document.$self->{fokus}.focus();
 
 637     | if $self->{"fokus"};
 
 641     if ($self->{jsscript} == 1) {
 
 644         <script type="text/javascript" src="js/jquery.js"></script>
 
 645         <script type="text/javascript" src="js/common.js"></script>
 
 646         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
 
 647         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
 
 648         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
 
 649         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
 
 656       ? "$self->{title} - $self->{titlebar}"
 
 659     foreach my $item (@ { $self->{AJAX} }) {
 
 660       $ajax .= $item->show_javascript();
 
 663     print $self->create_http_response('content_type' => 'text/html',
 
 664                                       'charset'      => $db_charset,);
 
 665     print qq|${doctype}<html>
 
 667   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
 
 668   <title>$self->{titlebar}</title>
 
 677   <link rel="stylesheet" href="css/jquery.autocomplete.css" type="text/css" />
 
 679   <meta name="robots" content="noindex,nofollow" />
 
 680   <script type="text/javascript" src="js/highlight_input.js"></script>
 
 682   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
 
 683   <script type="text/javascript" src="js/tabcontent.js">
 
 685   /***********************************************
 
 686    * Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
 
 687    * This notice MUST stay intact for legal use
 
 688    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
 
 689    ***********************************************/
 
 700   $main::lxdebug->leave_sub();
 
 703 sub ajax_response_header {
 
 704   $main::lxdebug->enter_sub();
 
 708   my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
 709   my $cgi        = $main::cgi || CGI->new('');
 
 710   my $output     = $cgi->header('-charset' => $db_charset);
 
 712   $main::lxdebug->leave_sub();
 
 717 sub _prepare_html_template {
 
 718   $main::lxdebug->enter_sub();
 
 720   my ($self, $file, $additional_params) = @_;
 
 723   if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
 
 724     $language = $main::language;
 
 726     $language = $main::myconfig{"countrycode"};
 
 728   $language = "de" unless ($language);
 
 730   if (-f "templates/webpages/${file}_${language}.html") {
 
 731     if ((-f ".developer") &&
 
 732         (-f "templates/webpages/${file}_master.html") &&
 
 733         ((stat("templates/webpages/${file}_master.html"))[9] >
 
 734          (stat("templates/webpages/${file}_${language}.html"))[9])) {
 
 735       my $info = "Developer information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
 
 736         "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 737       print(qq|<pre>$info</pre>|);
 
 741     $file = "templates/webpages/${file}_${language}.html";
 
 742   } elsif (-f "templates/webpages/${file}.html") {
 
 743     $file = "templates/webpages/${file}.html";
 
 745     my $info = "Web page template '${file}' not found.\n" .
 
 746       "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 747     print(qq|<pre>$info</pre>|);
 
 751   if ($self->{"DEBUG"}) {
 
 752     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
 
 755   if ($additional_params->{"DEBUG"}) {
 
 756     $additional_params->{"DEBUG"} =
 
 757       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
 
 760   if (%main::myconfig) {
 
 761     map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
 
 762     my $jsc_dateformat = $main::myconfig{"dateformat"};
 
 763     $jsc_dateformat =~ s/d+/\%d/gi;
 
 764     $jsc_dateformat =~ s/m+/\%m/gi;
 
 765     $jsc_dateformat =~ s/y+/\%Y/gi;
 
 766     $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
 
 769   $additional_params->{"conf_dbcharset"}              = $main::dbcharset;
 
 770   $additional_params->{"conf_webdav"}                 = $main::webdav;
 
 771   $additional_params->{"conf_lizenzen"}               = $main::lizenzen;
 
 772   $additional_params->{"conf_latex_templates"}        = $main::latex;
 
 773   $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
 
 774   $additional_params->{"conf_vertreter"}              = $main::vertreter;
 
 776   if (%main::debug_options) {
 
 777     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
 
 780   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 781     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 782       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 786   $main::lxdebug->leave_sub();
 
 791 sub parse_html_template {
 
 792   $main::lxdebug->enter_sub();
 
 794   my ($self, $file, $additional_params) = @_;
 
 796   $additional_params ||= { };
 
 798   $file = $self->_prepare_html_template($file, $additional_params);
 
 800   my $template = Template->new({ 'INTERPOLATE'  => 0,
 
 804                                  'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 805                                  'INCLUDE_PATH' => '.:templates/webpages',
 
 808   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 810   my $in = IO::File->new($file, 'r');
 
 813     print STDERR "Error opening template file: $!";
 
 814     $main::lxdebug->leave_sub();
 
 818   my $input = join('', <$in>);
 
 822     $input = $main::locale->{iconv}->convert($input);
 
 826   if (!$template->process(\$input, $additional_params, \$output)) {
 
 827     print STDERR $template->error();
 
 830   $main::lxdebug->leave_sub();
 
 835 sub show_generic_error {
 
 836   $main::lxdebug->enter_sub();
 
 838   my ($self, $error, %params) = @_;
 
 841     'title_error' => $params{title},
 
 842     'label_error' => $error,
 
 845   if ($params{action}) {
 
 848     map { delete($self->{$_}); } qw(action);
 
 849     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 851     $add_params->{SHOW_BUTTON}  = 1;
 
 852     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 853     $add_params->{VARIABLES}    = \@vars;
 
 855   } elsif ($params{back_button}) {
 
 856     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 859   $self->{title} = $params{title} if $params{title};
 
 862   print $self->parse_html_template("generic/error", $add_params);
 
 864   $main::lxdebug->leave_sub();
 
 866   die("Error: $error\n");
 
 869 sub show_generic_information {
 
 870   $main::lxdebug->enter_sub();
 
 872   my ($self, $text, $title) = @_;
 
 875     'title_information' => $title,
 
 876     'label_information' => $text,
 
 879   $self->{title} = $title if ($title);
 
 882   print $self->parse_html_template("generic/information", $add_params);
 
 884   $main::lxdebug->leave_sub();
 
 886   die("Information: $text\n");
 
 889 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 890 # changed it to accept an arbitrary number of triggers - sschoeling
 
 892   $main::lxdebug->enter_sub();
 
 895   my $myconfig = shift;
 
 898   # set dateform for jsscript
 
 901     "dd.mm.yy" => "%d.%m.%Y",
 
 902     "dd-mm-yy" => "%d-%m-%Y",
 
 903     "dd/mm/yy" => "%d/%m/%Y",
 
 904     "mm/dd/yy" => "%m/%d/%Y",
 
 905     "mm-dd-yy" => "%m-%d-%Y",
 
 906     "yyyy-mm-dd" => "%Y-%m-%d",
 
 909   my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
 
 910     $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
 
 917       inputField : "| . (shift) . qq|",
 
 918       ifFormat :"$ifFormat",
 
 919       align : "| .  (shift) . qq|",
 
 920       button : "| . (shift) . qq|"
 
 926        <script type="text/javascript">
 
 927        <!--| . join("", @triggers) . qq|//-->
 
 931   $main::lxdebug->leave_sub();
 
 934 }    #end sub write_trigger
 
 937   $main::lxdebug->enter_sub();
 
 939   my ($self, $msg) = @_;
 
 941   if ($self->{callback}) {
 
 943     my ($script, $argv) = split(/\?/, $self->{callback}, 2);
 
 945     $script =~ s|[^a-zA-Z0-9_\.]||g;
 
 946     exec("perl", "$script", $argv);
 
 954   $main::lxdebug->leave_sub();
 
 957 # sort of columns removed - empty sub
 
 959   $main::lxdebug->enter_sub();
 
 961   my ($self, @columns) = @_;
 
 963   $main::lxdebug->leave_sub();
 
 969   $main::lxdebug->enter_sub(2);
 
 971   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 977   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
 979   my $neg = ($amount =~ s/^-//);
 
 980   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
 982   if (defined($places) && ($places ne '')) {
 
 988         my ($actual_places) = ($amount =~ /\.(\d+)/);
 
 989         $actual_places = length($actual_places);
 
 990         $places = $actual_places > $places ? $actual_places : $places;
 
 993     $amount = $self->round_amount($amount, $places);
 
 996   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 997   my @p = split(/\./, $amount); # split amount at decimal point
 
 999   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
1002   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
1005     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
1006     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
1007                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
1011   $main::lxdebug->leave_sub(2);
 
1015 sub format_amount_units {
 
1016   $main::lxdebug->enter_sub();
 
1021   my $myconfig         = \%main::myconfig;
 
1022   my $amount           = $params{amount} * 1;
 
1023   my $places           = $params{places};
 
1024   my $part_unit_name   = $params{part_unit};
 
1025   my $amount_unit_name = $params{amount_unit};
 
1026   my $conv_units       = $params{conv_units};
 
1027   my $max_places       = $params{max_places};
 
1029   if (!$part_unit_name) {
 
1030     $main::lxdebug->leave_sub();
 
1034   AM->retrieve_all_units();
 
1035   my $all_units        = $main::all_units;
 
1037   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
1038     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
1041   if (!scalar @{ $conv_units }) {
 
1042     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
1043     $main::lxdebug->leave_sub();
 
1047   my $part_unit  = $all_units->{$part_unit_name};
 
1048   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
1050   $amount       *= $conv_unit->{factor};
 
1055   foreach my $unit (@$conv_units) {
 
1056     my $last = $unit->{name} eq $part_unit->{name};
 
1058       $num     = int($amount / $unit->{factor});
 
1059       $amount -= $num * $unit->{factor};
 
1062     if ($last ? $amount : $num) {
 
1063       push @values, { "unit"   => $unit->{name},
 
1064                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
1065                       "places" => $last ? $places : 0 };
 
1072     push @values, { "unit"   => $part_unit_name,
 
1077   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
1079   $main::lxdebug->leave_sub();
 
1085   $main::lxdebug->enter_sub(2);
 
1090   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
1091   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
1092   $input =~ s/\#\#/\#/g;
 
1094   $main::lxdebug->leave_sub(2);
 
1102   $main::lxdebug->enter_sub(2);
 
1104   my ($self, $myconfig, $amount) = @_;
 
1106   if (   ($myconfig->{numberformat} eq '1.000,00')
 
1107       || ($myconfig->{numberformat} eq '1000,00')) {
 
1112   if ($myconfig->{numberformat} eq "1'000.00") {
 
1118   $main::lxdebug->leave_sub(2);
 
1120   return ($amount * 1);
 
1124   $main::lxdebug->enter_sub(2);
 
1126   my ($self, $amount, $places) = @_;
 
1129   # Rounding like "Kaufmannsrunden" (see http://de.wikipedia.org/wiki/Rundung )
 
1131   # Round amounts to eight places before rounding to the requested
 
1132   # number of places. This gets rid of errors due to internal floating
 
1133   # point representation.
 
1134   $amount       = $self->round_amount($amount, 8) if $places < 8;
 
1135   $amount       = $amount * (10**($places));
 
1136   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1138   $main::lxdebug->leave_sub(2);
 
1140   return $round_amount;
 
1144 sub parse_template {
 
1145   $main::lxdebug->enter_sub();
 
1147   my ($self, $myconfig, $userspath) = @_;
 
1148   my ($template, $out);
 
1152   $self->{"cwd"} = getcwd();
 
1153   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1157   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1158     $template       = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1159     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
1161   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1162     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1163     $template         = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1164     $ext_for_format   = 'pdf';
 
1166   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1167     $template       = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1168     $ext_for_format = 'html';
 
1170   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1171     $template       = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1172     $ext_for_format = 'xml';
 
1174   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
 
1175     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1177   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
 
1178     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1180   } elsif ( defined $self->{'format'}) {
 
1181     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1183   } elsif ( $self->{'format'} eq '' ) {
 
1184     $self->error("No Outputformat given: $self->{'format'}");
 
1186   } else { #Catch the rest
 
1187     $self->error("Outputformat not defined: $self->{'format'}");
 
1190   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1191   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1193   if (!$self->{employee_id}) {
 
1194     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
 
1197   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
 
1199   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1201   # OUT is used for the media, screen, printer, email
 
1202   # for postscript we store a copy in a temporary file
 
1204   my $prepend_userspath;
 
1206   if (!$self->{tmpfile}) {
 
1207     $self->{tmpfile}   = "${fileid}.$self->{IN}";
 
1208     $prepend_userspath = 1;
 
1211   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
 
1213   $self->{tmpfile} =~ s|.*/||;
 
1214   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
 
1215   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
 
1217   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1218     $out = $self->{OUT};
 
1219     $self->{OUT} = ">$self->{tmpfile}";
 
1223     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
 
1225     open(OUT, ">-") or $self->error("STDOUT : $!");
 
1229   if (!$template->parse(*OUT)) {
 
1231     $self->error("$self->{IN} : " . $template->get_error());
 
1236   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1238     if ($self->{media} eq 'email') {
 
1240       my $mail = new Mailer;
 
1242       map { $mail->{$_} = $self->{$_} }
 
1243         qw(cc bcc subject message version format);
 
1244       $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
1245       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1246       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1247       $mail->{fileid} = "$fileid.";
 
1248       $myconfig->{signature} =~ s/\r//g;
 
1250       # if we send html or plain text inline
 
1251       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1252         $mail->{contenttype} = "text/html";
 
1254         $mail->{message}       =~ s/\r//g;
 
1255         $mail->{message}       =~ s/\n/<br>\n/g;
 
1256         $myconfig->{signature} =~ s/\n/<br>\n/g;
 
1257         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
1259         open(IN, $self->{tmpfile})
 
1260           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1262           $mail->{message} .= $_;
 
1269         if (!$self->{"do_not_attach"}) {
 
1270           my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1271           $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1272           $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1273                                      "name"     => $attachment_name }];
 
1276         $mail->{message}  =~ s/\r//g;
 
1277         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1281       my $err = $mail->send();
 
1282       $self->error($self->cleanup . "$err") if ($err);
 
1286       $self->{OUT} = $out;
 
1288       my $numbytes = (-s $self->{tmpfile});
 
1289       open(IN, $self->{tmpfile})
 
1290         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1292       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1294       chdir("$self->{cwd}");
 
1295       #print(STDERR "Kopien $self->{copies}\n");
 
1296       #print(STDERR "OUT $self->{OUT}\n");
 
1297       for my $i (1 .. $self->{copies}) {
 
1299           open(OUT, $self->{OUT})
 
1300             or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1302           $self->{attachment_filename} = ($self->{attachment_filename})
 
1303                                        ? $self->{attachment_filename}
 
1304                                        : $self->generate_attachment_filename();
 
1306           # launch application
 
1307           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1308 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1309 Content-Length: $numbytes
 
1313           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
 
1334   chdir("$self->{cwd}");
 
1335   $main::lxdebug->leave_sub();
 
1338 sub get_formname_translation {
 
1339   $main::lxdebug->enter_sub();
 
1340   my ($self, $formname) = @_;
 
1342   $formname ||= $self->{formname};
 
1344   my %formname_translations = (
 
1345     bin_list                => $main::locale->text('Bin List'),
 
1346     credit_note             => $main::locale->text('Credit Note'),
 
1347     invoice                 => $main::locale->text('Invoice'),
 
1348     packing_list            => $main::locale->text('Packing List'),
 
1349     pick_list               => $main::locale->text('Pick List'),
 
1350     proforma                => $main::locale->text('Proforma Invoice'),
 
1351     purchase_order          => $main::locale->text('Purchase Order'),
 
1352     request_quotation       => $main::locale->text('RFQ'),
 
1353     sales_order             => $main::locale->text('Confirmation'),
 
1354     sales_quotation         => $main::locale->text('Quotation'),
 
1355     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1356     storno_packing_list     => $main::locale->text('Storno Packing List'),
 
1357     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1358     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1359     dunning                 => $main::locale->text('Dunning'),
 
1362   $main::lxdebug->leave_sub();
 
1363   return $formname_translations{$formname}
 
1366 sub get_number_prefix_for_type {
 
1367   $main::lxdebug->enter_sub();
 
1371       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1372     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1373     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1376   $main::lxdebug->leave_sub();
 
1380 sub get_extension_for_format {
 
1381   $main::lxdebug->enter_sub();
 
1384   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1385                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1386                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1387                 : $self->{format} =~ /html/i         ? ".html"
 
1390   $main::lxdebug->leave_sub();
 
1394 sub generate_attachment_filename {
 
1395   $main::lxdebug->enter_sub();
 
1398   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1399   my $prefix              = $self->get_number_prefix_for_type();
 
1401   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1402     $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1404   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1405     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1408     $attachment_filename = "";
 
1411   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1412   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1414   $main::lxdebug->leave_sub();
 
1415   return $attachment_filename;
 
1418 sub generate_email_subject {
 
1419   $main::lxdebug->enter_sub();
 
1422   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1423   my $prefix  = $self->get_number_prefix_for_type();
 
1425   if ($subject && $self->{"${prefix}number"}) {
 
1426     $subject .= " " . $self->{"${prefix}number"}
 
1429   $main::lxdebug->leave_sub();
 
1434   $main::lxdebug->enter_sub();
 
1438   chdir("$self->{tmpdir}");
 
1441   if (-f "$self->{tmpfile}.err") {
 
1442     open(FH, "$self->{tmpfile}.err");
 
1447   if ($self->{tmpfile} && ! $::keep_temp_files) {
 
1448     $self->{tmpfile} =~ s|.*/||g;
 
1450     $self->{tmpfile} =~ s/\.\w+$//g;
 
1451     my $tmpfile = $self->{tmpfile};
 
1452     unlink(<$tmpfile.*>);
 
1455   chdir("$self->{cwd}");
 
1457   $main::lxdebug->leave_sub();
 
1463   $main::lxdebug->enter_sub();
 
1465   my ($self, $date, $myconfig) = @_;
 
1468   if ($date && $date =~ /\D/) {
 
1470     if ($myconfig->{dateformat} =~ /^yy/) {
 
1471       ($yy, $mm, $dd) = split /\D/, $date;
 
1473     if ($myconfig->{dateformat} =~ /^mm/) {
 
1474       ($mm, $dd, $yy) = split /\D/, $date;
 
1476     if ($myconfig->{dateformat} =~ /^dd/) {
 
1477       ($dd, $mm, $yy) = split /\D/, $date;
 
1482     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1483     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1485     $dd = "0$dd" if ($dd < 10);
 
1486     $mm = "0$mm" if ($mm < 10);
 
1488     $date = "$yy$mm$dd";
 
1491   $main::lxdebug->leave_sub();
 
1496 # Database routines used throughout
 
1499   $main::lxdebug->enter_sub(2);
 
1501   my ($self, $myconfig) = @_;
 
1503   # connect to database
 
1505     DBI->connect($myconfig->{dbconnect},
 
1506                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
 
1510   if ($myconfig->{dboptions}) {
 
1511     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1514   $main::lxdebug->leave_sub(2);
 
1519 sub dbconnect_noauto {
 
1520   $main::lxdebug->enter_sub();
 
1522   my ($self, $myconfig) = @_;
 
1524   # connect to database
 
1526     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
 
1527                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
 
1531   if ($myconfig->{dboptions}) {
 
1532     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1535   $main::lxdebug->leave_sub();
 
1540 sub get_standard_dbh {
 
1541   $main::lxdebug->enter_sub(2);
 
1543   my ($self, $myconfig) = @_;
 
1545   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1546     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1547     undef $standard_dbh;
 
1550   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1552   $main::lxdebug->leave_sub(2);
 
1554   return $standard_dbh;
 
1558   $main::lxdebug->enter_sub();
 
1560   my ($self, $date, $myconfig) = @_;
 
1561   my $dbh = $self->dbconnect($myconfig);
 
1563   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1564   my $sth = prepare_execute_query($self, $dbh, $query, $date);
 
1565   my ($closed) = $sth->fetchrow_array;
 
1567   $main::lxdebug->leave_sub();
 
1572 sub update_balance {
 
1573   $main::lxdebug->enter_sub();
 
1575   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1577   # if we have a value, go do it
 
1580     # retrieve balance from table
 
1581     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1582     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1583     my ($balance) = $sth->fetchrow_array;
 
1589     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1590     do_query($self, $dbh, $query, @values);
 
1592   $main::lxdebug->leave_sub();
 
1595 sub update_exchangerate {
 
1596   $main::lxdebug->enter_sub();
 
1598   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1600   # some sanity check for currency
 
1602     $main::lxdebug->leave_sub();
 
1605   $query = qq|SELECT curr FROM defaults|;
 
1607   my ($currency) = selectrow_query($self, $dbh, $query);
 
1608   my ($defaultcurrency) = split m/:/, $currency;
 
1611   if ($curr eq $defaultcurrency) {
 
1612     $main::lxdebug->leave_sub();
 
1616   $query = qq|SELECT e.curr FROM exchangerate e
 
1617                  WHERE e.curr = ? AND e.transdate = ?
 
1619   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1628   $buy = conv_i($buy, "NULL");
 
1629   $sell = conv_i($sell, "NULL");
 
1632   if ($buy != 0 && $sell != 0) {
 
1633     $set = "buy = $buy, sell = $sell";
 
1634   } elsif ($buy != 0) {
 
1635     $set = "buy = $buy";
 
1636   } elsif ($sell != 0) {
 
1637     $set = "sell = $sell";
 
1640   if ($sth->fetchrow_array) {
 
1641     $query = qq|UPDATE exchangerate
 
1647     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1648                 VALUES (?, $buy, $sell, ?)|;
 
1651   do_query($self, $dbh, $query, $curr, $transdate);
 
1653   $main::lxdebug->leave_sub();
 
1656 sub save_exchangerate {
 
1657   $main::lxdebug->enter_sub();
 
1659   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1661   my $dbh = $self->dbconnect($myconfig);
 
1665   $buy  = $rate if $fld eq 'buy';
 
1666   $sell = $rate if $fld eq 'sell';
 
1669   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1674   $main::lxdebug->leave_sub();
 
1677 sub get_exchangerate {
 
1678   $main::lxdebug->enter_sub();
 
1680   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1683   unless ($transdate) {
 
1684     $main::lxdebug->leave_sub();
 
1688   $query = qq|SELECT curr FROM defaults|;
 
1690   my ($currency) = selectrow_query($self, $dbh, $query);
 
1691   my ($defaultcurrency) = split m/:/, $currency;
 
1693   if ($currency eq $defaultcurrency) {
 
1694     $main::lxdebug->leave_sub();
 
1698   $query = qq|SELECT e.$fld FROM exchangerate e
 
1699                  WHERE e.curr = ? AND e.transdate = ?|;
 
1700   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1704   $main::lxdebug->leave_sub();
 
1706   return $exchangerate;
 
1709 sub check_exchangerate {
 
1710   $main::lxdebug->enter_sub();
 
1712   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1714   if ($fld !~/^buy|sell$/) {
 
1715     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1718   unless ($transdate) {
 
1719     $main::lxdebug->leave_sub();
 
1723   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1725   if ($currency eq $defaultcurrency) {
 
1726     $main::lxdebug->leave_sub();
 
1730   my $dbh   = $self->get_standard_dbh($myconfig);
 
1731   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1732                  WHERE e.curr = ? AND e.transdate = ?|;
 
1734   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1736   $main::lxdebug->leave_sub();
 
1738   return $exchangerate;
 
1741 sub get_default_currency {
 
1742   $main::lxdebug->enter_sub();
 
1744   my ($self, $myconfig) = @_;
 
1745   my $dbh = $self->get_standard_dbh($myconfig);
 
1747   my $query = qq|SELECT curr FROM defaults|;
 
1749   my ($curr)            = selectrow_query($self, $dbh, $query);
 
1750   my ($defaultcurrency) = split m/:/, $curr;
 
1752   $main::lxdebug->leave_sub();
 
1754   return $defaultcurrency;
 
1758 sub set_payment_options {
 
1759   $main::lxdebug->enter_sub();
 
1761   my ($self, $myconfig, $transdate) = @_;
 
1763   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1765   my $dbh = $self->get_standard_dbh($myconfig);
 
1768     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
 
1769     qq|FROM payment_terms p | .
 
1772   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1773    $self->{payment_terms}) =
 
1774      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1776   if ($transdate eq "") {
 
1777     if ($self->{invdate}) {
 
1778       $transdate = $self->{invdate};
 
1780       $transdate = $self->{transdate};
 
1785     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1786     qq|FROM payment_terms|;
 
1787   ($self->{netto_date}, $self->{skonto_date}) =
 
1788     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1790   my ($invtotal, $total);
 
1791   my (%amounts, %formatted_amounts);
 
1793   if ($self->{type} =~ /_order$/) {
 
1794     $amounts{invtotal} = $self->{ordtotal};
 
1795     $amounts{total}    = $self->{ordtotal};
 
1797   } elsif ($self->{type} =~ /_quotation$/) {
 
1798     $amounts{invtotal} = $self->{quototal};
 
1799     $amounts{total}    = $self->{quototal};
 
1802     $amounts{invtotal} = $self->{invtotal};
 
1803     $amounts{total}    = $self->{total};
 
1806   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1808   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1809   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1810   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1812   foreach (keys %amounts) {
 
1813     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1814     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1817   if ($self->{"language_id"}) {
 
1819       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1820       qq|FROM translation_payment_terms t | .
 
1821       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1822       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
 
1823     my ($description_long, $output_numberformat, $output_dateformat,
 
1824       $output_longdates) =
 
1825       selectrow_query($self, $dbh, $query,
 
1826                       $self->{"language_id"}, $self->{"payment_id"});
 
1828     $self->{payment_terms} = $description_long if ($description_long);
 
1830     if ($output_dateformat) {
 
1831       foreach my $key (qw(netto_date skonto_date)) {
 
1833           $main::locale->reformat_date($myconfig, $self->{$key},
 
1839     if ($output_numberformat &&
 
1840         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1841       my $saved_numberformat = $myconfig->{"numberformat"};
 
1842       $myconfig->{"numberformat"} = $output_numberformat;
 
1843       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1844       $myconfig->{"numberformat"} = $saved_numberformat;
 
1848   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1849   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1850   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1851   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1852   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1853   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1854   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1856   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1858   $main::lxdebug->leave_sub();
 
1862 sub get_template_language {
 
1863   $main::lxdebug->enter_sub();
 
1865   my ($self, $myconfig) = @_;
 
1867   my $template_code = "";
 
1869   if ($self->{language_id}) {
 
1870     my $dbh = $self->get_standard_dbh($myconfig);
 
1871     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1872     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1875   $main::lxdebug->leave_sub();
 
1877   return $template_code;
 
1880 sub get_printer_code {
 
1881   $main::lxdebug->enter_sub();
 
1883   my ($self, $myconfig) = @_;
 
1885   my $template_code = "";
 
1887   if ($self->{printer_id}) {
 
1888     my $dbh = $self->get_standard_dbh($myconfig);
 
1889     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1890     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1893   $main::lxdebug->leave_sub();
 
1895   return $template_code;
 
1899   $main::lxdebug->enter_sub();
 
1901   my ($self, $myconfig) = @_;
 
1903   my $template_code = "";
 
1905   if ($self->{shipto_id}) {
 
1906     my $dbh = $self->get_standard_dbh($myconfig);
 
1907     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1908     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1909     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1912   $main::lxdebug->leave_sub();
 
1916   $main::lxdebug->enter_sub();
 
1918   my ($self, $dbh, $id, $module) = @_;
 
1923   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
1924                        contact phone fax email)) {
 
1925     if ($self->{"shipto$item"}) {
 
1926       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1928     push(@values, $self->{"shipto${item}"});
 
1932     if ($self->{shipto_id}) {
 
1933       my $query = qq|UPDATE shipto set
 
1935                        shiptodepartment_1 = ?,
 
1936                        shiptodepartment_2 = ?,
 
1945                      WHERE shipto_id = ?|;
 
1946       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1948       my $query = qq|SELECT * FROM shipto
 
1949                      WHERE shiptoname = ? AND
 
1950                        shiptodepartment_1 = ? AND
 
1951                        shiptodepartment_2 = ? AND
 
1952                        shiptostreet = ? AND
 
1953                        shiptozipcode = ? AND
 
1955                        shiptocountry = ? AND
 
1956                        shiptocontact = ? AND
 
1962       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1965           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
1966                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
1967                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
 
1968              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1969         do_query($self, $dbh, $query, $id, @values, $module);
 
1974   $main::lxdebug->leave_sub();
 
1978   $main::lxdebug->enter_sub();
 
1980   my ($self, $dbh) = @_;
 
1982   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
1984   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
1985   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
1986   $self->{"employee_id"} *= 1;
 
1988   $main::lxdebug->leave_sub();
 
1991 sub get_employee_data {
 
1992   $main::lxdebug->enter_sub();
 
1997   Common::check_params(\%params, qw(prefix));
 
1998   Common::check_params_x(\%params, qw(id));
 
2001     $main::lxdebug->leave_sub();
 
2005   my $myconfig = \%main::myconfig;
 
2006   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
2008   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
 
2011     my $user = User->new($login);
 
2012     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
 
2014     $self->{$params{prefix} . '_login'}   = $login;
 
2015     $self->{$params{prefix} . '_name'}  ||= $login;
 
2018   $main::lxdebug->leave_sub();
 
2022   $main::lxdebug->enter_sub();
 
2024   my ($self, $myconfig, $reference_date) = @_;
 
2026   $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
 
2028   my $dbh         = $self->get_standard_dbh($myconfig);
 
2029   my $query       = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
 
2030   my ($duedate)   = selectrow_query($self, $dbh, $query, $self->{payment_id});
 
2032   $main::lxdebug->leave_sub();
 
2038   $main::lxdebug->enter_sub();
 
2040   my ($self, $dbh, $id, $key) = @_;
 
2042   $key = "all_contacts" unless ($key);
 
2046     $main::lxdebug->leave_sub();
 
2051     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
2052     qq|FROM contacts | .
 
2053     qq|WHERE cp_cv_id = ? | .
 
2054     qq|ORDER BY lower(cp_name)|;
 
2056   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
2058   $main::lxdebug->leave_sub();
 
2062   $main::lxdebug->enter_sub();
 
2064   my ($self, $dbh, $key) = @_;
 
2066   my ($all, $old_id, $where, @values);
 
2068   if (ref($key) eq "HASH") {
 
2071     $key = "ALL_PROJECTS";
 
2073     foreach my $p (keys(%{$params})) {
 
2075         $all = $params->{$p};
 
2076       } elsif ($p eq "old_id") {
 
2077         $old_id = $params->{$p};
 
2078       } elsif ($p eq "key") {
 
2079         $key = $params->{$p};
 
2085     $where = "WHERE active ";
 
2087       if (ref($old_id) eq "ARRAY") {
 
2088         my @ids = grep({ $_ } @{$old_id});
 
2090           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
2091           push(@values, @ids);
 
2094         $where .= " OR (id = ?) ";
 
2095         push(@values, $old_id);
 
2101     qq|SELECT id, projectnumber, description, active | .
 
2104     qq|ORDER BY lower(projectnumber)|;
 
2106   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2108   $main::lxdebug->leave_sub();
 
2112   $main::lxdebug->enter_sub();
 
2114   my ($self, $dbh, $vc_id, $key) = @_;
 
2116   $key = "all_shipto" unless ($key);
 
2119     # get shipping addresses
 
2120     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2122     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2128   $main::lxdebug->leave_sub();
 
2132   $main::lxdebug->enter_sub();
 
2134   my ($self, $dbh, $key) = @_;
 
2136   $key = "all_printers" unless ($key);
 
2138   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2140   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2142   $main::lxdebug->leave_sub();
 
2146   $main::lxdebug->enter_sub();
 
2148   my ($self, $dbh, $params) = @_;
 
2151   $key = $params->{key};
 
2152   $key = "all_charts" unless ($key);
 
2154   my $transdate = quote_db_date($params->{transdate});
 
2157     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2159     qq|LEFT JOIN taxkeys tk ON | .
 
2160     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2161     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2162     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2163     qq|ORDER BY c.accno|;
 
2165   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2167   $main::lxdebug->leave_sub();
 
2170 sub _get_taxcharts {
 
2171   $main::lxdebug->enter_sub();
 
2173   my ($self, $dbh, $params) = @_;
 
2175   my $key = "all_taxcharts";
 
2178   if (ref $params eq 'HASH') {
 
2179     $key = $params->{key} if ($params->{key});
 
2180     if ($params->{module} eq 'AR') {
 
2181       push @where, 'taxkey NOT IN (8, 9, 18, 19)';
 
2183     } elsif ($params->{module} eq 'AP') {
 
2184       push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
 
2191   my $where = ' WHERE ' . join(' AND ', map { "($_)" } @where) if (@where);
 
2193   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
 
2195   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2197   $main::lxdebug->leave_sub();
 
2201   $main::lxdebug->enter_sub();
 
2203   my ($self, $dbh, $key) = @_;
 
2205   $key = "all_taxzones" unless ($key);
 
2207   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2209   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2211   $main::lxdebug->leave_sub();
 
2214 sub _get_employees {
 
2215   $main::lxdebug->enter_sub();
 
2217   my ($self, $dbh, $default_key, $key) = @_;
 
2219   $key = $default_key unless ($key);
 
2220   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2222   $main::lxdebug->leave_sub();
 
2225 sub _get_business_types {
 
2226   $main::lxdebug->enter_sub();
 
2228   my ($self, $dbh, $key) = @_;
 
2230   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2231   $options->{key} ||= "all_business_types";
 
2234   if (exists $options->{salesman}) {
 
2235     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2238   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2240   $main::lxdebug->leave_sub();
 
2243 sub _get_languages {
 
2244   $main::lxdebug->enter_sub();
 
2246   my ($self, $dbh, $key) = @_;
 
2248   $key = "all_languages" unless ($key);
 
2250   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2252   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2254   $main::lxdebug->leave_sub();
 
2257 sub _get_dunning_configs {
 
2258   $main::lxdebug->enter_sub();
 
2260   my ($self, $dbh, $key) = @_;
 
2262   $key = "all_dunning_configs" unless ($key);
 
2264   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2266   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2268   $main::lxdebug->leave_sub();
 
2271 sub _get_currencies {
 
2272 $main::lxdebug->enter_sub();
 
2274   my ($self, $dbh, $key) = @_;
 
2276   $key = "all_currencies" unless ($key);
 
2278   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2280   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2282   $main::lxdebug->leave_sub();
 
2286 $main::lxdebug->enter_sub();
 
2288   my ($self, $dbh, $key) = @_;
 
2290   $key = "all_payments" unless ($key);
 
2292   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
 
2294   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2296   $main::lxdebug->leave_sub();
 
2299 sub _get_customers {
 
2300   $main::lxdebug->enter_sub();
 
2302   my ($self, $dbh, $key) = @_;
 
2304   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2305   $options->{key}  ||= "all_customers";
 
2306   my $limit_clause   = "LIMIT $options->{limit}" if $options->{limit};
 
2307   my $where          = $options->{business_is_salesman} ? qq| AND business_id IN (SELECT id FROM business WHERE salesman)| : '';
 
2309   my $query = qq|SELECT * FROM customer WHERE NOT obsolete $where ORDER BY name $limit_clause|;
 
2310   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2312   $main::lxdebug->leave_sub();
 
2316   $main::lxdebug->enter_sub();
 
2318   my ($self, $dbh, $key) = @_;
 
2320   $key = "all_vendors" unless ($key);
 
2322   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2324   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2326   $main::lxdebug->leave_sub();
 
2329 sub _get_departments {
 
2330   $main::lxdebug->enter_sub();
 
2332   my ($self, $dbh, $key) = @_;
 
2334   $key = "all_departments" unless ($key);
 
2336   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2338   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2340   $main::lxdebug->leave_sub();
 
2343 sub _get_warehouses {
 
2344   $main::lxdebug->enter_sub();
 
2346   my ($self, $dbh, $param) = @_;
 
2348   my ($key, $bins_key);
 
2350   if ('' eq ref $param) {
 
2354     $key      = $param->{key};
 
2355     $bins_key = $param->{bins};
 
2358   my $query = qq|SELECT w.* FROM warehouse w
 
2359                  WHERE (NOT w.invalid) AND
 
2360                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2361                  ORDER BY w.sortkey|;
 
2363   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2366     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
 
2367     my $sth = prepare_query($self, $dbh, $query);
 
2369     foreach my $warehouse (@{ $self->{$key} }) {
 
2370       do_statement($self, $sth, $query, $warehouse->{id});
 
2371       $warehouse->{$bins_key} = [];
 
2373       while (my $ref = $sth->fetchrow_hashref()) {
 
2374         push @{ $warehouse->{$bins_key} }, $ref;
 
2380   $main::lxdebug->leave_sub();
 
2384   $main::lxdebug->enter_sub();
 
2386   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2388   my $query  = qq|SELECT * FROM $table|;
 
2389   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2391   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2393   $main::lxdebug->leave_sub();
 
2397 #  $main::lxdebug->enter_sub();
 
2399 #  my ($self, $dbh, $key) = @_;
 
2401 #  $key ||= "all_groups";
 
2403 #  my $groups = $main::auth->read_groups();
 
2405 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2407 #  $main::lxdebug->leave_sub();
 
2411   $main::lxdebug->enter_sub();
 
2416   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2417   my ($sth, $query, $ref);
 
2419   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2420   my $vc_id = $self->{"${vc}_id"};
 
2422   if ($params{"contacts"}) {
 
2423     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2426   if ($params{"shipto"}) {
 
2427     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2430   if ($params{"projects"} || $params{"all_projects"}) {
 
2431     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2432                          $params{"all_projects"} : $params{"projects"},
 
2433                          $params{"all_projects"} ? 1 : 0);
 
2436   if ($params{"printers"}) {
 
2437     $self->_get_printers($dbh, $params{"printers"});
 
2440   if ($params{"languages"}) {
 
2441     $self->_get_languages($dbh, $params{"languages"});
 
2444   if ($params{"charts"}) {
 
2445     $self->_get_charts($dbh, $params{"charts"});
 
2448   if ($params{"taxcharts"}) {
 
2449     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2452   if ($params{"taxzones"}) {
 
2453     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2456   if ($params{"employees"}) {
 
2457     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2460   if ($params{"salesmen"}) {
 
2461     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2464   if ($params{"business_types"}) {
 
2465     $self->_get_business_types($dbh, $params{"business_types"});
 
2468   if ($params{"dunning_configs"}) {
 
2469     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2472   if($params{"currencies"}) {
 
2473     $self->_get_currencies($dbh, $params{"currencies"});
 
2476   if($params{"customers"}) {
 
2477     $self->_get_customers($dbh, $params{"customers"});
 
2480   if($params{"vendors"}) {
 
2481     if (ref $params{"vendors"} eq 'HASH') {
 
2482       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2484       $self->_get_vendors($dbh, $params{"vendors"});
 
2488   if($params{"payments"}) {
 
2489     $self->_get_payments($dbh, $params{"payments"});
 
2492   if($params{"departments"}) {
 
2493     $self->_get_departments($dbh, $params{"departments"});
 
2496   if ($params{price_factors}) {
 
2497     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2500   if ($params{warehouses}) {
 
2501     $self->_get_warehouses($dbh, $params{warehouses});
 
2504 #  if ($params{groups}) {
 
2505 #    $self->_get_groups($dbh, $params{groups});
 
2508   if ($params{partsgroup}) {
 
2509     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2512   $main::lxdebug->leave_sub();
 
2515 # this sub gets the id and name from $table
 
2517   $main::lxdebug->enter_sub();
 
2519   my ($self, $myconfig, $table) = @_;
 
2521   # connect to database
 
2522   my $dbh = $self->get_standard_dbh($myconfig);
 
2524   $table = $table eq "customer" ? "customer" : "vendor";
 
2525   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2527   my ($query, @values);
 
2529   if (!$self->{openinvoices}) {
 
2531     if ($self->{customernumber} ne "") {
 
2532       $where = qq|(vc.customernumber ILIKE ?)|;
 
2533       push(@values, '%' . $self->{customernumber} . '%');
 
2535       $where = qq|(vc.name ILIKE ?)|;
 
2536       push(@values, '%' . $self->{$table} . '%');
 
2540       qq~SELECT vc.id, vc.name,
 
2541            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2543          WHERE $where AND (NOT vc.obsolete)
 
2547       qq~SELECT DISTINCT vc.id, vc.name,
 
2548            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2550          JOIN $table vc ON (a.${table}_id = vc.id)
 
2551          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2553     push(@values, '%' . $self->{$table} . '%');
 
2556   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2558   $main::lxdebug->leave_sub();
 
2560   return scalar(@{ $self->{name_list} });
 
2563 # the selection sub is used in the AR, AP, IS, IR and OE module
 
2566   $main::lxdebug->enter_sub();
 
2568   my ($self, $myconfig, $table, $module) = @_;
 
2571   my $dbh = $self->get_standard_dbh($myconfig);
 
2573   $table = $table eq "customer" ? "customer" : "vendor";
 
2575   my $query = qq|SELECT count(*) FROM $table|;
 
2576   my ($count) = selectrow_query($self, $dbh, $query);
 
2578   # build selection list
 
2579   if ($count < $myconfig->{vclimit}) {
 
2580     $query = qq|SELECT id, name, salesman_id
 
2581                 FROM $table WHERE NOT obsolete
 
2583     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2587   $self->get_employee($dbh);
 
2589   # setup sales contacts
 
2590   $query = qq|SELECT e.id, e.name
 
2592               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
 
2593   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2596   push(@{ $self->{all_employees} },
 
2597        { id   => $self->{employee_id},
 
2598          name => $self->{employee} });
 
2600   # sort the whole thing
 
2601   @{ $self->{all_employees} } =
 
2602     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
2604   if ($module eq 'AR') {
 
2606     # prepare query for departments
 
2607     $query = qq|SELECT id, description
 
2610                 ORDER BY description|;
 
2613     $query = qq|SELECT id, description
 
2615                 ORDER BY description|;
 
2618   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2621   $query = qq|SELECT id, description
 
2625   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2628   $query = qq|SELECT printer_description, id
 
2630               ORDER BY printer_description|;
 
2632   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2635   $query = qq|SELECT id, description
 
2639   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2641   $main::lxdebug->leave_sub();
 
2644 sub language_payment {
 
2645   $main::lxdebug->enter_sub();
 
2647   my ($self, $myconfig) = @_;
 
2649   my $dbh = $self->get_standard_dbh($myconfig);
 
2651   my $query = qq|SELECT id, description
 
2655   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2658   $query = qq|SELECT printer_description, id
 
2660               ORDER BY printer_description|;
 
2662   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2665   $query = qq|SELECT id, description
 
2669   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2671   # get buchungsgruppen
 
2672   $query = qq|SELECT id, description
 
2673               FROM buchungsgruppen|;
 
2675   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2677   $main::lxdebug->leave_sub();
 
2680 # this is only used for reports
 
2681 sub all_departments {
 
2682   $main::lxdebug->enter_sub();
 
2684   my ($self, $myconfig, $table) = @_;
 
2686   my $dbh = $self->get_standard_dbh($myconfig);
 
2689   if ($table eq 'customer') {
 
2690     $where = "WHERE role = 'P' ";
 
2693   my $query = qq|SELECT id, description
 
2696                  ORDER BY description|;
 
2697   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2699   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2701   $main::lxdebug->leave_sub();
 
2705   $main::lxdebug->enter_sub();
 
2707   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2710   if ($table eq "customer") {
 
2719   $self->all_vc($myconfig, $table, $module);
 
2721   # get last customers or vendors
 
2722   my ($query, $sth, $ref);
 
2724   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2729     my $transdate = "current_date";
 
2730     if ($self->{transdate}) {
 
2731       $transdate = $dbh->quote($self->{transdate});
 
2734     # now get the account numbers
 
2735     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2736                 FROM chart c, taxkeys tk
 
2737                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2738                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2741     $sth = $dbh->prepare($query);
 
2743     do_statement($self, $sth, $query, '%' . $module . '%');
 
2745     $self->{accounts} = "";
 
2746     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2748       foreach my $key (split(/:/, $ref->{link})) {
 
2749         if ($key =~ /\Q$module\E/) {
 
2751           # cross reference for keys
 
2752           $xkeyref{ $ref->{accno} } = $key;
 
2754           push @{ $self->{"${module}_links"}{$key} },
 
2755             { accno       => $ref->{accno},
 
2756               description => $ref->{description},
 
2757               taxkey      => $ref->{taxkey_id},
 
2758               tax_id      => $ref->{tax_id} };
 
2760           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2766   # get taxkeys and description
 
2767   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2768   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2770   if (($module eq "AP") || ($module eq "AR")) {
 
2771     # get tax rates and description
 
2772     $query = qq|SELECT * FROM tax|;
 
2773     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2779            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2780            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2781            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2782            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2784            d.description AS department,
 
2787          JOIN $table c ON (a.${table}_id = c.id)
 
2788          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2789          LEFT JOIN department d ON (d.id = a.department_id)
 
2791     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2793     foreach my $key (keys %$ref) {
 
2794       $self->{$key} = $ref->{$key};
 
2797     my $transdate = "current_date";
 
2798     if ($self->{transdate}) {
 
2799       $transdate = $dbh->quote($self->{transdate});
 
2802     # now get the account numbers
 
2803     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2805                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2807                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2808                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2811     $sth = $dbh->prepare($query);
 
2812     do_statement($self, $sth, $query, "%$module%");
 
2814     $self->{accounts} = "";
 
2815     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2817       foreach my $key (split(/:/, $ref->{link})) {
 
2818         if ($key =~ /\Q$module\E/) {
 
2820           # cross reference for keys
 
2821           $xkeyref{ $ref->{accno} } = $key;
 
2823           push @{ $self->{"${module}_links"}{$key} },
 
2824             { accno       => $ref->{accno},
 
2825               description => $ref->{description},
 
2826               taxkey      => $ref->{taxkey_id},
 
2827               tax_id      => $ref->{tax_id} };
 
2829           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2835     # get amounts from individual entries
 
2838            c.accno, c.description,
 
2839            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
 
2843          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2844          LEFT JOIN project p ON (p.id = a.project_id)
 
2845          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
2846                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
2847                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
2848                                         THEN tk.chart_id = a.chart_id
 
2851                                        OR (c.link='%tax%')) AND
 
2852                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
2853          WHERE a.trans_id = ?
 
2854          AND a.fx_transaction = '0'
 
2855          ORDER BY a.acc_trans_id, a.transdate|;
 
2856     $sth = $dbh->prepare($query);
 
2857     do_statement($self, $sth, $query, $self->{id});
 
2859     # get exchangerate for currency
 
2860     $self->{exchangerate} =
 
2861       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2864     # store amounts in {acc_trans}{$key} for multiple accounts
 
2865     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2866       $ref->{exchangerate} =
 
2867         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2868       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2871       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2872         $ref->{amount} *= -1;
 
2874       $ref->{index} = $index;
 
2876       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2882            d.curr AS currencies, d.closedto, d.revtrans,
 
2883            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2884            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2886     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2887     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2894             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
2895             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2896             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2898     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2899     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2901     if ($self->{"$self->{vc}_id"}) {
 
2903       # only setup currency
 
2904       ($self->{currency}) = split(/:/, $self->{currencies});
 
2908       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2910       # get exchangerate for currency
 
2911       $self->{exchangerate} =
 
2912         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2918   $main::lxdebug->leave_sub();
 
2922   $main::lxdebug->enter_sub();
 
2924   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2928   $table         = $table eq "customer" ? "customer" : "vendor";
 
2929   my %column_map = ("a.curr"                  => "currency",
 
2930                     "a.${table}_id"           => "${table}_id",
 
2931                     "a.department_id"         => "department_id",
 
2932                     "d.description"           => "department",
 
2933                     "ct.name"                 => $table,
 
2934                     "current_date + ct.terms" => "duedate",
 
2937   if ($self->{type} =~ /delivery_order/) {
 
2938     $arap  = 'delivery_orders';
 
2939     delete $column_map{"a.curr"};
 
2941   } elsif ($self->{type} =~ /_order/) {
 
2943     $where = "quotation = '0'";
 
2945   } elsif ($self->{type} =~ /_quotation/) {
 
2947     $where = "quotation = '1'";
 
2949   } elsif ($table eq 'customer') {
 
2957   $where           = "($where) AND" if ($where);
 
2958   my $query        = qq|SELECT MAX(id) FROM $arap
 
2959                         WHERE $where ${table}_id > 0|;
 
2960   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
2963   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
2964   $query           = qq|SELECT $column_spec
 
2966                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
2967                         LEFT JOIN department d  ON (a.department_id = d.id)
 
2969   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
2971   map { $self->{$_} = $ref->{$_} } values %column_map;
 
2973   $main::lxdebug->leave_sub();
 
2977   $main::lxdebug->enter_sub();
 
2980   my $myconfig          = shift  || \%::myconfig;
 
2981   my ($thisdate, $days) = @_;
 
2983   my $dbh = $self->get_standard_dbh($myconfig);
 
2988     my $dateformat = $myconfig->{dateformat};
 
2989     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2990     $thisdate = $dbh->quote($thisdate);
 
2991     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
2993     $query = qq|SELECT current_date AS thisdate|;
 
2996   ($thisdate) = selectrow_query($self, $dbh, $query);
 
2998   $main::lxdebug->leave_sub();
 
3004   $main::lxdebug->enter_sub();
 
3006   my ($self, $string) = @_;
 
3008   if ($string !~ /%/) {
 
3009     $string = "%$string%";
 
3012   $string =~ s/\'/\'\'/g;
 
3014   $main::lxdebug->leave_sub();
 
3020   $main::lxdebug->enter_sub();
 
3022   my ($self, $flds, $new, $count, $numrows) = @_;
 
3026   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
3031   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
3033     my $j = $item->{ndx} - 1;
 
3034     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
3038   for $i ($count + 1 .. $numrows) {
 
3039     map { delete $self->{"${_}_$i"} } @{$flds};
 
3042   $main::lxdebug->leave_sub();
 
3046   $main::lxdebug->enter_sub();
 
3048   my ($self, $myconfig) = @_;
 
3052   my $dbh = $self->dbconnect_noauto($myconfig);
 
3054   my $query = qq|DELETE FROM status
 
3055                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3056   my $sth = prepare_query($self, $dbh, $query);
 
3058   if ($self->{formname} =~ /(check|receipt)/) {
 
3059     for $i (1 .. $self->{rowcount}) {
 
3060       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
3063     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3067   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3068   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3070   my %queued = split / /, $self->{queued};
 
3073   if ($self->{formname} =~ /(check|receipt)/) {
 
3075     # this is a check or receipt, add one entry for each lineitem
 
3076     my ($accno) = split /--/, $self->{account};
 
3077     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3078                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3079     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3080     $sth = prepare_query($self, $dbh, $query);
 
3082     for $i (1 .. $self->{rowcount}) {
 
3083       if ($self->{"checked_$i"}) {
 
3084         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3090     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3091                 VALUES (?, ?, ?, ?, ?)|;
 
3092     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3093              $queued{$self->{formname}}, $self->{formname});
 
3099   $main::lxdebug->leave_sub();
 
3103   $main::lxdebug->enter_sub();
 
3105   my ($self, $dbh) = @_;
 
3107   my ($query, $printed, $emailed);
 
3109   my $formnames  = $self->{printed};
 
3110   my $emailforms = $self->{emailed};
 
3112   $query = qq|DELETE FROM status
 
3113                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3114   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3116   # this only applies to the forms
 
3117   # checks and receipts are posted when printed or queued
 
3119   if ($self->{queued}) {
 
3120     my %queued = split / /, $self->{queued};
 
3122     foreach my $formname (keys %queued) {
 
3123       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3124       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3126       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3127                   VALUES (?, ?, ?, ?, ?)|;
 
3128       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3130       $formnames  =~ s/\Q$self->{formname}\E//;
 
3131       $emailforms =~ s/\Q$self->{formname}\E//;
 
3136   # save printed, emailed info
 
3137   $formnames  =~ s/^ +//g;
 
3138   $emailforms =~ s/^ +//g;
 
3141   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3142   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3144   foreach my $formname (keys %status) {
 
3145     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3146     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3148     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3149                 VALUES (?, ?, ?, ?)|;
 
3150     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3153   $main::lxdebug->leave_sub();
 
3157 # $main::locale->text('SAVED')
 
3158 # $main::locale->text('DELETED')
 
3159 # $main::locale->text('ADDED')
 
3160 # $main::locale->text('PAYMENT POSTED')
 
3161 # $main::locale->text('POSTED')
 
3162 # $main::locale->text('POSTED AS NEW')
 
3163 # $main::locale->text('ELSE')
 
3164 # $main::locale->text('SAVED FOR DUNNING')
 
3165 # $main::locale->text('DUNNING STARTED')
 
3166 # $main::locale->text('PRINTED')
 
3167 # $main::locale->text('MAILED')
 
3168 # $main::locale->text('SCREENED')
 
3169 # $main::locale->text('CANCELED')
 
3170 # $main::locale->text('invoice')
 
3171 # $main::locale->text('proforma')
 
3172 # $main::locale->text('sales_order')
 
3173 # $main::locale->text('packing_list')
 
3174 # $main::locale->text('pick_list')
 
3175 # $main::locale->text('purchase_order')
 
3176 # $main::locale->text('bin_list')
 
3177 # $main::locale->text('sales_quotation')
 
3178 # $main::locale->text('request_quotation')
 
3181   $main::lxdebug->enter_sub();
 
3186   if(!exists $self->{employee_id}) {
 
3187     &get_employee($self, $dbh);
 
3191    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3192    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3193   my @values = (conv_i($self->{id}), $self->{login},
 
3194                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3195   do_query($self, $dbh, $query, @values);
 
3197   $main::lxdebug->leave_sub();
 
3201   $main::lxdebug->enter_sub();
 
3203   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3204   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3205   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3208   if ($trans_id ne "") {
 
3210       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 | .
 
3211       qq|FROM history_erp h | .
 
3212       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3213       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3216     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3218     $sth->execute() || $self->dberror("$query");
 
3220     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3221       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3222       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3223       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3224       $tempArray[$i++] = $hash_ref;
 
3226     $main::lxdebug->leave_sub() and return \@tempArray
 
3227       if ($i > 0 && $tempArray[0] ne "");
 
3229   $main::lxdebug->leave_sub();
 
3233 sub update_defaults {
 
3234   $main::lxdebug->enter_sub();
 
3236   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3239   if ($provided_dbh) {
 
3240     $dbh = $provided_dbh;
 
3242     $dbh = $self->dbconnect_noauto($myconfig);
 
3244   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3245   my $sth   = $dbh->prepare($query);
 
3247   $sth->execute || $self->dberror($query);
 
3248   my ($var) = $sth->fetchrow_array;
 
3251   if ($var =~ m/\d+$/) {
 
3252     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3253     my $len_diff = length($var) - $-[0] - length($new_var);
 
3254     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3260   $query = qq|UPDATE defaults SET $fld = ?|;
 
3261   do_query($self, $dbh, $query, $var);
 
3263   if (!$provided_dbh) {
 
3268   $main::lxdebug->leave_sub();
 
3273 sub update_business {
 
3274   $main::lxdebug->enter_sub();
 
3276   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3279   if ($provided_dbh) {
 
3280     $dbh = $provided_dbh;
 
3282     $dbh = $self->dbconnect_noauto($myconfig);
 
3285     qq|SELECT customernumberinit FROM business
 
3286        WHERE id = ? FOR UPDATE|;
 
3287   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3289   return undef unless $var;
 
3291   if ($var =~ m/\d+$/) {
 
3292     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3293     my $len_diff = length($var) - $-[0] - length($new_var);
 
3294     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3300   $query = qq|UPDATE business
 
3301               SET customernumberinit = ?
 
3303   do_query($self, $dbh, $query, $var, $business_id);
 
3305   if (!$provided_dbh) {
 
3310   $main::lxdebug->leave_sub();
 
3315 sub get_partsgroup {
 
3316   $main::lxdebug->enter_sub();
 
3318   my ($self, $myconfig, $p) = @_;
 
3319   my $target = $p->{target} || 'all_partsgroup';
 
3321   my $dbh = $self->get_standard_dbh($myconfig);
 
3323   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3325                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3328   if ($p->{searchitems} eq 'part') {
 
3329     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3331   if ($p->{searchitems} eq 'service') {
 
3332     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3334   if ($p->{searchitems} eq 'assembly') {
 
3335     $query .= qq|WHERE p.assembly = '1'|;
 
3337   if ($p->{searchitems} eq 'labor') {
 
3338     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3341   $query .= qq|ORDER BY partsgroup|;
 
3344     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3345                 ORDER BY partsgroup|;
 
3348   if ($p->{language_code}) {
 
3349     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3350                   t.description AS translation
 
3352                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3353                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3354                 ORDER BY translation|;
 
3355     @values = ($p->{language_code});
 
3358   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3360   $main::lxdebug->leave_sub();
 
3363 sub get_pricegroup {
 
3364   $main::lxdebug->enter_sub();
 
3366   my ($self, $myconfig, $p) = @_;
 
3368   my $dbh = $self->get_standard_dbh($myconfig);
 
3370   my $query = qq|SELECT p.id, p.pricegroup
 
3373   $query .= qq| ORDER BY pricegroup|;
 
3376     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3377                 ORDER BY pricegroup|;
 
3380   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3382   $main::lxdebug->leave_sub();
 
3386 # usage $form->all_years($myconfig, [$dbh])
 
3387 # return list of all years where bookings found
 
3390   $main::lxdebug->enter_sub();
 
3392   my ($self, $myconfig, $dbh) = @_;
 
3394   $dbh ||= $self->get_standard_dbh($myconfig);
 
3397   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3398                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3399   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3401   if ($myconfig->{dateformat} =~ /^yy/) {
 
3402     ($startdate) = split /\W/, $startdate;
 
3403     ($enddate) = split /\W/, $enddate;
 
3405     (@_) = split /\W/, $startdate;
 
3407     (@_) = split /\W/, $enddate;
 
3412   $startdate = substr($startdate,0,4);
 
3413   $enddate = substr($enddate,0,4);
 
3415   while ($enddate >= $startdate) {
 
3416     push @all_years, $enddate--;
 
3421   $main::lxdebug->leave_sub();
 
3425   $main::lxdebug->enter_sub();
 
3429   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3431   $main::lxdebug->leave_sub();
 
3435   $main::lxdebug->enter_sub();
 
3440   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3442   $main::lxdebug->leave_sub();
 
3451 SL::Form.pm - main data object.
 
3455 This is the main data object of Lx-Office.
 
3456 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3457 Points of interest for a beginner are:
 
3459  - $form->error            - renders a generic error in html. accepts an error message
 
3460  - $form->get_standard_dbh - returns a database connection for the
 
3462 =head1 SPECIAL FUNCTIONS
 
3466 =item _store_value()
 
3468 parses a complex var name, and stores it in the form.
 
3471   $form->_store_value($key, $value);
 
3473 keys must start with a string, and can contain various tokens.
 
3474 supported key structures are:
 
3477   simple key strings work as expected
 
3482   separating two keys by a dot (.) will result in a hash lookup for the inner value
 
3483   this is similar to the behaviour of java and templating mechanisms.
 
3485   filter.description => $form->{filter}->{description}
 
3487 3. array+hashref access
 
3489   adding brackets ([]) before the dot will cause the next hash to be put into an array.
 
3490   using [+] instead of [] will force a new array index. this is useful for recurring
 
3491   data structures like part lists. put a [+] into the first varname, and use [] on the
 
3494   repeating these names in your template:
 
3497     invoice.items[].parts_id
 
3501     $form->{invoice}->{items}->[
 
3515   using brackets at the end of a name will result in a pure array to be created.
 
3516   note that you mustn't use [+], which is reserved for array+hash access and will
 
3517   result in undefined behaviour in array context.
 
3519   filter.status[]  => $form->{status}->[ val1, val2, ... ]
 
3521 =item update_business PARAMS
 
3524  \%config,     - config hashref
 
3525  $business_id, - business id
 
3526  $dbh          - optional database handle
 
3528 handles business (thats customer/vendor types) sequences.
 
3530 special behaviour for empty strings in customerinitnumber field:
 
3531 will in this case not increase the value, and return undef.