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.1";
 
 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 (!%::myconfig || !$::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;
 
 775   $additional_params->{"conf_show_best_before"}       = $main::show_best_before;
 
 777   if (%main::debug_options) {
 
 778     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
 
 781   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 782     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 783       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 787   $main::lxdebug->leave_sub();
 
 792 sub parse_html_template {
 
 793   $main::lxdebug->enter_sub();
 
 795   my ($self, $file, $additional_params) = @_;
 
 797   $additional_params ||= { };
 
 799   $file = $self->_prepare_html_template($file, $additional_params);
 
 801   my $template = Template->new({ 'INTERPOLATE'  => 0,
 
 805                                  'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 806                                  'INCLUDE_PATH' => '.:templates/webpages',
 
 809   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 811   my $in = IO::File->new($file, 'r');
 
 814     print STDERR "Error opening template file: $!";
 
 815     $main::lxdebug->leave_sub();
 
 819   my $input = join('', <$in>);
 
 823     $input = $main::locale->{iconv}->convert($input);
 
 827   if (!$template->process(\$input, $additional_params, \$output)) {
 
 828     print STDERR $template->error();
 
 831   $main::lxdebug->leave_sub();
 
 836 sub show_generic_error {
 
 837   $main::lxdebug->enter_sub();
 
 839   my ($self, $error, %params) = @_;
 
 842     'title_error' => $params{title},
 
 843     'label_error' => $error,
 
 846   if ($params{action}) {
 
 849     map { delete($self->{$_}); } qw(action);
 
 850     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 852     $add_params->{SHOW_BUTTON}  = 1;
 
 853     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 854     $add_params->{VARIABLES}    = \@vars;
 
 856   } elsif ($params{back_button}) {
 
 857     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 860   $self->{title} = $params{title} if $params{title};
 
 863   print $self->parse_html_template("generic/error", $add_params);
 
 865   $main::lxdebug->leave_sub();
 
 867   die("Error: $error\n");
 
 870 sub show_generic_information {
 
 871   $main::lxdebug->enter_sub();
 
 873   my ($self, $text, $title) = @_;
 
 876     'title_information' => $title,
 
 877     'label_information' => $text,
 
 880   $self->{title} = $title if ($title);
 
 883   print $self->parse_html_template("generic/information", $add_params);
 
 885   $main::lxdebug->leave_sub();
 
 887   die("Information: $text\n");
 
 890 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 891 # changed it to accept an arbitrary number of triggers - sschoeling
 
 893   $main::lxdebug->enter_sub();
 
 896   my $myconfig = shift;
 
 899   # set dateform for jsscript
 
 902     "dd.mm.yy" => "%d.%m.%Y",
 
 903     "dd-mm-yy" => "%d-%m-%Y",
 
 904     "dd/mm/yy" => "%d/%m/%Y",
 
 905     "mm/dd/yy" => "%m/%d/%Y",
 
 906     "mm-dd-yy" => "%m-%d-%Y",
 
 907     "yyyy-mm-dd" => "%Y-%m-%d",
 
 910   my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
 
 911     $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
 
 918       inputField : "| . (shift) . qq|",
 
 919       ifFormat :"$ifFormat",
 
 920       align : "| .  (shift) . qq|",
 
 921       button : "| . (shift) . qq|"
 
 927        <script type="text/javascript">
 
 928        <!--| . join("", @triggers) . qq|//-->
 
 932   $main::lxdebug->leave_sub();
 
 935 }    #end sub write_trigger
 
 938   $main::lxdebug->enter_sub();
 
 940   my ($self, $msg) = @_;
 
 942   if ($self->{callback}) {
 
 944     my ($script, $argv) = split(/\?/, $self->{callback}, 2);
 
 946     $script =~ s|[^a-zA-Z0-9_\.]||g;
 
 947     exec("perl", "$script", $argv);
 
 955   $main::lxdebug->leave_sub();
 
 958 # sort of columns removed - empty sub
 
 960   $main::lxdebug->enter_sub();
 
 962   my ($self, @columns) = @_;
 
 964   $main::lxdebug->leave_sub();
 
 970   $main::lxdebug->enter_sub(2);
 
 972   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 978   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
 980   my $neg = ($amount =~ s/^-//);
 
 981   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
 983   if (defined($places) && ($places ne '')) {
 
 989         my ($actual_places) = ($amount =~ /\.(\d+)/);
 
 990         $actual_places = length($actual_places);
 
 991         $places = $actual_places > $places ? $actual_places : $places;
 
 994     $amount = $self->round_amount($amount, $places);
 
 997   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 998   my @p = split(/\./, $amount); # split amount at decimal point
 
1000   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
1003   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
1006     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
1007     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
1008                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
1012   $main::lxdebug->leave_sub(2);
 
1016 sub format_amount_units {
 
1017   $main::lxdebug->enter_sub();
 
1022   my $myconfig         = \%main::myconfig;
 
1023   my $amount           = $params{amount} * 1;
 
1024   my $places           = $params{places};
 
1025   my $part_unit_name   = $params{part_unit};
 
1026   my $amount_unit_name = $params{amount_unit};
 
1027   my $conv_units       = $params{conv_units};
 
1028   my $max_places       = $params{max_places};
 
1030   if (!$part_unit_name) {
 
1031     $main::lxdebug->leave_sub();
 
1035   AM->retrieve_all_units();
 
1036   my $all_units        = $main::all_units;
 
1038   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
1039     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
1042   if (!scalar @{ $conv_units }) {
 
1043     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
1044     $main::lxdebug->leave_sub();
 
1048   my $part_unit  = $all_units->{$part_unit_name};
 
1049   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
1051   $amount       *= $conv_unit->{factor};
 
1056   foreach my $unit (@$conv_units) {
 
1057     my $last = $unit->{name} eq $part_unit->{name};
 
1059       $num     = int($amount / $unit->{factor});
 
1060       $amount -= $num * $unit->{factor};
 
1063     if ($last ? $amount : $num) {
 
1064       push @values, { "unit"   => $unit->{name},
 
1065                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
1066                       "places" => $last ? $places : 0 };
 
1073     push @values, { "unit"   => $part_unit_name,
 
1078   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
1080   $main::lxdebug->leave_sub();
 
1086   $main::lxdebug->enter_sub(2);
 
1091   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
1092   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
1093   $input =~ s/\#\#/\#/g;
 
1095   $main::lxdebug->leave_sub(2);
 
1103   $main::lxdebug->enter_sub(2);
 
1105   my ($self, $myconfig, $amount) = @_;
 
1107   if (   ($myconfig->{numberformat} eq '1.000,00')
 
1108       || ($myconfig->{numberformat} eq '1000,00')) {
 
1113   if ($myconfig->{numberformat} eq "1'000.00") {
 
1119   $main::lxdebug->leave_sub(2);
 
1121   return ($amount * 1);
 
1125   $main::lxdebug->enter_sub(2);
 
1127   my ($self, $amount, $places) = @_;
 
1130   # Rounding like "Kaufmannsrunden" (see http://de.wikipedia.org/wiki/Rundung )
 
1132   # Round amounts to eight places before rounding to the requested
 
1133   # number of places. This gets rid of errors due to internal floating
 
1134   # point representation.
 
1135   $amount       = $self->round_amount($amount, 8) if $places < 8;
 
1136   $amount       = $amount * (10**($places));
 
1137   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1139   $main::lxdebug->leave_sub(2);
 
1141   return $round_amount;
 
1145 sub parse_template {
 
1146   $main::lxdebug->enter_sub();
 
1148   my ($self, $myconfig, $userspath) = @_;
 
1149   my ($template, $out);
 
1153   $self->{"cwd"} = getcwd();
 
1154   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1158   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1159     $template       = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1160     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
1162   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1163     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1164     $template         = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1165     $ext_for_format   = 'pdf';
 
1167   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1168     $template       = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1169     $ext_for_format = 'html';
 
1171   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1172     $template       = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1173     $ext_for_format = 'xml';
 
1175   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
 
1176     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1178   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
 
1179     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1181   } elsif ( $self->{"format"} =~ /excel/i ) {
 
1182     $template = ExcelTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1183     $ext_for_format = 'xls';
 
1185   } elsif ( defined $self->{'format'}) {
 
1186     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1188   } elsif ( $self->{'format'} eq '' ) {
 
1189     $self->error("No Outputformat given: $self->{'format'}");
 
1191   } else { #Catch the rest
 
1192     $self->error("Outputformat not defined: $self->{'format'}");
 
1195   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1196   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1198   if (!$self->{employee_id}) {
 
1199     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
 
1202   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
 
1204   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1206   # OUT is used for the media, screen, printer, email
 
1207   # for postscript we store a copy in a temporary file
 
1209   my $prepend_userspath;
 
1211   if (!$self->{tmpfile}) {
 
1212     $self->{tmpfile}   = "${fileid}.$self->{IN}";
 
1213     $prepend_userspath = 1;
 
1216   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
 
1218   $self->{tmpfile} =~ s|.*/||;
 
1219   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
 
1220   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
 
1222   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1223     $out = $self->{OUT};
 
1224     $self->{OUT} = ">$self->{tmpfile}";
 
1228     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
 
1230     open(OUT, ">-") or $self->error("STDOUT : $!");
 
1234   if (!$template->parse(*OUT)) {
 
1236     $self->error("$self->{IN} : " . $template->get_error());
 
1241   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1243     if ($self->{media} eq 'email') {
 
1245       my $mail = new Mailer;
 
1247       map { $mail->{$_} = $self->{$_} }
 
1248         qw(cc bcc subject message version format);
 
1249       $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
1250       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1251       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1252       $mail->{fileid} = "$fileid.";
 
1253       $myconfig->{signature} =~ s/\r//g;
 
1255       # if we send html or plain text inline
 
1256       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1257         $mail->{contenttype} = "text/html";
 
1259         $mail->{message}       =~ s/\r//g;
 
1260         $mail->{message}       =~ s/\n/<br>\n/g;
 
1261         $myconfig->{signature} =~ s/\n/<br>\n/g;
 
1262         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
1264         open(IN, $self->{tmpfile})
 
1265           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1267           $mail->{message} .= $_;
 
1274         if (!$self->{"do_not_attach"}) {
 
1275           my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1276           $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1277           $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1278                                      "name"     => $attachment_name }];
 
1281         $mail->{message}  =~ s/\r//g;
 
1282         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1286       my $err = $mail->send();
 
1287       $self->error($self->cleanup . "$err") if ($err);
 
1291       $self->{OUT} = $out;
 
1293       my $numbytes = (-s $self->{tmpfile});
 
1294       open(IN, $self->{tmpfile})
 
1295         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1297       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1299       chdir("$self->{cwd}");
 
1300       #print(STDERR "Kopien $self->{copies}\n");
 
1301       #print(STDERR "OUT $self->{OUT}\n");
 
1302       for my $i (1 .. $self->{copies}) {
 
1304           open(OUT, $self->{OUT})
 
1305             or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1307           $self->{attachment_filename} = ($self->{attachment_filename})
 
1308                                        ? $self->{attachment_filename}
 
1309                                        : $self->generate_attachment_filename();
 
1311           # launch application
 
1312           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1313 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1314 Content-Length: $numbytes
 
1318           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
 
1339   chdir("$self->{cwd}");
 
1340   $main::lxdebug->leave_sub();
 
1343 sub get_formname_translation {
 
1344   $main::lxdebug->enter_sub();
 
1345   my ($self, $formname) = @_;
 
1347   $formname ||= $self->{formname};
 
1349   my %formname_translations = (
 
1350     bin_list                => $main::locale->text('Bin List'),
 
1351     credit_note             => $main::locale->text('Credit Note'),
 
1352     invoice                 => $main::locale->text('Invoice'),
 
1353     packing_list            => $main::locale->text('Packing List'),
 
1354     pick_list               => $main::locale->text('Pick List'),
 
1355     proforma                => $main::locale->text('Proforma Invoice'),
 
1356     purchase_order          => $main::locale->text('Purchase Order'),
 
1357     request_quotation       => $main::locale->text('RFQ'),
 
1358     sales_order             => $main::locale->text('Confirmation'),
 
1359     sales_quotation         => $main::locale->text('Quotation'),
 
1360     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1361     storno_packing_list     => $main::locale->text('Storno Packing List'),
 
1362     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1363     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1364     dunning                 => $main::locale->text('Dunning'),
 
1367   $main::lxdebug->leave_sub();
 
1368   return $formname_translations{$formname}
 
1371 sub get_number_prefix_for_type {
 
1372   $main::lxdebug->enter_sub();
 
1376       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1377     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1378     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1381   $main::lxdebug->leave_sub();
 
1385 sub get_extension_for_format {
 
1386   $main::lxdebug->enter_sub();
 
1389   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1390                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1391                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1392                 : $self->{format} =~ /excel/i        ? ".xls"
 
1393                 : $self->{format} =~ /html/i         ? ".html"
 
1396   $main::lxdebug->leave_sub();
 
1400 sub generate_attachment_filename {
 
1401   $main::lxdebug->enter_sub();
 
1404   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1405   my $prefix              = $self->get_number_prefix_for_type();
 
1407   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1408     $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1410   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1411     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1414     $attachment_filename = "";
 
1417   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1418   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1420   $main::lxdebug->leave_sub();
 
1421   return $attachment_filename;
 
1424 sub generate_email_subject {
 
1425   $main::lxdebug->enter_sub();
 
1428   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1429   my $prefix  = $self->get_number_prefix_for_type();
 
1431   if ($subject && $self->{"${prefix}number"}) {
 
1432     $subject .= " " . $self->{"${prefix}number"}
 
1435   $main::lxdebug->leave_sub();
 
1440   $main::lxdebug->enter_sub();
 
1444   chdir("$self->{tmpdir}");
 
1447   if (-f "$self->{tmpfile}.err") {
 
1448     open(FH, "$self->{tmpfile}.err");
 
1453   if ($self->{tmpfile} && ! $::keep_temp_files) {
 
1454     $self->{tmpfile} =~ s|.*/||g;
 
1456     $self->{tmpfile} =~ s/\.\w+$//g;
 
1457     my $tmpfile = $self->{tmpfile};
 
1458     unlink(<$tmpfile.*>);
 
1461   chdir("$self->{cwd}");
 
1463   $main::lxdebug->leave_sub();
 
1469   $main::lxdebug->enter_sub();
 
1471   my ($self, $date, $myconfig) = @_;
 
1474   if ($date && $date =~ /\D/) {
 
1476     if ($myconfig->{dateformat} =~ /^yy/) {
 
1477       ($yy, $mm, $dd) = split /\D/, $date;
 
1479     if ($myconfig->{dateformat} =~ /^mm/) {
 
1480       ($mm, $dd, $yy) = split /\D/, $date;
 
1482     if ($myconfig->{dateformat} =~ /^dd/) {
 
1483       ($dd, $mm, $yy) = split /\D/, $date;
 
1488     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1489     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1491     $dd = "0$dd" if ($dd < 10);
 
1492     $mm = "0$mm" if ($mm < 10);
 
1494     $date = "$yy$mm$dd";
 
1497   $main::lxdebug->leave_sub();
 
1502 # Database routines used throughout
 
1505   $main::lxdebug->enter_sub(2);
 
1507   my ($self, $myconfig) = @_;
 
1509   # connect to database
 
1511     DBI->connect($myconfig->{dbconnect},
 
1512                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
 
1516   if ($myconfig->{dboptions}) {
 
1517     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1520   $main::lxdebug->leave_sub(2);
 
1525 sub dbconnect_noauto {
 
1526   $main::lxdebug->enter_sub();
 
1528   my ($self, $myconfig) = @_;
 
1530   # connect to database
 
1532     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
 
1533                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
 
1537   if ($myconfig->{dboptions}) {
 
1538     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1541   $main::lxdebug->leave_sub();
 
1546 sub get_standard_dbh {
 
1547   $main::lxdebug->enter_sub(2);
 
1549   my ($self, $myconfig) = @_;
 
1551   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1552     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1553     undef $standard_dbh;
 
1556   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1558   $main::lxdebug->leave_sub(2);
 
1560   return $standard_dbh;
 
1564   $main::lxdebug->enter_sub();
 
1566   my ($self, $date, $myconfig) = @_;
 
1567   my $dbh = $self->dbconnect($myconfig);
 
1569   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1570   my $sth = prepare_execute_query($self, $dbh, $query, $date);
 
1571   my ($closed) = $sth->fetchrow_array;
 
1573   $main::lxdebug->leave_sub();
 
1578 sub update_balance {
 
1579   $main::lxdebug->enter_sub();
 
1581   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1583   # if we have a value, go do it
 
1586     # retrieve balance from table
 
1587     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1588     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1589     my ($balance) = $sth->fetchrow_array;
 
1595     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1596     do_query($self, $dbh, $query, @values);
 
1598   $main::lxdebug->leave_sub();
 
1601 sub update_exchangerate {
 
1602   $main::lxdebug->enter_sub();
 
1604   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1606   # some sanity check for currency
 
1608     $main::lxdebug->leave_sub();
 
1611   $query = qq|SELECT curr FROM defaults|;
 
1613   my ($currency) = selectrow_query($self, $dbh, $query);
 
1614   my ($defaultcurrency) = split m/:/, $currency;
 
1617   if ($curr eq $defaultcurrency) {
 
1618     $main::lxdebug->leave_sub();
 
1622   $query = qq|SELECT e.curr FROM exchangerate e
 
1623                  WHERE e.curr = ? AND e.transdate = ?
 
1625   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1634   $buy = conv_i($buy, "NULL");
 
1635   $sell = conv_i($sell, "NULL");
 
1638   if ($buy != 0 && $sell != 0) {
 
1639     $set = "buy = $buy, sell = $sell";
 
1640   } elsif ($buy != 0) {
 
1641     $set = "buy = $buy";
 
1642   } elsif ($sell != 0) {
 
1643     $set = "sell = $sell";
 
1646   if ($sth->fetchrow_array) {
 
1647     $query = qq|UPDATE exchangerate
 
1653     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1654                 VALUES (?, $buy, $sell, ?)|;
 
1657   do_query($self, $dbh, $query, $curr, $transdate);
 
1659   $main::lxdebug->leave_sub();
 
1662 sub save_exchangerate {
 
1663   $main::lxdebug->enter_sub();
 
1665   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1667   my $dbh = $self->dbconnect($myconfig);
 
1671   $buy  = $rate if $fld eq 'buy';
 
1672   $sell = $rate if $fld eq 'sell';
 
1675   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1680   $main::lxdebug->leave_sub();
 
1683 sub get_exchangerate {
 
1684   $main::lxdebug->enter_sub();
 
1686   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1689   unless ($transdate) {
 
1690     $main::lxdebug->leave_sub();
 
1694   $query = qq|SELECT curr FROM defaults|;
 
1696   my ($currency) = selectrow_query($self, $dbh, $query);
 
1697   my ($defaultcurrency) = split m/:/, $currency;
 
1699   if ($currency eq $defaultcurrency) {
 
1700     $main::lxdebug->leave_sub();
 
1704   $query = qq|SELECT e.$fld FROM exchangerate e
 
1705                  WHERE e.curr = ? AND e.transdate = ?|;
 
1706   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1710   $main::lxdebug->leave_sub();
 
1712   return $exchangerate;
 
1715 sub check_exchangerate {
 
1716   $main::lxdebug->enter_sub();
 
1718   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1720   if ($fld !~/^buy|sell$/) {
 
1721     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1724   unless ($transdate) {
 
1725     $main::lxdebug->leave_sub();
 
1729   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1731   if ($currency eq $defaultcurrency) {
 
1732     $main::lxdebug->leave_sub();
 
1736   my $dbh   = $self->get_standard_dbh($myconfig);
 
1737   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1738                  WHERE e.curr = ? AND e.transdate = ?|;
 
1740   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1742   $main::lxdebug->leave_sub();
 
1744   return $exchangerate;
 
1747 sub get_all_currencies {
 
1748   $main::lxdebug->enter_sub();
 
1750   my ($self, $myconfig) = @_;
 
1751   my $dbh = $self->get_standard_dbh($myconfig);
 
1753   my $query = qq|SELECT curr FROM defaults|;
 
1755   my ($curr)     = selectrow_query($self, $dbh, $query);
 
1756   my @currencies = grep { $_ } map { s/\s//g; $_ } split m/:/, $curr;
 
1758   $main::lxdebug->leave_sub();
 
1763 sub get_default_currency {
 
1764   $main::lxdebug->enter_sub();
 
1766   my ($self, $myconfig) = @_;
 
1767   my @currencies        = $self->get_all_currencies($myconfig);
 
1769   $main::lxdebug->leave_sub();
 
1771   return $currencies[0];
 
1774 sub set_payment_options {
 
1775   $main::lxdebug->enter_sub();
 
1777   my ($self, $myconfig, $transdate) = @_;
 
1779   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1781   my $dbh = $self->get_standard_dbh($myconfig);
 
1784     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
 
1785     qq|FROM payment_terms p | .
 
1788   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1789    $self->{payment_terms}) =
 
1790      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1792   if ($transdate eq "") {
 
1793     if ($self->{invdate}) {
 
1794       $transdate = $self->{invdate};
 
1796       $transdate = $self->{transdate};
 
1801     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1802     qq|FROM payment_terms|;
 
1803   ($self->{netto_date}, $self->{skonto_date}) =
 
1804     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1806   my ($invtotal, $total);
 
1807   my (%amounts, %formatted_amounts);
 
1809   if ($self->{type} =~ /_order$/) {
 
1810     $amounts{invtotal} = $self->{ordtotal};
 
1811     $amounts{total}    = $self->{ordtotal};
 
1813   } elsif ($self->{type} =~ /_quotation$/) {
 
1814     $amounts{invtotal} = $self->{quototal};
 
1815     $amounts{total}    = $self->{quototal};
 
1818     $amounts{invtotal} = $self->{invtotal};
 
1819     $amounts{total}    = $self->{total};
 
1821   $amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto};
 
1823   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1825   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1826   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1827   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1829   foreach (keys %amounts) {
 
1830     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1831     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1834   if ($self->{"language_id"}) {
 
1836       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1837       qq|FROM translation_payment_terms t | .
 
1838       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1839       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
 
1840     my ($description_long, $output_numberformat, $output_dateformat,
 
1841       $output_longdates) =
 
1842       selectrow_query($self, $dbh, $query,
 
1843                       $self->{"language_id"}, $self->{"payment_id"});
 
1845     $self->{payment_terms} = $description_long if ($description_long);
 
1847     if ($output_dateformat) {
 
1848       foreach my $key (qw(netto_date skonto_date)) {
 
1850           $main::locale->reformat_date($myconfig, $self->{$key},
 
1856     if ($output_numberformat &&
 
1857         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1858       my $saved_numberformat = $myconfig->{"numberformat"};
 
1859       $myconfig->{"numberformat"} = $output_numberformat;
 
1860       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1861       $myconfig->{"numberformat"} = $saved_numberformat;
 
1865   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1866   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1867   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1868   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1869   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1870   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1871   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1873   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1875   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
 
1877   $main::lxdebug->leave_sub();
 
1881 sub get_template_language {
 
1882   $main::lxdebug->enter_sub();
 
1884   my ($self, $myconfig) = @_;
 
1886   my $template_code = "";
 
1888   if ($self->{language_id}) {
 
1889     my $dbh = $self->get_standard_dbh($myconfig);
 
1890     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1891     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1894   $main::lxdebug->leave_sub();
 
1896   return $template_code;
 
1899 sub get_printer_code {
 
1900   $main::lxdebug->enter_sub();
 
1902   my ($self, $myconfig) = @_;
 
1904   my $template_code = "";
 
1906   if ($self->{printer_id}) {
 
1907     my $dbh = $self->get_standard_dbh($myconfig);
 
1908     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1909     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1912   $main::lxdebug->leave_sub();
 
1914   return $template_code;
 
1918   $main::lxdebug->enter_sub();
 
1920   my ($self, $myconfig) = @_;
 
1922   my $template_code = "";
 
1924   if ($self->{shipto_id}) {
 
1925     my $dbh = $self->get_standard_dbh($myconfig);
 
1926     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1927     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1928     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1931   $main::lxdebug->leave_sub();
 
1935   $main::lxdebug->enter_sub();
 
1937   my ($self, $dbh, $id, $module) = @_;
 
1942   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
1943                        contact phone fax email)) {
 
1944     if ($self->{"shipto$item"}) {
 
1945       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1947     push(@values, $self->{"shipto${item}"});
 
1951     if ($self->{shipto_id}) {
 
1952       my $query = qq|UPDATE shipto set
 
1954                        shiptodepartment_1 = ?,
 
1955                        shiptodepartment_2 = ?,
 
1964                      WHERE shipto_id = ?|;
 
1965       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1967       my $query = qq|SELECT * FROM shipto
 
1968                      WHERE shiptoname = ? AND
 
1969                        shiptodepartment_1 = ? AND
 
1970                        shiptodepartment_2 = ? AND
 
1971                        shiptostreet = ? AND
 
1972                        shiptozipcode = ? AND
 
1974                        shiptocountry = ? AND
 
1975                        shiptocontact = ? AND
 
1981       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1984           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
1985                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
1986                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
 
1987              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1988         do_query($self, $dbh, $query, $id, @values, $module);
 
1993   $main::lxdebug->leave_sub();
 
1997   $main::lxdebug->enter_sub();
 
1999   my ($self, $dbh) = @_;
 
2001   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
2003   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
2004   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
2005   $self->{"employee_id"} *= 1;
 
2007   $main::lxdebug->leave_sub();
 
2010 sub get_employee_data {
 
2011   $main::lxdebug->enter_sub();
 
2016   Common::check_params(\%params, qw(prefix));
 
2017   Common::check_params_x(\%params, qw(id));
 
2020     $main::lxdebug->leave_sub();
 
2024   my $myconfig = \%main::myconfig;
 
2025   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
2027   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
 
2030     my $user = User->new($login);
 
2031     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
 
2033     $self->{$params{prefix} . '_login'}   = $login;
 
2034     $self->{$params{prefix} . '_name'}  ||= $login;
 
2037   $main::lxdebug->leave_sub();
 
2041   $main::lxdebug->enter_sub();
 
2043   my ($self, $myconfig, $reference_date) = @_;
 
2045   $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
 
2047   my $dbh         = $self->get_standard_dbh($myconfig);
 
2048   my $query       = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
 
2049   my ($duedate)   = selectrow_query($self, $dbh, $query, $self->{payment_id});
 
2051   $main::lxdebug->leave_sub();
 
2057   $main::lxdebug->enter_sub();
 
2059   my ($self, $dbh, $id, $key) = @_;
 
2061   $key = "all_contacts" unless ($key);
 
2065     $main::lxdebug->leave_sub();
 
2070     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
2071     qq|FROM contacts | .
 
2072     qq|WHERE cp_cv_id = ? | .
 
2073     qq|ORDER BY lower(cp_name)|;
 
2075   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
2077   $main::lxdebug->leave_sub();
 
2081   $main::lxdebug->enter_sub();
 
2083   my ($self, $dbh, $key) = @_;
 
2085   my ($all, $old_id, $where, @values);
 
2087   if (ref($key) eq "HASH") {
 
2090     $key = "ALL_PROJECTS";
 
2092     foreach my $p (keys(%{$params})) {
 
2094         $all = $params->{$p};
 
2095       } elsif ($p eq "old_id") {
 
2096         $old_id = $params->{$p};
 
2097       } elsif ($p eq "key") {
 
2098         $key = $params->{$p};
 
2104     $where = "WHERE active ";
 
2106       if (ref($old_id) eq "ARRAY") {
 
2107         my @ids = grep({ $_ } @{$old_id});
 
2109           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
2110           push(@values, @ids);
 
2113         $where .= " OR (id = ?) ";
 
2114         push(@values, $old_id);
 
2120     qq|SELECT id, projectnumber, description, active | .
 
2123     qq|ORDER BY lower(projectnumber)|;
 
2125   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2127   $main::lxdebug->leave_sub();
 
2131   $main::lxdebug->enter_sub();
 
2133   my ($self, $dbh, $vc_id, $key) = @_;
 
2135   $key = "all_shipto" unless ($key);
 
2138     # get shipping addresses
 
2139     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2141     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2147   $main::lxdebug->leave_sub();
 
2151   $main::lxdebug->enter_sub();
 
2153   my ($self, $dbh, $key) = @_;
 
2155   $key = "all_printers" unless ($key);
 
2157   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2159   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2161   $main::lxdebug->leave_sub();
 
2165   $main::lxdebug->enter_sub();
 
2167   my ($self, $dbh, $params) = @_;
 
2170   $key = $params->{key};
 
2171   $key = "all_charts" unless ($key);
 
2173   my $transdate = quote_db_date($params->{transdate});
 
2176     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2178     qq|LEFT JOIN taxkeys tk ON | .
 
2179     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2180     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2181     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2182     qq|ORDER BY c.accno|;
 
2184   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2186   $main::lxdebug->leave_sub();
 
2189 sub _get_taxcharts {
 
2190   $main::lxdebug->enter_sub();
 
2192   my ($self, $dbh, $params) = @_;
 
2194   my $key = "all_taxcharts";
 
2197   if (ref $params eq 'HASH') {
 
2198     $key = $params->{key} if ($params->{key});
 
2199     if ($params->{module} eq 'AR') {
 
2200       push @where, 'taxkey NOT IN (8, 9, 18, 19)';
 
2202     } elsif ($params->{module} eq 'AP') {
 
2203       push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
 
2210   my $where = ' WHERE ' . join(' AND ', map { "($_)" } @where) if (@where);
 
2212   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
 
2214   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2216   $main::lxdebug->leave_sub();
 
2220   $main::lxdebug->enter_sub();
 
2222   my ($self, $dbh, $key) = @_;
 
2224   $key = "all_taxzones" unless ($key);
 
2226   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2228   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2230   $main::lxdebug->leave_sub();
 
2233 sub _get_employees {
 
2234   $main::lxdebug->enter_sub();
 
2236   my ($self, $dbh, $default_key, $key) = @_;
 
2238   $key = $default_key unless ($key);
 
2239   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2241   $main::lxdebug->leave_sub();
 
2244 sub _get_business_types {
 
2245   $main::lxdebug->enter_sub();
 
2247   my ($self, $dbh, $key) = @_;
 
2249   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2250   $options->{key} ||= "all_business_types";
 
2253   if (exists $options->{salesman}) {
 
2254     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2257   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2259   $main::lxdebug->leave_sub();
 
2262 sub _get_languages {
 
2263   $main::lxdebug->enter_sub();
 
2265   my ($self, $dbh, $key) = @_;
 
2267   $key = "all_languages" unless ($key);
 
2269   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2271   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2273   $main::lxdebug->leave_sub();
 
2276 sub _get_dunning_configs {
 
2277   $main::lxdebug->enter_sub();
 
2279   my ($self, $dbh, $key) = @_;
 
2281   $key = "all_dunning_configs" unless ($key);
 
2283   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2285   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2287   $main::lxdebug->leave_sub();
 
2290 sub _get_currencies {
 
2291 $main::lxdebug->enter_sub();
 
2293   my ($self, $dbh, $key) = @_;
 
2295   $key = "all_currencies" unless ($key);
 
2297   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2299   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2301   $main::lxdebug->leave_sub();
 
2305 $main::lxdebug->enter_sub();
 
2307   my ($self, $dbh, $key) = @_;
 
2309   $key = "all_payments" unless ($key);
 
2311   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
 
2313   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2315   $main::lxdebug->leave_sub();
 
2318 sub _get_customers {
 
2319   $main::lxdebug->enter_sub();
 
2321   my ($self, $dbh, $key) = @_;
 
2323   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2324   $options->{key}  ||= "all_customers";
 
2325   my $limit_clause   = "LIMIT $options->{limit}" if $options->{limit};
 
2326   my $where          = $options->{business_is_salesman} ? qq| AND business_id IN (SELECT id FROM business WHERE salesman)| : '';
 
2328   my $query = qq|SELECT * FROM customer WHERE NOT obsolete $where ORDER BY name $limit_clause|;
 
2329   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2331   $main::lxdebug->leave_sub();
 
2335   $main::lxdebug->enter_sub();
 
2337   my ($self, $dbh, $key) = @_;
 
2339   $key = "all_vendors" unless ($key);
 
2341   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2343   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2345   $main::lxdebug->leave_sub();
 
2348 sub _get_departments {
 
2349   $main::lxdebug->enter_sub();
 
2351   my ($self, $dbh, $key) = @_;
 
2353   $key = "all_departments" unless ($key);
 
2355   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2357   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2359   $main::lxdebug->leave_sub();
 
2362 sub _get_warehouses {
 
2363   $main::lxdebug->enter_sub();
 
2365   my ($self, $dbh, $param) = @_;
 
2367   my ($key, $bins_key);
 
2369   if ('' eq ref $param) {
 
2373     $key      = $param->{key};
 
2374     $bins_key = $param->{bins};
 
2377   my $query = qq|SELECT w.* FROM warehouse w
 
2378                  WHERE (NOT w.invalid) AND
 
2379                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2380                  ORDER BY w.sortkey|;
 
2382   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2385     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
 
2386     my $sth = prepare_query($self, $dbh, $query);
 
2388     foreach my $warehouse (@{ $self->{$key} }) {
 
2389       do_statement($self, $sth, $query, $warehouse->{id});
 
2390       $warehouse->{$bins_key} = [];
 
2392       while (my $ref = $sth->fetchrow_hashref()) {
 
2393         push @{ $warehouse->{$bins_key} }, $ref;
 
2399   $main::lxdebug->leave_sub();
 
2403   $main::lxdebug->enter_sub();
 
2405   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2407   my $query  = qq|SELECT * FROM $table|;
 
2408   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2410   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2412   $main::lxdebug->leave_sub();
 
2416 #  $main::lxdebug->enter_sub();
 
2418 #  my ($self, $dbh, $key) = @_;
 
2420 #  $key ||= "all_groups";
 
2422 #  my $groups = $main::auth->read_groups();
 
2424 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2426 #  $main::lxdebug->leave_sub();
 
2430   $main::lxdebug->enter_sub();
 
2435   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2436   my ($sth, $query, $ref);
 
2438   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2439   my $vc_id = $self->{"${vc}_id"};
 
2441   if ($params{"contacts"}) {
 
2442     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2445   if ($params{"shipto"}) {
 
2446     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2449   if ($params{"projects"} || $params{"all_projects"}) {
 
2450     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2451                          $params{"all_projects"} : $params{"projects"},
 
2452                          $params{"all_projects"} ? 1 : 0);
 
2455   if ($params{"printers"}) {
 
2456     $self->_get_printers($dbh, $params{"printers"});
 
2459   if ($params{"languages"}) {
 
2460     $self->_get_languages($dbh, $params{"languages"});
 
2463   if ($params{"charts"}) {
 
2464     $self->_get_charts($dbh, $params{"charts"});
 
2467   if ($params{"taxcharts"}) {
 
2468     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2471   if ($params{"taxzones"}) {
 
2472     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2475   if ($params{"employees"}) {
 
2476     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2479   if ($params{"salesmen"}) {
 
2480     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2483   if ($params{"business_types"}) {
 
2484     $self->_get_business_types($dbh, $params{"business_types"});
 
2487   if ($params{"dunning_configs"}) {
 
2488     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2491   if($params{"currencies"}) {
 
2492     $self->_get_currencies($dbh, $params{"currencies"});
 
2495   if($params{"customers"}) {
 
2496     $self->_get_customers($dbh, $params{"customers"});
 
2499   if($params{"vendors"}) {
 
2500     if (ref $params{"vendors"} eq 'HASH') {
 
2501       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2503       $self->_get_vendors($dbh, $params{"vendors"});
 
2507   if($params{"payments"}) {
 
2508     $self->_get_payments($dbh, $params{"payments"});
 
2511   if($params{"departments"}) {
 
2512     $self->_get_departments($dbh, $params{"departments"});
 
2515   if ($params{price_factors}) {
 
2516     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2519   if ($params{warehouses}) {
 
2520     $self->_get_warehouses($dbh, $params{warehouses});
 
2523 #  if ($params{groups}) {
 
2524 #    $self->_get_groups($dbh, $params{groups});
 
2527   if ($params{partsgroup}) {
 
2528     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2531   $main::lxdebug->leave_sub();
 
2534 # this sub gets the id and name from $table
 
2536   $main::lxdebug->enter_sub();
 
2538   my ($self, $myconfig, $table) = @_;
 
2540   # connect to database
 
2541   my $dbh = $self->get_standard_dbh($myconfig);
 
2543   $table = $table eq "customer" ? "customer" : "vendor";
 
2544   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2546   my ($query, @values);
 
2548   if (!$self->{openinvoices}) {
 
2550     if ($self->{customernumber} ne "") {
 
2551       $where = qq|(vc.customernumber ILIKE ?)|;
 
2552       push(@values, '%' . $self->{customernumber} . '%');
 
2554       $where = qq|(vc.name ILIKE ?)|;
 
2555       push(@values, '%' . $self->{$table} . '%');
 
2559       qq~SELECT vc.id, vc.name,
 
2560            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2562          WHERE $where AND (NOT vc.obsolete)
 
2566       qq~SELECT DISTINCT vc.id, vc.name,
 
2567            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2569          JOIN $table vc ON (a.${table}_id = vc.id)
 
2570          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2572     push(@values, '%' . $self->{$table} . '%');
 
2575   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2577   $main::lxdebug->leave_sub();
 
2579   return scalar(@{ $self->{name_list} });
 
2582 # the selection sub is used in the AR, AP, IS, IR and OE module
 
2585   $main::lxdebug->enter_sub();
 
2587   my ($self, $myconfig, $table, $module) = @_;
 
2590   my $dbh = $self->get_standard_dbh($myconfig);
 
2592   $table = $table eq "customer" ? "customer" : "vendor";
 
2594   my $query = qq|SELECT count(*) FROM $table|;
 
2595   my ($count) = selectrow_query($self, $dbh, $query);
 
2597   # build selection list
 
2598   if ($count <= $myconfig->{vclimit}) {
 
2599     $query = qq|SELECT id, name, salesman_id
 
2600                 FROM $table WHERE NOT obsolete
 
2602     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2606   $self->get_employee($dbh);
 
2608   # setup sales contacts
 
2609   $query = qq|SELECT e.id, e.name
 
2611               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
 
2612   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2615   push(@{ $self->{all_employees} },
 
2616        { id   => $self->{employee_id},
 
2617          name => $self->{employee} });
 
2619   # sort the whole thing
 
2620   @{ $self->{all_employees} } =
 
2621     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
2623   if ($module eq 'AR') {
 
2625     # prepare query for departments
 
2626     $query = qq|SELECT id, description
 
2629                 ORDER BY description|;
 
2632     $query = qq|SELECT id, description
 
2634                 ORDER BY description|;
 
2637   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2640   $query = qq|SELECT id, description
 
2644   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2647   $query = qq|SELECT printer_description, id
 
2649               ORDER BY printer_description|;
 
2651   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2654   $query = qq|SELECT id, description
 
2658   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2660   $main::lxdebug->leave_sub();
 
2663 sub language_payment {
 
2664   $main::lxdebug->enter_sub();
 
2666   my ($self, $myconfig) = @_;
 
2668   my $dbh = $self->get_standard_dbh($myconfig);
 
2670   my $query = qq|SELECT id, description
 
2674   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2677   $query = qq|SELECT printer_description, id
 
2679               ORDER BY printer_description|;
 
2681   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2684   $query = qq|SELECT id, description
 
2688   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2690   # get buchungsgruppen
 
2691   $query = qq|SELECT id, description
 
2692               FROM buchungsgruppen|;
 
2694   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2696   $main::lxdebug->leave_sub();
 
2699 # this is only used for reports
 
2700 sub all_departments {
 
2701   $main::lxdebug->enter_sub();
 
2703   my ($self, $myconfig, $table) = @_;
 
2705   my $dbh = $self->get_standard_dbh($myconfig);
 
2708   if ($table eq 'customer') {
 
2709     $where = "WHERE role = 'P' ";
 
2712   my $query = qq|SELECT id, description
 
2715                  ORDER BY description|;
 
2716   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2718   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2720   $main::lxdebug->leave_sub();
 
2724   $main::lxdebug->enter_sub();
 
2726   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2729   if ($table eq "customer") {
 
2738   $self->all_vc($myconfig, $table, $module);
 
2740   # get last customers or vendors
 
2741   my ($query, $sth, $ref);
 
2743   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2748     my $transdate = "current_date";
 
2749     if ($self->{transdate}) {
 
2750       $transdate = $dbh->quote($self->{transdate});
 
2753     # now get the account numbers
 
2754     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2755                 FROM chart c, taxkeys tk
 
2756                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2757                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2760     $sth = $dbh->prepare($query);
 
2762     do_statement($self, $sth, $query, '%' . $module . '%');
 
2764     $self->{accounts} = "";
 
2765     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2767       foreach my $key (split(/:/, $ref->{link})) {
 
2768         if ($key =~ /\Q$module\E/) {
 
2770           # cross reference for keys
 
2771           $xkeyref{ $ref->{accno} } = $key;
 
2773           push @{ $self->{"${module}_links"}{$key} },
 
2774             { accno       => $ref->{accno},
 
2775               description => $ref->{description},
 
2776               taxkey      => $ref->{taxkey_id},
 
2777               tax_id      => $ref->{tax_id} };
 
2779           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2785   # get taxkeys and description
 
2786   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2787   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2789   if (($module eq "AP") || ($module eq "AR")) {
 
2790     # get tax rates and description
 
2791     $query = qq|SELECT * FROM tax|;
 
2792     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2798            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2799            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2800            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2801            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2803            d.description AS department,
 
2806          JOIN $table c ON (a.${table}_id = c.id)
 
2807          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2808          LEFT JOIN department d ON (d.id = a.department_id)
 
2810     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2812     foreach my $key (keys %$ref) {
 
2813       $self->{$key} = $ref->{$key};
 
2816     my $transdate = "current_date";
 
2817     if ($self->{transdate}) {
 
2818       $transdate = $dbh->quote($self->{transdate});
 
2821     # now get the account numbers
 
2822     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2824                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2826                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2827                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2830     $sth = $dbh->prepare($query);
 
2831     do_statement($self, $sth, $query, "%$module%");
 
2833     $self->{accounts} = "";
 
2834     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2836       foreach my $key (split(/:/, $ref->{link})) {
 
2837         if ($key =~ /\Q$module\E/) {
 
2839           # cross reference for keys
 
2840           $xkeyref{ $ref->{accno} } = $key;
 
2842           push @{ $self->{"${module}_links"}{$key} },
 
2843             { accno       => $ref->{accno},
 
2844               description => $ref->{description},
 
2845               taxkey      => $ref->{taxkey_id},
 
2846               tax_id      => $ref->{tax_id} };
 
2848           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2854     # get amounts from individual entries
 
2857            c.accno, c.description,
 
2858            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
 
2862          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2863          LEFT JOIN project p ON (p.id = a.project_id)
 
2864          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
2865                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
2866                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
2867                                         THEN tk.chart_id = a.chart_id
 
2870                                        OR (c.link='%tax%')) AND
 
2871                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
2872          WHERE a.trans_id = ?
 
2873          AND a.fx_transaction = '0'
 
2874          ORDER BY a.acc_trans_id, a.transdate|;
 
2875     $sth = $dbh->prepare($query);
 
2876     do_statement($self, $sth, $query, $self->{id});
 
2878     # get exchangerate for currency
 
2879     $self->{exchangerate} =
 
2880       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2883     # store amounts in {acc_trans}{$key} for multiple accounts
 
2884     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2885       $ref->{exchangerate} =
 
2886         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2887       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2890       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2891         $ref->{amount} *= -1;
 
2893       $ref->{index} = $index;
 
2895       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2901            d.curr AS currencies, d.closedto, d.revtrans,
 
2902            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2903            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2905     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2906     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2913             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
2914             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2915             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2917     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2918     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2920     if ($self->{"$self->{vc}_id"}) {
 
2922       # only setup currency
 
2923       ($self->{currency}) = split(/:/, $self->{currencies});
 
2927       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2929       # get exchangerate for currency
 
2930       $self->{exchangerate} =
 
2931         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2937   $main::lxdebug->leave_sub();
 
2941   $main::lxdebug->enter_sub();
 
2943   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2947   $table         = $table eq "customer" ? "customer" : "vendor";
 
2948   my %column_map = ("a.curr"                  => "currency",
 
2949                     "a.${table}_id"           => "${table}_id",
 
2950                     "a.department_id"         => "department_id",
 
2951                     "d.description"           => "department",
 
2952                     "ct.name"                 => $table,
 
2953                     "current_date + ct.terms" => "duedate",
 
2956   if ($self->{type} =~ /delivery_order/) {
 
2957     $arap  = 'delivery_orders';
 
2958     delete $column_map{"a.curr"};
 
2960   } elsif ($self->{type} =~ /_order/) {
 
2962     $where = "quotation = '0'";
 
2964   } elsif ($self->{type} =~ /_quotation/) {
 
2966     $where = "quotation = '1'";
 
2968   } elsif ($table eq 'customer') {
 
2976   $where           = "($where) AND" if ($where);
 
2977   my $query        = qq|SELECT MAX(id) FROM $arap
 
2978                         WHERE $where ${table}_id > 0|;
 
2979   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
2982   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
2983   $query           = qq|SELECT $column_spec
 
2985                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
2986                         LEFT JOIN department d  ON (a.department_id = d.id)
 
2988   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
2990   map { $self->{$_} = $ref->{$_} } values %column_map;
 
2992   $main::lxdebug->leave_sub();
 
2996   $main::lxdebug->enter_sub();
 
2999   my $myconfig          = shift  || \%::myconfig;
 
3000   my ($thisdate, $days) = @_;
 
3002   my $dbh = $self->get_standard_dbh($myconfig);
 
3007     my $dateformat = $myconfig->{dateformat};
 
3008     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
3009     $thisdate = $dbh->quote($thisdate);
 
3010     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
3012     $query = qq|SELECT current_date AS thisdate|;
 
3015   ($thisdate) = selectrow_query($self, $dbh, $query);
 
3017   $main::lxdebug->leave_sub();
 
3023   $main::lxdebug->enter_sub();
 
3025   my ($self, $string) = @_;
 
3027   if ($string !~ /%/) {
 
3028     $string = "%$string%";
 
3031   $string =~ s/\'/\'\'/g;
 
3033   $main::lxdebug->leave_sub();
 
3039   $main::lxdebug->enter_sub();
 
3041   my ($self, $flds, $new, $count, $numrows) = @_;
 
3045   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
3050   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
3052     my $j = $item->{ndx} - 1;
 
3053     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
3057   for $i ($count + 1 .. $numrows) {
 
3058     map { delete $self->{"${_}_$i"} } @{$flds};
 
3061   $main::lxdebug->leave_sub();
 
3065   $main::lxdebug->enter_sub();
 
3067   my ($self, $myconfig) = @_;
 
3071   my $dbh = $self->dbconnect_noauto($myconfig);
 
3073   my $query = qq|DELETE FROM status
 
3074                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3075   my $sth = prepare_query($self, $dbh, $query);
 
3077   if ($self->{formname} =~ /(check|receipt)/) {
 
3078     for $i (1 .. $self->{rowcount}) {
 
3079       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
3082     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3086   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3087   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3089   my %queued = split / /, $self->{queued};
 
3092   if ($self->{formname} =~ /(check|receipt)/) {
 
3094     # this is a check or receipt, add one entry for each lineitem
 
3095     my ($accno) = split /--/, $self->{account};
 
3096     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3097                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3098     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3099     $sth = prepare_query($self, $dbh, $query);
 
3101     for $i (1 .. $self->{rowcount}) {
 
3102       if ($self->{"checked_$i"}) {
 
3103         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3109     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3110                 VALUES (?, ?, ?, ?, ?)|;
 
3111     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3112              $queued{$self->{formname}}, $self->{formname});
 
3118   $main::lxdebug->leave_sub();
 
3122   $main::lxdebug->enter_sub();
 
3124   my ($self, $dbh) = @_;
 
3126   my ($query, $printed, $emailed);
 
3128   my $formnames  = $self->{printed};
 
3129   my $emailforms = $self->{emailed};
 
3131   $query = qq|DELETE FROM status
 
3132                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3133   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3135   # this only applies to the forms
 
3136   # checks and receipts are posted when printed or queued
 
3138   if ($self->{queued}) {
 
3139     my %queued = split / /, $self->{queued};
 
3141     foreach my $formname (keys %queued) {
 
3142       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3143       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3145       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3146                   VALUES (?, ?, ?, ?, ?)|;
 
3147       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3149       $formnames  =~ s/\Q$self->{formname}\E//;
 
3150       $emailforms =~ s/\Q$self->{formname}\E//;
 
3155   # save printed, emailed info
 
3156   $formnames  =~ s/^ +//g;
 
3157   $emailforms =~ s/^ +//g;
 
3160   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3161   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3163   foreach my $formname (keys %status) {
 
3164     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3165     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3167     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3168                 VALUES (?, ?, ?, ?)|;
 
3169     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3172   $main::lxdebug->leave_sub();
 
3176 # $main::locale->text('SAVED')
 
3177 # $main::locale->text('DELETED')
 
3178 # $main::locale->text('ADDED')
 
3179 # $main::locale->text('PAYMENT POSTED')
 
3180 # $main::locale->text('POSTED')
 
3181 # $main::locale->text('POSTED AS NEW')
 
3182 # $main::locale->text('ELSE')
 
3183 # $main::locale->text('SAVED FOR DUNNING')
 
3184 # $main::locale->text('DUNNING STARTED')
 
3185 # $main::locale->text('PRINTED')
 
3186 # $main::locale->text('MAILED')
 
3187 # $main::locale->text('SCREENED')
 
3188 # $main::locale->text('CANCELED')
 
3189 # $main::locale->text('invoice')
 
3190 # $main::locale->text('proforma')
 
3191 # $main::locale->text('sales_order')
 
3192 # $main::locale->text('packing_list')
 
3193 # $main::locale->text('pick_list')
 
3194 # $main::locale->text('purchase_order')
 
3195 # $main::locale->text('bin_list')
 
3196 # $main::locale->text('sales_quotation')
 
3197 # $main::locale->text('request_quotation')
 
3200   $main::lxdebug->enter_sub();
 
3205   if(!exists $self->{employee_id}) {
 
3206     &get_employee($self, $dbh);
 
3210    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3211    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3212   my @values = (conv_i($self->{id}), $self->{login},
 
3213                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3214   do_query($self, $dbh, $query, @values);
 
3216   $main::lxdebug->leave_sub();
 
3220   $main::lxdebug->enter_sub();
 
3222   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3223   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3224   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3227   if ($trans_id ne "") {
 
3229       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 | .
 
3230       qq|FROM history_erp h | .
 
3231       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3232       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3235     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3237     $sth->execute() || $self->dberror("$query");
 
3239     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3240       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3241       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3242       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3243       $tempArray[$i++] = $hash_ref;
 
3245     $main::lxdebug->leave_sub() and return \@tempArray
 
3246       if ($i > 0 && $tempArray[0] ne "");
 
3248   $main::lxdebug->leave_sub();
 
3252 sub update_defaults {
 
3253   $main::lxdebug->enter_sub();
 
3255   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3258   if ($provided_dbh) {
 
3259     $dbh = $provided_dbh;
 
3261     $dbh = $self->dbconnect_noauto($myconfig);
 
3263   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3264   my $sth   = $dbh->prepare($query);
 
3266   $sth->execute || $self->dberror($query);
 
3267   my ($var) = $sth->fetchrow_array;
 
3270   if ($var =~ m/\d+$/) {
 
3271     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3272     my $len_diff = length($var) - $-[0] - length($new_var);
 
3273     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3279   $query = qq|UPDATE defaults SET $fld = ?|;
 
3280   do_query($self, $dbh, $query, $var);
 
3282   if (!$provided_dbh) {
 
3287   $main::lxdebug->leave_sub();
 
3292 sub update_business {
 
3293   $main::lxdebug->enter_sub();
 
3295   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3298   if ($provided_dbh) {
 
3299     $dbh = $provided_dbh;
 
3301     $dbh = $self->dbconnect_noauto($myconfig);
 
3304     qq|SELECT customernumberinit FROM business
 
3305        WHERE id = ? FOR UPDATE|;
 
3306   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3308   return undef unless $var;
 
3310   if ($var =~ m/\d+$/) {
 
3311     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3312     my $len_diff = length($var) - $-[0] - length($new_var);
 
3313     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3319   $query = qq|UPDATE business
 
3320               SET customernumberinit = ?
 
3322   do_query($self, $dbh, $query, $var, $business_id);
 
3324   if (!$provided_dbh) {
 
3329   $main::lxdebug->leave_sub();
 
3334 sub get_partsgroup {
 
3335   $main::lxdebug->enter_sub();
 
3337   my ($self, $myconfig, $p) = @_;
 
3338   my $target = $p->{target} || 'all_partsgroup';
 
3340   my $dbh = $self->get_standard_dbh($myconfig);
 
3342   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3344                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3347   if ($p->{searchitems} eq 'part') {
 
3348     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3350   if ($p->{searchitems} eq 'service') {
 
3351     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3353   if ($p->{searchitems} eq 'assembly') {
 
3354     $query .= qq|WHERE p.assembly = '1'|;
 
3356   if ($p->{searchitems} eq 'labor') {
 
3357     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3360   $query .= qq|ORDER BY partsgroup|;
 
3363     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3364                 ORDER BY partsgroup|;
 
3367   if ($p->{language_code}) {
 
3368     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3369                   t.description AS translation
 
3371                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3372                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3373                 ORDER BY translation|;
 
3374     @values = ($p->{language_code});
 
3377   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3379   $main::lxdebug->leave_sub();
 
3382 sub get_pricegroup {
 
3383   $main::lxdebug->enter_sub();
 
3385   my ($self, $myconfig, $p) = @_;
 
3387   my $dbh = $self->get_standard_dbh($myconfig);
 
3389   my $query = qq|SELECT p.id, p.pricegroup
 
3392   $query .= qq| ORDER BY pricegroup|;
 
3395     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3396                 ORDER BY pricegroup|;
 
3399   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3401   $main::lxdebug->leave_sub();
 
3405 # usage $form->all_years($myconfig, [$dbh])
 
3406 # return list of all years where bookings found
 
3409   $main::lxdebug->enter_sub();
 
3411   my ($self, $myconfig, $dbh) = @_;
 
3413   $dbh ||= $self->get_standard_dbh($myconfig);
 
3416   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3417                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3418   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3420   if ($myconfig->{dateformat} =~ /^yy/) {
 
3421     ($startdate) = split /\W/, $startdate;
 
3422     ($enddate) = split /\W/, $enddate;
 
3424     (@_) = split /\W/, $startdate;
 
3426     (@_) = split /\W/, $enddate;
 
3431   $startdate = substr($startdate,0,4);
 
3432   $enddate = substr($enddate,0,4);
 
3434   while ($enddate >= $startdate) {
 
3435     push @all_years, $enddate--;
 
3440   $main::lxdebug->leave_sub();
 
3444   $main::lxdebug->enter_sub();
 
3448   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3450   $main::lxdebug->leave_sub();
 
3454   $main::lxdebug->enter_sub();
 
3459   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3461   $main::lxdebug->leave_sub();
 
3470 SL::Form.pm - main data object.
 
3474 This is the main data object of Lx-Office.
 
3475 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3476 Points of interest for a beginner are:
 
3478  - $form->error            - renders a generic error in html. accepts an error message
 
3479  - $form->get_standard_dbh - returns a database connection for the
 
3481 =head1 SPECIAL FUNCTIONS
 
3485 =item _store_value()
 
3487 parses a complex var name, and stores it in the form.
 
3490   $form->_store_value($key, $value);
 
3492 keys must start with a string, and can contain various tokens.
 
3493 supported key structures are:
 
3496   simple key strings work as expected
 
3501   separating two keys by a dot (.) will result in a hash lookup for the inner value
 
3502   this is similar to the behaviour of java and templating mechanisms.
 
3504   filter.description => $form->{filter}->{description}
 
3506 3. array+hashref access
 
3508   adding brackets ([]) before the dot will cause the next hash to be put into an array.
 
3509   using [+] instead of [] will force a new array index. this is useful for recurring
 
3510   data structures like part lists. put a [+] into the first varname, and use [] on the
 
3513   repeating these names in your template:
 
3516     invoice.items[].parts_id
 
3520     $form->{invoice}->{items}->[
 
3534   using brackets at the end of a name will result in a pure array to be created.
 
3535   note that you mustn't use [+], which is reserved for array+hash access and will
 
3536   result in undefined behaviour in array context.
 
3538   filter.status[]  => $form->{status}->[ val1, val2, ... ]
 
3540 =item update_business PARAMS
 
3543  \%config,     - config hashref
 
3544  $business_id, - business id
 
3545  $dbh          - optional database handle
 
3547 handles business (thats customer/vendor types) sequences.
 
3549 special behaviour for empty strings in customerinitnumber field:
 
3550 will in this case not increase the value, and return undef.