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 #======================================================================
 
  44 use List::Util qw(min max);
 
  56 use List::Util qw(first max min sum);
 
  62     $standard_dbh->disconnect();
 
  68   $main::lxdebug->enter_sub(2);
 
  76   while ($key =~ /\[\+?\]\.|\./) {
 
  77     substr($key, 0, $+[0]) = '';
 
  85       if (!scalar @{ $curr->{$`} } || $& eq '[+].') {
 
  86         push @{ $curr->{$`} }, { };
 
  89       $curr = $curr->{$`}->[-1];
 
  93   $curr->{$key} = $value;
 
  95   $main::lxdebug->leave_sub(2);
 
  97   return \$curr->{$key};
 
 101   $main::lxdebug->enter_sub(2);
 
 106   my @pairs = split(/&/, $input);
 
 109     my ($key, $value) = split(/=/, $_, 2);
 
 110     $self->_store_value($self->unescape($key), $self->unescape($value));
 
 113   $main::lxdebug->leave_sub(2);
 
 116 sub _request_to_hash {
 
 117   $main::lxdebug->enter_sub(2);
 
 122   if (!$ENV{'CONTENT_TYPE'}
 
 123       || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
 
 125     $self->_input_to_hash($input);
 
 127     $main::lxdebug->leave_sub(2);
 
 131   my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
 
 133   my $boundary = '--' . $1;
 
 135   foreach my $line (split m/\n/, $input) {
 
 136     last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
 
 138     if (($line eq $boundary) || ($line eq "$boundary\r")) {
 
 139       ${ $previous } =~ s|\r?\n$|| if $previous;
 
 145       $content_type   = "text/plain";
 
 152     next unless $boundary_found;
 
 154     if (!$headers_done) {
 
 155       $line =~ s/[\r\n]*$//;
 
 162       if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
 
 163         if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
 
 165           substr $line, $-[0], $+[0] - $-[0], "";
 
 168         if ($line =~ m|name\s*=\s*"(.*?)"|i) {
 
 170           substr $line, $-[0], $+[0] - $-[0], "";
 
 173         $previous         = $self->_store_value($name, '');
 
 174         $self->{FILENAME} = $filename if ($filename);
 
 179       if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
 
 186     next unless $previous;
 
 188     ${ $previous } .= "${line}\n";
 
 191   ${ $previous } =~ s|\r?\n$|| if $previous;
 
 193   $main::lxdebug->leave_sub(2);
 
 197   $main::lxdebug->enter_sub();
 
 203   if ($LXDebug::watch_form) {
 
 204     require SL::Watchdog;
 
 205     tie %{ $self }, 'SL::Watchdog';
 
 208   read(STDIN, $_, $ENV{CONTENT_LENGTH});
 
 210   if ($ENV{QUERY_STRING}) {
 
 211     $_ = $ENV{QUERY_STRING};
 
 220   $self->_request_to_hash($_);
 
 222   $self->{action}  =  lc $self->{action};
 
 223   $self->{action}  =~ s/( |-|,|\#)/_/g;
 
 225   $self->{version} =  "2.4.3";
 
 227   $main::lxdebug->leave_sub();
 
 232 sub _flatten_variables_rec {
 
 233   $main::lxdebug->enter_sub(2);
 
 242   if ('' eq ref $curr->{$key}) {
 
 243     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
 
 245   } elsif ('HASH' eq ref $curr->{$key}) {
 
 246     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
 
 247       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
 
 251     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
 
 252       my $first_array_entry = 1;
 
 254       foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
 
 255         push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
 
 256         $first_array_entry = 0;
 
 261   $main::lxdebug->leave_sub(2);
 
 266 sub flatten_variables {
 
 267   $main::lxdebug->enter_sub(2);
 
 275     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 278   $main::lxdebug->leave_sub(2);
 
 283 sub flatten_standard_variables {
 
 284   $main::lxdebug->enter_sub(2);
 
 287   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
 
 291   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
 
 292     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 295   $main::lxdebug->leave_sub(2);
 
 301   $main::lxdebug->enter_sub();
 
 307   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 309   $main::lxdebug->leave_sub();
 
 313   $main::lxdebug->enter_sub(2);
 
 316   my $password      = $self->{password};
 
 318   $self->{password} = 'X' x 8;
 
 320   local $Data::Dumper::Sortkeys = 1;
 
 321   my $output                    = Dumper($self);
 
 323   $self->{password} = $password;
 
 325   $main::lxdebug->leave_sub(2);
 
 331   $main::lxdebug->enter_sub(2);
 
 333   my ($self, $str) = @_;
 
 335   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
 
 337   $main::lxdebug->leave_sub(2);
 
 343   $main::lxdebug->enter_sub(2);
 
 345   my ($self, $str) = @_;
 
 350   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
 352   $main::lxdebug->leave_sub(2);
 
 358   my ($self, $str) = @_;
 
 360   if ($str && !ref($str)) {
 
 361     $str =~ s/\"/"/g;
 
 369   my ($self, $str) = @_;
 
 371   if ($str && !ref($str)) {
 
 372     $str =~ s/"/\"/g;
 
 383     map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
 
 385     for (sort keys %$self) {
 
 386       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
 
 387       print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
 
 394   $main::lxdebug->enter_sub();
 
 396   $main::lxdebug->show_backtrace();
 
 398   my ($self, $msg) = @_;
 
 399   if ($ENV{HTTP_USER_AGENT}) {
 
 401     $self->show_generic_error($msg);
 
 408   $main::lxdebug->leave_sub();
 
 412   $main::lxdebug->enter_sub();
 
 414   my ($self, $msg) = @_;
 
 416   if ($ENV{HTTP_USER_AGENT}) {
 
 419     if (!$self->{header}) {
 
 432     if ($self->{info_function}) {
 
 433       &{ $self->{info_function} }($msg);
 
 439   $main::lxdebug->leave_sub();
 
 442 # calculates the number of rows in a textarea based on the content and column number
 
 443 # can be capped with maxrows
 
 445   $main::lxdebug->enter_sub();
 
 446   my ($self, $str, $cols, $maxrows, $minrows) = @_;
 
 450   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
 
 453   $main::lxdebug->leave_sub();
 
 455   return max(min($rows, $maxrows), $minrows);
 
 459   $main::lxdebug->enter_sub();
 
 461   my ($self, $msg) = @_;
 
 463   $self->error("$msg\n" . $DBI::errstr);
 
 465   $main::lxdebug->leave_sub();
 
 469   $main::lxdebug->enter_sub();
 
 471   my ($self, $name, $msg) = @_;
 
 474   foreach my $part (split /\./, $name) {
 
 475     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
 
 478     $curr = $curr->{$part};
 
 481   $main::lxdebug->leave_sub();
 
 484 sub create_http_response {
 
 485   $main::lxdebug->enter_sub();
 
 490   my $cgi      = $main::cgi;
 
 491   $cgi       ||= CGI->new('');
 
 495   if ($ENV{HTTP_X_FORWARDED_FOR}) {
 
 496     $base_path =  $ENV{HTTP_REFERER};
 
 497     $base_path =~ s|^.*?://.*?/|/|;
 
 499     $base_path =  $ENV{REQUEST_URI};
 
 501   $base_path =~ s|[^/]+$||;
 
 502   $base_path =~ s|/$||;
 
 505   if (defined $main::auth) {
 
 506     my $session_cookie_value   = $main::auth->get_session_id();
 
 507     $session_cookie_value    ||= 'NO_SESSION';
 
 509     $session_cookie = $cgi->cookie('-name'  => $main::auth->get_session_cookie_name(),
 
 510                                    '-value' => $session_cookie_value,
 
 511                                    '-path'  => $base_path);
 
 514   my %cgi_params = ('-type' => $params{content_type});
 
 515   $cgi_params{'-charset'} = $params{charset} if ($parmas{charset});
 
 517   my $output = $cgi->header('-cookie' => $session_cookie,
 
 520   $main::lxdebug->leave_sub();
 
 527   $main::lxdebug->enter_sub();
 
 529   my ($self, $extra_code) = @_;
 
 531   if ($self->{header}) {
 
 532     $main::lxdebug->leave_sub();
 
 536   my ($stylesheet, $favicon);
 
 538   if ($ENV{HTTP_USER_AGENT}) {
 
 541     if ($ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/) {
 
 542       # Only set the DOCTYPE for Internet Explorer. Other browsers have problems displaying the menu otherwise.
 
 543       $doctype = qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n|;
 
 546     my $stylesheets = "$self->{stylesheet} $self->{stylesheets}";
 
 548     $stylesheets =~ s|^\s*||;
 
 549     $stylesheets =~ s|\s*$||;
 
 550     foreach my $file (split m/\s+/, $stylesheets) {
 
 552       next if (! -f "css/$file");
 
 554       $stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|;
 
 557     $self->{favicon}    = "favicon.ico" unless $self->{favicon};
 
 559     if ($self->{favicon} && (-f "$self->{favicon}")) {
 
 561         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
 
 565     my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
 567     if ($self->{landscape}) {
 
 568       $pagelayout = qq|<style type="text/css">
 
 569                         \@page { size:landscape; }
 
 573     my $fokus = qq|  document.$self->{fokus}.focus();| if ($self->{"fokus"});
 
 577     if ($self->{jsscript} == 1) {
 
 580         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
 
 581         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
 
 582         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
 
 583         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
 
 590       ? "$self->{title} - $self->{titlebar}"
 
 593     foreach $item (@ { $self->{AJAX} }) {
 
 594       $ajax .= $item->show_javascript();
 
 597     print $self->create_http_response('content_type' => 'text/html',
 
 598                                       'charset'      => $db_charset,);
 
 599     print qq|${doctype}<html>
 
 601   <title>$self->{titlebar}</title>
 
 605   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
 
 609   <script type="text/javascript">
 
 617   <meta name="robots" content="noindex,nofollow" />
 
 618   <script type="text/javascript" src="js/highlight_input.js"></script>
 
 619   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
 
 621   <script type="text/javascript" src="js/tabcontent.js">
 
 623   /***********************************************
 
 624   * Tab Content script- Dynamic Drive DHTML code library (www.dynamicdrive.com)
 
 625   * This notice MUST stay intact for legal use
 
 626   * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
 
 627   ***********************************************/
 
 638   $main::lxdebug->leave_sub();
 
 641 sub _prepare_html_template {
 
 642   $main::lxdebug->enter_sub();
 
 644   my ($self, $file, $additional_params) = @_;
 
 647   if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
 
 648     $language = $main::language;
 
 650     $language = $main::myconfig{"countrycode"};
 
 652   $language = "de" unless ($language);
 
 654   if (-f "templates/webpages/${file}_${language}.html") {
 
 655     if ((-f ".developer") &&
 
 656         (-f "templates/webpages/${file}_master.html") &&
 
 657         ((stat("templates/webpages/${file}_master.html"))[9] >
 
 658          (stat("templates/webpages/${file}_${language}.html"))[9])) {
 
 659       my $info = "Developer information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
 
 660         "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 661       print(qq|<pre>$info</pre>|);
 
 665     $file = "templates/webpages/${file}_${language}.html";
 
 666   } elsif (-f "templates/webpages/${file}.html") {
 
 667     $file = "templates/webpages/${file}.html";
 
 669     my $info = "Web page template '${file}' not found.\n" .
 
 670       "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 671     print(qq|<pre>$info</pre>|);
 
 675   if ($self->{"DEBUG"}) {
 
 676     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
 
 679   if ($additional_params->{"DEBUG"}) {
 
 680     $additional_params->{"DEBUG"} =
 
 681       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
 
 684   if (%main::myconfig) {
 
 685     map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
 
 686     my $jsc_dateformat = $main::myconfig{"dateformat"};
 
 687     $jsc_dateformat =~ s/d+/\%d/gi;
 
 688     $jsc_dateformat =~ s/m+/\%m/gi;
 
 689     $jsc_dateformat =~ s/y+/\%Y/gi;
 
 690     $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
 
 693   $additional_params->{"conf_webdav"}                 = $main::webdav;
 
 694   $additional_params->{"conf_lizenzen"}               = $main::lizenzen;
 
 695   $additional_params->{"conf_latex_templates"}        = $main::latex;
 
 696   $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
 
 698   if (%main::debug_options) {
 
 699     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
 
 702   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 703     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 704       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 708   $main::lxdebug->leave_sub();
 
 713 sub parse_html_template {
 
 714   $main::lxdebug->enter_sub();
 
 716   my ($self, $file, $additional_params) = @_;
 
 718   $additional_params ||= { };
 
 720   $file = $self->_prepare_html_template($file, $additional_params);
 
 722   my $template = Template->new({ 'INTERPOLATE'  => 0,
 
 726                                  'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 727                                  'INCLUDE_PATH' => '.:templates/webpages',
 
 730   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 733   if (!$template->process($file, $additional_params, \$output)) {
 
 734     print STDERR $template->error();
 
 737   $output = $main::locale->{iconv}->convert($output) if ($main::locale);
 
 739   $main::lxdebug->leave_sub();
 
 744 sub show_generic_error {
 
 745   my ($self, $error, %params) = @_;
 
 748     'title_error' => $params{title},
 
 749     'label_error' => $error,
 
 752   if ($params{action}) {
 
 755     map { delete($self->{$_}); } qw(action);
 
 756     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 758     $add_params->{SHOW_BUTTON}  = 1;
 
 759     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 760     $add_params->{VARIABLES}    = \@vars;
 
 762   } elsif ($params{back_button}) {
 
 763     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 766   $self->{title} = $title if ($title);
 
 769   print $self->parse_html_template("generic/error", $add_params);
 
 771   die("Error: $error\n");
 
 774 sub show_generic_information {
 
 775   my ($self, $text, $title) = @_;
 
 778     'title_information' => $title,
 
 779     'label_information' => $text,
 
 782   $self->{title} = $title if ($title);
 
 785   print $self->parse_html_template("generic/information", $add_params);
 
 787   die("Information: $error\n");
 
 790 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 791 # changed it to accept an arbitrary number of triggers - sschoeling
 
 793   $main::lxdebug->enter_sub();
 
 796   my $myconfig = shift;
 
 799   # set dateform for jsscript
 
 802     "dd.mm.yy" => "%d.%m.%Y",
 
 803     "dd-mm-yy" => "%d-%m-%Y",
 
 804     "dd/mm/yy" => "%d/%m/%Y",
 
 805     "mm/dd/yy" => "%m/%d/%Y",
 
 806     "mm-dd-yy" => "%m-%d-%Y",
 
 807     "yyyy-mm-dd" => "%Y-%m-%d",
 
 810   my $ifFormat = defined($dateformats{$myconfig{"dateformat"}}) ?
 
 811     $dateformats{$myconfig{"dateformat"}} : "%d.%m.%Y";
 
 818       inputField : "| . (shift) . qq|",
 
 819       ifFormat :"$ifFormat",
 
 820       align : "| .  (shift) . qq|",
 
 821       button : "| . (shift) . qq|"
 
 827        <script type="text/javascript">
 
 828        <!--| . join("", @triggers) . qq|//-->
 
 832   $main::lxdebug->leave_sub();
 
 835 }    #end sub write_trigger
 
 838   $main::lxdebug->enter_sub();
 
 840   my ($self, $msg) = @_;
 
 842   if ($self->{callback}) {
 
 844     ($script, $argv) = split(/\?/, $self->{callback}, 2);
 
 846     $script =~ s|[^a-zA-Z0-9_\.]||g;
 
 847     exec("perl", "$script", $argv);
 
 855   $main::lxdebug->leave_sub();
 
 858 # sort of columns removed - empty sub
 
 860   $main::lxdebug->enter_sub();
 
 862   my ($self, @columns) = @_;
 
 864   $main::lxdebug->leave_sub();
 
 870   $main::lxdebug->enter_sub(2);
 
 872   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 878   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
 880   my $neg = ($amount =~ s/^-//);
 
 881   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
 883   if (defined($places) && ($places ne '')) {
 
 889         my ($actual_places) = ($amount =~ /\.(\d+)/);
 
 890         $actual_places = length($actual_places);
 
 891         $places = $actual_places > $places ? $actual_places : $places;
 
 894     $amount = $self->round_amount($amount, $places);
 
 897   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 898   my @p = split(/\./, $amount); # split amount at decimal point
 
 900   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
 903   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
 906     ($dash =~ /-/)    ? ($neg ? "($amount)"  : "$amount" )    :
 
 907     ($dash =~ /DRCR/) ? ($neg ? "$amount DR" : "$amount CR" ) :
 
 908                         ($neg ? "-$amount"   : "$amount" )    ;
 
 912   $main::lxdebug->leave_sub(2);
 
 916 sub format_amount_units {
 
 917   $main::lxdebug->enter_sub();
 
 922   Common::check_params(\%params, qw(amount part_unit));
 
 924   my $myconfig         = \%main::myconfig;
 
 925   my $amount           = $params{amount};
 
 926   my $places           = $params{places};
 
 927   my $part_unit_name   = $params{part_unit};
 
 928   my $amount_unit_name = $params{amount_unit};
 
 929   my $conv_units       = $params{conv_units};
 
 930   my $max_places       = $params{max_places};
 
 932   AM->retrieve_all_units();
 
 933   my $all_units        = $main::all_units;
 
 935   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
 936     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
 939   if (!scalar @{ $conv_units }) {
 
 940     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
 941     $main::lxdebug->leave_sub();
 
 945   my $part_unit  = $all_units->{$part_unit_name};
 
 946   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
 948   $amount       *= $conv_unit->{factor};
 
 952   foreach my $unit (@$conv_units) {
 
 953     my $last = $unit->{name} eq $part_unit->{name};
 
 955       $num     = int($amount / $unit->{factor});
 
 956       $amount -= $num * $unit->{factor};
 
 959     if ($last ? $amount : $num) {
 
 960       push @values, { "unit"   => $unit->{name},
 
 961                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
 962                       "places" => $last ? $places : 0 };
 
 969     push @values, { "unit"   => $part_unit_name,
 
 974   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
 976   $main::lxdebug->leave_sub();
 
 982   $main::lxdebug->enter_sub(2);
 
 987   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
 988   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
 989   $input =~ s/\#\#/\#/g;
 
 991   $main::lxdebug->leave_sub(2);
 
 999   $main::lxdebug->enter_sub(2);
 
1001   my ($self, $myconfig, $amount) = @_;
 
1003   if (   ($myconfig->{numberformat} eq '1.000,00')
 
1004       || ($myconfig->{numberformat} eq '1000,00')) {
 
1009   if ($myconfig->{numberformat} eq "1'000.00") {
 
1015   $main::lxdebug->leave_sub(2);
 
1017   return ($amount * 1);
 
1021   $main::lxdebug->enter_sub(2);
 
1023   my ($self, $amount, $places) = @_;
 
1026   # Rounding like "Kaufmannsrunden"
 
1027   # Descr. http://de.wikipedia.org/wiki/Rundung
 
1029   # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
 
1032   $amount = $amount * (10**($places));
 
1033   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1035   $main::lxdebug->leave_sub(2);
 
1037   return $round_amount;
 
1041 sub parse_template {
 
1042   $main::lxdebug->enter_sub();
 
1044   my ($self, $myconfig, $userspath) = @_;
 
1045   my ($template, $out);
 
1049   $self->{"cwd"} = getcwd();
 
1050   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1052   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1053     $template = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1054   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1055     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1056     $template = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1057   } elsif (($self->{"format"} =~ /html/i) ||
 
1058            (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1059     $template = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1060   } elsif (($self->{"format"} =~ /xml/i) ||
 
1061              (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1062     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1063   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
 
1064     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1065   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
 
1066     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1067   } elsif ( defined $self->{'format'}) {
 
1068     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1069   } elsif ( $self->{'format'} eq '' ) {
 
1070     $self->error("No Outputformat given: $self->{'format'}");
 
1071   } else { #Catch the rest
 
1072     $self->error("Outputformat not defined: $self->{'format'}");
 
1075   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1076   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1078   map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
 
1079       qw(email tel fax name signature company address businessnumber
 
1080          co_ustid taxnumber duns));
 
1082   map({ $self->{"${_}"} = $myconfig->{$_}; }
 
1086   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1088   # OUT is used for the media, screen, printer, email
 
1089   # for postscript we store a copy in a temporary file
 
1091   my $prepend_userspath;
 
1093   if (!$self->{tmpfile}) {
 
1094     $self->{tmpfile}   = "${fileid}.$self->{IN}";
 
1095     $prepend_userspath = 1;
 
1098   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
 
1100   $self->{tmpfile} =~ s|.*/||;
 
1101   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
 
1102   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
 
1104   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1105     $out = $self->{OUT};
 
1106     $self->{OUT} = ">$self->{tmpfile}";
 
1110     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
 
1112     open(OUT, ">-") or $self->error("STDOUT : $!");
 
1116   if (!$template->parse(*OUT)) {
 
1118     $self->error("$self->{IN} : " . $template->get_error());
 
1123   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1125     if ($self->{media} eq 'email') {
 
1127       my $mail = new Mailer;
 
1129       map { $mail->{$_} = $self->{$_} }
 
1130         qw(cc bcc subject message version format);
 
1131       $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
1132       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1133       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1134       $mail->{fileid} = "$fileid.";
 
1135       $myconfig->{signature} =~ s/\r//g;
 
1137       # if we send html or plain text inline
 
1138       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1139         $mail->{contenttype} = "text/html";
 
1141         $mail->{message}       =~ s/\r//g;
 
1142         $mail->{message}       =~ s/\n/<br>\n/g;
 
1143         $myconfig->{signature} =~ s/\n/<br>\n/g;
 
1144         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
1146         open(IN, $self->{tmpfile})
 
1147           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1149           $mail->{message} .= $_;
 
1156         if (!$self->{"do_not_attach"}) {
 
1157           @{ $mail->{attachments} } =
 
1158             ({ "filename" => $self->{"tmpfile"},
 
1159                "name" => $self->{"attachment_filename"} ?
 
1160                  $self->{"attachment_filename"} : $self->{"tmpfile"} });
 
1163         $mail->{message}  =~ s/\r//g;
 
1164         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1168       my $err = $mail->send();
 
1169       $self->error($self->cleanup . "$err") if ($err);
 
1173       $self->{OUT} = $out;
 
1175       my $numbytes = (-s $self->{tmpfile});
 
1176       open(IN, $self->{tmpfile})
 
1177         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1179       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1181       chdir("$self->{cwd}");
 
1182       #print(STDERR "Kopien $self->{copies}\n");
 
1183       #print(STDERR "OUT $self->{OUT}\n");
 
1184       for my $i (1 .. $self->{copies}) {
 
1186           open(OUT, $self->{OUT})
 
1187             or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1189           $self->{attachment_filename} = ($self->{attachment_filename}) 
 
1190                                        ? $self->{attachment_filename}
 
1191                                        : $self->generate_attachment_filename();
 
1193           # launch application
 
1194           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1195 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1196 Content-Length: $numbytes
 
1200           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
 
1220   chdir("$self->{cwd}");
 
1221   $main::lxdebug->leave_sub();
 
1224 sub get_formname_translation {
 
1225   my ($self, $formname) = @_;
 
1227   $formname ||= $self->{formname};
 
1229   my %formname_translations = (
 
1230     bin_list                => $main::locale->text('Bin List'),
 
1231     credit_note             => $main::locale->text('Credit Note'),
 
1232     invoice                 => $main::locale->text('Invoice'),
 
1233     packing_list            => $main::locale->text('Packing List'),
 
1234     pick_list               => $main::locale->text('Pick List'),
 
1235     proforma                => $main::locale->text('Proforma Invoice'),
 
1236     purchase_order          => $main::locale->text('Purchase Order'),
 
1237     request_quotation       => $main::locale->text('RFQ'),
 
1238     sales_order             => $main::locale->text('Confirmation'),
 
1239     sales_quotation         => $main::locale->text('Quotation'),
 
1240     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1241     storno_packing_list     => $main::locale->text('Storno Packing List'),
 
1242     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1243     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1246   return $formname_translations{$formname}
 
1249 sub get_number_prefix_for_type {
 
1253       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1254     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1255     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1261 sub get_extension_for_format {
 
1264   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1265                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1266                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1267                 : $self->{format} =~ /html/i         ? ".html"
 
1273 sub generate_attachment_filename {
 
1276   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1277   my $prefix              = $self->get_number_prefix_for_type();
 
1279   if ($attachment_filename && $self->{"${prefix}number"}) {
 
1280     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1281     $attachment_filename  =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1282     $attachment_filename  =~ s|[\s/\\]+|_|g;
 
1284     $attachment_filename = "";
 
1287   return $attachment_filename;
 
1290 sub generate_email_subject {
 
1293   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1294   my $prefix  = $self->get_number_prefix_for_type();
 
1296   if ($subject && $self->{"${prefix}number"}) {
 
1297     $subject .= " " . $self->{"${prefix}number"}
 
1304   $main::lxdebug->enter_sub();
 
1308   chdir("$self->{tmpdir}");
 
1311   if (-f "$self->{tmpfile}.err") {
 
1312     open(FH, "$self->{tmpfile}.err");
 
1317   if ($self->{tmpfile}) {
 
1318     $self->{tmpfile} =~ s|.*/||g;
 
1320     $self->{tmpfile} =~ s/\.\w+$//g;
 
1321     my $tmpfile = $self->{tmpfile};
 
1322     unlink(<$tmpfile.*>);
 
1325   chdir("$self->{cwd}");
 
1327   $main::lxdebug->leave_sub();
 
1333   $main::lxdebug->enter_sub();
 
1335   my ($self, $date, $myconfig) = @_;
 
1337   if ($date && $date =~ /\D/) {
 
1339     if ($myconfig->{dateformat} =~ /^yy/) {
 
1340       ($yy, $mm, $dd) = split /\D/, $date;
 
1342     if ($myconfig->{dateformat} =~ /^mm/) {
 
1343       ($mm, $dd, $yy) = split /\D/, $date;
 
1345     if ($myconfig->{dateformat} =~ /^dd/) {
 
1346       ($dd, $mm, $yy) = split /\D/, $date;
 
1351     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1352     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1354     $dd = "0$dd" if ($dd < 10);
 
1355     $mm = "0$mm" if ($mm < 10);
 
1357     $date = "$yy$mm$dd";
 
1360   $main::lxdebug->leave_sub();
 
1365 # Database routines used throughout
 
1368   $main::lxdebug->enter_sub(2);
 
1370   my ($self, $myconfig) = @_;
 
1372   # connect to database
 
1374     DBI->connect($myconfig->{dbconnect},
 
1375                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
 
1379   if ($myconfig->{dboptions}) {
 
1380     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1383   $main::lxdebug->leave_sub(2);
 
1388 sub dbconnect_noauto {
 
1389   $main::lxdebug->enter_sub();
 
1391   my ($self, $myconfig) = @_;
 
1393   # connect to database
 
1395     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
 
1396                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
 
1400   if ($myconfig->{dboptions}) {
 
1401     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1404   $main::lxdebug->leave_sub();
 
1409 sub get_standard_dbh {
 
1410   $main::lxdebug->enter_sub(2);
 
1412   my ($self, $myconfig) = @_;
 
1414   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1416   $main::lxdebug->leave_sub(2);
 
1418   return $standard_dbh;
 
1421 sub update_balance {
 
1422   $main::lxdebug->enter_sub();
 
1424   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1426   # if we have a value, go do it
 
1429     # retrieve balance from table
 
1430     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1431     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1432     my ($balance) = $sth->fetchrow_array;
 
1438     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1439     do_query($self, $dbh, $query, @values);
 
1441   $main::lxdebug->leave_sub();
 
1444 sub update_exchangerate {
 
1445   $main::lxdebug->enter_sub();
 
1447   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1449   # some sanity check for currency
 
1451     $main::lxdebug->leave_sub();
 
1454   $query = qq|SELECT curr FROM defaults|;
 
1456   my ($currency) = selectrow_query($self, $dbh, $query);
 
1457   my ($defaultcurrency) = split m/:/, $currency;
 
1460   if ($curr eq $defaultcurrency) {
 
1461     $main::lxdebug->leave_sub();
 
1465   $query = qq|SELECT e.curr FROM exchangerate e
 
1466                  WHERE e.curr = ? AND e.transdate = ?
 
1468   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1477   $buy = conv_i($buy, "NULL");
 
1478   $sell = conv_i($sell, "NULL");
 
1481   if ($buy != 0 && $sell != 0) {
 
1482     $set = "buy = $buy, sell = $sell";
 
1483   } elsif ($buy != 0) {
 
1484     $set = "buy = $buy";
 
1485   } elsif ($sell != 0) {
 
1486     $set = "sell = $sell";
 
1489   if ($sth->fetchrow_array) {
 
1490     $query = qq|UPDATE exchangerate
 
1496     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1497                 VALUES (?, $buy, $sell, ?)|;
 
1500   do_query($self, $dbh, $query, $curr, $transdate);
 
1502   $main::lxdebug->leave_sub();
 
1505 sub save_exchangerate {
 
1506   $main::lxdebug->enter_sub();
 
1508   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1510   my $dbh = $self->dbconnect($myconfig);
 
1514   $buy  = $rate if $fld eq 'buy';
 
1515   $sell = $rate if $fld eq 'sell';
 
1518   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1523   $main::lxdebug->leave_sub();
 
1526 sub get_exchangerate {
 
1527   $main::lxdebug->enter_sub();
 
1529   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1532   unless ($transdate) {
 
1533     $main::lxdebug->leave_sub();
 
1537   $query = qq|SELECT curr FROM defaults|;
 
1539   my ($currency) = selectrow_query($self, $dbh, $query);
 
1540   my ($defaultcurrency) = split m/:/, $currency;
 
1542   if ($currency eq $defaultcurrency) {
 
1543     $main::lxdebug->leave_sub();
 
1547   $query = qq|SELECT e.$fld FROM exchangerate e
 
1548                  WHERE e.curr = ? AND e.transdate = ?|;
 
1549   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1553   $main::lxdebug->leave_sub();
 
1555   return $exchangerate;
 
1558 sub check_exchangerate {
 
1559   $main::lxdebug->enter_sub();
 
1561   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1563   unless ($transdate) {
 
1564     $main::lxdebug->leave_sub();
 
1568   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1570   if ($currency eq $defaultcurrency) {
 
1571     $main::lxdebug->leave_sub();
 
1575   my $dbh   = $self->get_standard_dbh($myconfig);
 
1576   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1577                  WHERE e.curr = ? AND e.transdate = ?|;
 
1579   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1581   $exchangerate = 1 if ($exchangerate eq "");
 
1583   $main::lxdebug->leave_sub();
 
1585   return $exchangerate;
 
1588 sub get_default_currency {
 
1589   $main::lxdebug->enter_sub();
 
1591   my ($self, $myconfig) = @_;
 
1592   my $dbh = $self->get_standard_dbh($myconfig);
 
1594   my $query = qq|SELECT curr FROM defaults|;
 
1596   my ($curr)            = selectrow_query($self, $dbh, $query);
 
1597   my ($defaultcurrency) = split m/:/, $curr;
 
1599   $main::lxdebug->leave_sub();
 
1601   return $defaultcurrency;
 
1605 sub set_payment_options {
 
1606   $main::lxdebug->enter_sub();
 
1608   my ($self, $myconfig, $transdate) = @_;
 
1610   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1612   my $dbh = $self->get_standard_dbh($myconfig);
 
1615     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
 
1616     qq|FROM payment_terms p | .
 
1619   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1620    $self->{payment_terms}) =
 
1621      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1623   if ($transdate eq "") {
 
1624     if ($self->{invdate}) {
 
1625       $transdate = $self->{invdate};
 
1627       $transdate = $self->{transdate};
 
1632     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1633     qq|FROM payment_terms|;
 
1634   ($self->{netto_date}, $self->{skonto_date}) =
 
1635     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1637   my ($invtotal, $total);
 
1638   my (%amounts, %formatted_amounts);
 
1640   if ($self->{type} =~ /_order$/) {
 
1641     $amounts{invtotal} = $self->{ordtotal};
 
1642     $amounts{total}    = $self->{ordtotal};
 
1644   } elsif ($self->{type} =~ /_quotation$/) {
 
1645     $amounts{invtotal} = $self->{quototal};
 
1646     $amounts{total}    = $self->{quototal};
 
1649     $amounts{invtotal} = $self->{invtotal};
 
1650     $amounts{total}    = $self->{total};
 
1653   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1655   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1656   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1657   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1659   foreach (keys %amounts) {
 
1660     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1661     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1664   if ($self->{"language_id"}) {
 
1666       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1667       qq|FROM translation_payment_terms t | .
 
1668       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1669       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
 
1670     my ($description_long, $output_numberformat, $output_dateformat,
 
1671       $output_longdates) =
 
1672       selectrow_query($self, $dbh, $query,
 
1673                       $self->{"language_id"}, $self->{"payment_id"});
 
1675     $self->{payment_terms} = $description_long if ($description_long);
 
1677     if ($output_dateformat) {
 
1678       foreach my $key (qw(netto_date skonto_date)) {
 
1680           $main::locale->reformat_date($myconfig, $self->{$key},
 
1686     if ($output_numberformat &&
 
1687         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1688       my $saved_numberformat = $myconfig->{"numberformat"};
 
1689       $myconfig->{"numberformat"} = $output_numberformat;
 
1690       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1691       $myconfig->{"numberformat"} = $saved_numberformat;
 
1695   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1696   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1697   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1698   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1699   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1700   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1701   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1703   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1705   $main::lxdebug->leave_sub();
 
1709 sub get_template_language {
 
1710   $main::lxdebug->enter_sub();
 
1712   my ($self, $myconfig) = @_;
 
1714   my $template_code = "";
 
1716   if ($self->{language_id}) {
 
1717     my $dbh = $self->get_standard_dbh($myconfig);
 
1718     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1719     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1722   $main::lxdebug->leave_sub();
 
1724   return $template_code;
 
1727 sub get_printer_code {
 
1728   $main::lxdebug->enter_sub();
 
1730   my ($self, $myconfig) = @_;
 
1732   my $template_code = "";
 
1734   if ($self->{printer_id}) {
 
1735     my $dbh = $self->get_standard_dbh($myconfig);
 
1736     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1737     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1740   $main::lxdebug->leave_sub();
 
1742   return $template_code;
 
1746   $main::lxdebug->enter_sub();
 
1748   my ($self, $myconfig) = @_;
 
1750   my $template_code = "";
 
1752   if ($self->{shipto_id}) {
 
1753     my $dbh = $self->get_standard_dbh($myconfig);
 
1754     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1755     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1756     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1759   $main::lxdebug->leave_sub();
 
1763   $main::lxdebug->enter_sub();
 
1765   my ($self, $dbh, $id, $module) = @_;
 
1770   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
1771                        contact phone fax email)) {
 
1772     if ($self->{"shipto$item"}) {
 
1773       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1775     push(@values, $self->{"shipto${item}"});
 
1779     if ($self->{shipto_id}) {
 
1780       my $query = qq|UPDATE shipto set
 
1782                        shiptodepartment_1 = ?,
 
1783                        shiptodepartment_2 = ?,
 
1792                      WHERE shipto_id = ?|;
 
1793       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1795       my $query = qq|SELECT * FROM shipto
 
1796                      WHERE shiptoname = ? AND
 
1797                        shiptodepartment_1 = ? AND
 
1798                        shiptodepartment_2 = ? AND
 
1799                        shiptostreet = ? AND
 
1800                        shiptozipcode = ? AND
 
1802                        shiptocountry = ? AND
 
1803                        shiptocontact = ? AND
 
1809       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1812           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
1813                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
1814                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
 
1815              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1816         do_query($self, $dbh, $query, $id, @values, $module);
 
1821   $main::lxdebug->leave_sub();
 
1825   $main::lxdebug->enter_sub();
 
1827   my ($self, $dbh) = @_;
 
1829   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
1830   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
1831   $self->{"employee_id"} *= 1;
 
1833   $main::lxdebug->leave_sub();
 
1837   $main::lxdebug->enter_sub();
 
1839   my ($self, $myconfig, $salesman_id) = @_;
 
1841   $main::lxdebug->leave_sub() and return unless $salesman_id;
 
1843   my $dbh = $self->get_standard_dbh($myconfig);
 
1846     selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|,
 
1850     my $user = new User($main::memberfile, $login);
 
1851     map({ $self->{"salesman_$_"} = $user->{$_}; }
 
1852         qw(address businessnumber co_ustid company duns email fax name
 
1854     $self->{salesman_login} = $login;
 
1856     $self->{salesman_name} = $login
 
1857       if ($self->{salesman_name} eq "");
 
1860   $main::lxdebug->leave_sub();
 
1864   $main::lxdebug->enter_sub();
 
1866   my ($self, $myconfig) = @_;
 
1868   my $dbh = $self->get_standard_dbh($myconfig);
 
1869   my $query = qq|SELECT current_date + terms_netto FROM payment_terms WHERE id = ?|;
 
1870   ($self->{duedate}) = selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1872   $main::lxdebug->leave_sub();
 
1876   $main::lxdebug->enter_sub();
 
1878   my ($self, $dbh, $id, $key) = @_;
 
1880   $key = "all_contacts" unless ($key);
 
1883     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
1884     qq|FROM contacts | .
 
1885     qq|WHERE cp_cv_id = ? | .
 
1886     qq|ORDER BY lower(cp_name)|;
 
1888   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
1890   $main::lxdebug->leave_sub();
 
1894   $main::lxdebug->enter_sub();
 
1896   my ($self, $dbh, $key) = @_;
 
1898   my ($all, $old_id, $where, @values);
 
1900   if (ref($key) eq "HASH") {
 
1903     $key = "ALL_PROJECTS";
 
1905     foreach my $p (keys(%{$params})) {
 
1907         $all = $params->{$p};
 
1908       } elsif ($p eq "old_id") {
 
1909         $old_id = $params->{$p};
 
1910       } elsif ($p eq "key") {
 
1911         $key = $params->{$p};
 
1917     $where = "WHERE active ";
 
1919       if (ref($old_id) eq "ARRAY") {
 
1920         my @ids = grep({ $_ } @{$old_id});
 
1922           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
1923           push(@values, @ids);
 
1926         $where .= " OR (id = ?) ";
 
1927         push(@values, $old_id);
 
1933     qq|SELECT id, projectnumber, description, active | .
 
1936     qq|ORDER BY lower(projectnumber)|;
 
1938   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
1940   $main::lxdebug->leave_sub();
 
1944   $main::lxdebug->enter_sub();
 
1946   my ($self, $dbh, $vc_id, $key) = @_;
 
1948   $key = "all_shipto" unless ($key);
 
1950   # get shipping addresses
 
1951   my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
1953   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
1955   $main::lxdebug->leave_sub();
 
1959   $main::lxdebug->enter_sub();
 
1961   my ($self, $dbh, $key) = @_;
 
1963   $key = "all_printers" unless ($key);
 
1965   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
1967   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
1969   $main::lxdebug->leave_sub();
 
1973   $main::lxdebug->enter_sub();
 
1975   my ($self, $dbh, $params) = @_;
 
1977   $key = $params->{key};
 
1978   $key = "all_charts" unless ($key);
 
1980   my $transdate = quote_db_date($params->{transdate});
 
1983     qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
 
1985     qq|LEFT JOIN taxkeys tk ON | .
 
1986     qq|(tk.id = (SELECT id FROM taxkeys | .
 
1987     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
1988     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
1989     qq|ORDER BY c.accno|;
 
1991   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
1993   $main::lxdebug->leave_sub();
 
1996 sub _get_taxcharts {
 
1997   $main::lxdebug->enter_sub();
 
1999   my ($self, $dbh, $key) = @_;
 
2001   $key = "all_taxcharts" unless ($key);
 
2003   my $query = qq|SELECT * FROM tax ORDER BY taxkey|;
 
2005   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2007   $main::lxdebug->leave_sub();
 
2011   $main::lxdebug->enter_sub();
 
2013   my ($self, $dbh, $key) = @_;
 
2015   $key = "all_taxzones" unless ($key);
 
2017   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2019   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2021   $main::lxdebug->leave_sub();
 
2024 sub _get_employees {
 
2025   $main::lxdebug->enter_sub();
 
2027   my ($self, $dbh, $default_key, $key) = @_;
 
2029   $key = $default_key unless ($key);
 
2030   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2032   $main::lxdebug->leave_sub();
 
2035 sub _get_business_types {
 
2036   $main::lxdebug->enter_sub();
 
2038   my ($self, $dbh, $key) = @_;
 
2040   $key = "all_business_types" unless ($key);
 
2042     selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
 
2044   $main::lxdebug->leave_sub();
 
2047 sub _get_languages {
 
2048   $main::lxdebug->enter_sub();
 
2050   my ($self, $dbh, $key) = @_;
 
2052   $key = "all_languages" unless ($key);
 
2054   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2056   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2058   $main::lxdebug->leave_sub();
 
2061 sub _get_dunning_configs {
 
2062   $main::lxdebug->enter_sub();
 
2064   my ($self, $dbh, $key) = @_;
 
2066   $key = "all_dunning_configs" unless ($key);
 
2068   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2070   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2072   $main::lxdebug->leave_sub();
 
2075 sub _get_currencies {
 
2076 $main::lxdebug->enter_sub();
 
2078   my ($self, $dbh, $key) = @_;
 
2080   $key = "all_currencies" unless ($key);
 
2082   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2084   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2086   $main::lxdebug->leave_sub();
 
2090 $main::lxdebug->enter_sub();
 
2092   my ($self, $dbh, $key) = @_;
 
2094   $key = "all_payments" unless ($key);
 
2096   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
 
2098   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2100   $main::lxdebug->leave_sub();
 
2103 sub _get_customers {
 
2104   $main::lxdebug->enter_sub();
 
2106   my ($self, $dbh, $key, $limit) = @_;
 
2108   $key = "all_customers" unless ($key);
 
2109   $limit_clause = "LIMIT $limit" if $limit;
 
2111   my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name $limit_clause|;
 
2113   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2115   $main::lxdebug->leave_sub();
 
2119   $main::lxdebug->enter_sub();
 
2121   my ($self, $dbh, $key) = @_;
 
2123   $key = "all_vendors" unless ($key);
 
2125   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2127   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2129   $main::lxdebug->leave_sub();
 
2132 sub _get_departments {
 
2133   $main::lxdebug->enter_sub();
 
2135   my ($self, $dbh, $key) = @_;
 
2137   $key = "all_departments" unless ($key);
 
2139   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2141   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2143   $main::lxdebug->leave_sub();
 
2146 sub _get_warehouses {
 
2147   $main::lxdebug->enter_sub();
 
2149   my ($self, $dbh, $param) = @_;
 
2151   my ($key, $bins_key, $q_access, @values);
 
2153   if ('' eq ref $param) {
 
2156     $key      = $param->{key};
 
2157     $bins_key = $param->{bins};
 
2159     if ($param->{access}) {
 
2162               SELECT wa.employee_id
 
2163               FROM warehouse_access wa
 
2164               WHERE (wa.employee_id  = (SELECT id FROM employee WHERE login = ?))
 
2165                 AND (wa.warehouse_id = w.id)
 
2166                 AND (wa.access IN ('ro', 'rw')))|;
 
2167       push @values, $param->{access};
 
2170     if ($param->{no_personal}) {
 
2171       $q_access .= qq| AND (w.personal_warehouse_of IS NULL)|;
 
2173     } elsif ($param->{personal}) {
 
2174       $q_access .= qq| AND (w.personal_warehouse_of = ?)|;
 
2175       push @values, conv_i($param->{personal});
 
2179   my $query = qq|SELECT w.* FROM warehouse w
 
2180                  WHERE (NOT w.invalid) AND
 
2181                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2183                  ORDER BY w.sortkey|;
 
2185   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2188     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
 
2189     my $sth = prepare_query($self, $dbh, $query);
 
2191     foreach my $warehouse (@{ $self->{$key} }) {
 
2192       do_statement($self, $sth, $query, $warehouse->{id});
 
2193       $warehouse->{$bins_key} = [];
 
2195       while (my $ref = $sth->fetchrow_hashref()) {
 
2196         push @{ $warehouse->{$bins_key} }, $ref;
 
2202   $main::lxdebug->leave_sub();
 
2206   $main::lxdebug->enter_sub();
 
2208   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2210   my $query  = qq|SELECT * FROM $table|;
 
2211   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2213   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2215   $main::lxdebug->leave_sub();
 
2219   $main::lxdebug->enter_sub();
 
2221   my ($self, $dbh, $key) = @_;
 
2223   $key ||= "all_groups";
 
2225   my $groups = $main::auth->read_groups();
 
2227   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2229   $main::lxdebug->leave_sub();
 
2233   $main::lxdebug->enter_sub();
 
2238   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2239   my ($sth, $query, $ref);
 
2241   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2242   my $vc_id = $self->{"${vc}_id"};
 
2244   if ($params{"contacts"}) {
 
2245     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2248   if ($params{"shipto"}) {
 
2249     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2252   if ($params{"projects"} || $params{"all_projects"}) {
 
2253     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2254                          $params{"all_projects"} : $params{"projects"},
 
2255                          $params{"all_projects"} ? 1 : 0);
 
2258   if ($params{"printers"}) {
 
2259     $self->_get_printers($dbh, $params{"printers"});
 
2262   if ($params{"languages"}) {
 
2263     $self->_get_languages($dbh, $params{"languages"});
 
2266   if ($params{"charts"}) {
 
2267     $self->_get_charts($dbh, $params{"charts"});
 
2270   if ($params{"taxcharts"}) {
 
2271     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2274   if ($params{"taxzones"}) {
 
2275     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2278   if ($params{"employees"}) {
 
2279     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2282   if ($params{"salesmen"}) {
 
2283     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2286   if ($params{"business_types"}) {
 
2287     $self->_get_business_types($dbh, $params{"business_types"});
 
2290   if ($params{"dunning_configs"}) {
 
2291     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2294   if($params{"currencies"}) {
 
2295     $self->_get_currencies($dbh, $params{"currencies"});
 
2298   if($params{"customers"}) {
 
2299     if (ref $params{"customers"} eq 'HASH') {
 
2300       $self->_get_customers($dbh, $params{"customers"}{key}, $params{"customers"}{limit});
 
2302       $self->_get_customers($dbh, $params{"customers"});
 
2306   if($params{"vendors"}) {
 
2307     if (ref $params{"vendors"} eq 'HASH') {
 
2308       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2310       $self->_get_vendors($dbh, $params{"vendors"});
 
2314   if($params{"payments"}) {
 
2315     $self->_get_payments($dbh, $params{"payments"});
 
2318   if($params{"departments"}) {
 
2319     $self->_get_departments($dbh, $params{"departments"});
 
2322   if ($params{price_factors}) {
 
2323     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2326   if ($params{warehouses}) {
 
2327     $self->_get_warehouses($dbh, $params{warehouses});
 
2330   if ($params{groups}) {
 
2331     $self->_get_groups($dbh, $params{groups});
 
2334   $main::lxdebug->leave_sub();
 
2337 # this sub gets the id and name from $table
 
2339   $main::lxdebug->enter_sub();
 
2341   my ($self, $myconfig, $table) = @_;
 
2343   # connect to database
 
2344   my $dbh = $self->get_standard_dbh($myconfig);
 
2346   $table = $table eq "customer" ? "customer" : "vendor";
 
2347   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2349   my ($query, @values);
 
2351   if (!$self->{openinvoices}) {
 
2353     if ($self->{customernumber} ne "") {
 
2354       $where = qq|(vc.customernumber ILIKE ?)|;
 
2355       push(@values, '%' . $self->{customernumber} . '%');
 
2357       $where = qq|(vc.name ILIKE ?)|;
 
2358       push(@values, '%' . $self->{$table} . '%');
 
2362       qq~SELECT vc.id, vc.name,
 
2363            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2365          WHERE $where AND (NOT vc.obsolete)
 
2369       qq~SELECT DISTINCT vc.id, vc.name,
 
2370            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2372          JOIN $table vc ON (a.${table}_id = vc.id)
 
2373          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2375     push(@values, '%' . $self->{$table} . '%');
 
2378   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2380   $main::lxdebug->leave_sub();
 
2382   return scalar(@{ $self->{name_list} });
 
2385 # the selection sub is used in the AR, AP, IS, IR and OE module
 
2388   $main::lxdebug->enter_sub();
 
2390   my ($self, $myconfig, $table, $module) = @_;
 
2393   my $dbh = $self->get_standard_dbh($myconfig);
 
2395   $table = $table eq "customer" ? "customer" : "vendor";
 
2397   my $query = qq|SELECT count(*) FROM $table|;
 
2398   my ($count) = selectrow_query($self, $dbh, $query);
 
2400   # build selection list
 
2401   if ($count < $myconfig->{vclimit}) {
 
2402     $query = qq|SELECT id, name, salesman_id
 
2403                 FROM $table WHERE NOT obsolete
 
2405     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2409   $self->get_employee($dbh);
 
2411   # setup sales contacts
 
2412   $query = qq|SELECT e.id, e.name
 
2414               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
 
2415   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2418   push(@{ $self->{all_employees} },
 
2419        { id   => $self->{employee_id},
 
2420          name => $self->{employee} });
 
2422   # sort the whole thing
 
2423   @{ $self->{all_employees} } =
 
2424     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
2426   if ($module eq 'AR') {
 
2428     # prepare query for departments
 
2429     $query = qq|SELECT id, description
 
2432                 ORDER BY description|;
 
2435     $query = qq|SELECT id, description
 
2437                 ORDER BY description|;
 
2440   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2443   $query = qq|SELECT id, description
 
2447   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2450   $query = qq|SELECT printer_description, id
 
2452               ORDER BY printer_description|;
 
2454   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2457   $query = qq|SELECT id, description
 
2461   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2463   $main::lxdebug->leave_sub();
 
2466 sub language_payment {
 
2467   $main::lxdebug->enter_sub();
 
2469   my ($self, $myconfig) = @_;
 
2471   my $dbh = $self->get_standard_dbh($myconfig);
 
2473   my $query = qq|SELECT id, description
 
2477   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2480   $query = qq|SELECT printer_description, id
 
2482               ORDER BY printer_description|;
 
2484   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2487   $query = qq|SELECT id, description
 
2491   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2493   # get buchungsgruppen
 
2494   $query = qq|SELECT id, description
 
2495               FROM buchungsgruppen|;
 
2497   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2499   $main::lxdebug->leave_sub();
 
2502 # this is only used for reports
 
2503 sub all_departments {
 
2504   $main::lxdebug->enter_sub();
 
2506   my ($self, $myconfig, $table) = @_;
 
2508   my $dbh = $self->get_standard_dbh($myconfig);
 
2511   if ($table eq 'customer') {
 
2512     $where = "WHERE role = 'P' ";
 
2515   my $query = qq|SELECT id, description
 
2518                  ORDER BY description|;
 
2519   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2521   delete($self->{all_departments}) unless (@{ $self->{all_departments} });
 
2523   $main::lxdebug->leave_sub();
 
2527   $main::lxdebug->enter_sub();
 
2529   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2532   if ($table eq "customer") {
 
2541   $self->all_vc($myconfig, $table, $module);
 
2543   # get last customers or vendors
 
2544   my ($query, $sth, $ref);
 
2546   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2551     my $transdate = "current_date";
 
2552     if ($self->{transdate}) {
 
2553       $transdate = $dbh->quote($self->{transdate});
 
2556     # now get the account numbers
 
2557     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2558                 FROM chart c, taxkeys tk
 
2559                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2560                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2563     $sth = $dbh->prepare($query);
 
2565     do_statement($self, $sth, $query, '%' . $module . '%');
 
2567     $self->{accounts} = "";
 
2568     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2570       foreach my $key (split(/:/, $ref->{link})) {
 
2571         if ($key =~ /\Q$module\E/) {
 
2573           # cross reference for keys
 
2574           $xkeyref{ $ref->{accno} } = $key;
 
2576           push @{ $self->{"${module}_links"}{$key} },
 
2577             { accno       => $ref->{accno},
 
2578               description => $ref->{description},
 
2579               taxkey      => $ref->{taxkey_id},
 
2580               tax_id      => $ref->{tax_id} };
 
2582           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2588   # get taxkeys and description
 
2589   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2590   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2592   if (($module eq "AP") || ($module eq "AR")) {
 
2593     # get tax rates and description
 
2594     $query = qq|SELECT * FROM tax|;
 
2595     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2601            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2602            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2603            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2604            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2606            d.description AS department,
 
2609          JOIN $table c ON (a.${table}_id = c.id)
 
2610          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2611          LEFT JOIN department d ON (d.id = a.department_id)
 
2613     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2615     foreach $key (keys %$ref) {
 
2616       $self->{$key} = $ref->{$key};
 
2619     my $transdate = "current_date";
 
2620     if ($self->{transdate}) {
 
2621       $transdate = $dbh->quote($self->{transdate});
 
2624     # now get the account numbers
 
2625     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2627                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2629                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2630                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2633     $sth = $dbh->prepare($query);
 
2634     do_statement($self, $sth, $query, "%$module%");
 
2636     $self->{accounts} = "";
 
2637     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2639       foreach my $key (split(/:/, $ref->{link})) {
 
2640         if ($key =~ /\Q$module\E/) {
 
2642           # cross reference for keys
 
2643           $xkeyref{ $ref->{accno} } = $key;
 
2645           push @{ $self->{"${module}_links"}{$key} },
 
2646             { accno       => $ref->{accno},
 
2647               description => $ref->{description},
 
2648               taxkey      => $ref->{taxkey_id},
 
2649               tax_id      => $ref->{tax_id} };
 
2651           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2657     # get amounts from individual entries
 
2660            c.accno, c.description,
 
2661            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
 
2665          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2666          LEFT JOIN project p ON (p.id = a.project_id)
 
2667          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
2668                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
2669                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
2670                                         THEN tk.chart_id = a.chart_id
 
2673                                        OR (c.link='%tax%')) AND
 
2674                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
2675          WHERE a.trans_id = ?
 
2676          AND a.fx_transaction = '0'
 
2677          ORDER BY a.oid, a.transdate|;
 
2678     $sth = $dbh->prepare($query);
 
2679     do_statement($self, $sth, $query, $self->{id});
 
2681     # get exchangerate for currency
 
2682     $self->{exchangerate} =
 
2683       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2686     # store amounts in {acc_trans}{$key} for multiple accounts
 
2687     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2688       $ref->{exchangerate} =
 
2689         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2690       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2693       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2694         $ref->{amount} *= -1;
 
2696       $ref->{index} = $index;
 
2698       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2704            d.curr AS currencies, d.closedto, d.revtrans,
 
2705            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2706            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2708     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2709     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2716             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
2717             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2718             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2720     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2721     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2723     if ($self->{"$self->{vc}_id"}) {
 
2725       # only setup currency
 
2726       ($self->{currency}) = split(/:/, $self->{currencies});
 
2730       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2732       # get exchangerate for currency
 
2733       $self->{exchangerate} =
 
2734         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2740   $main::lxdebug->leave_sub();
 
2744   $main::lxdebug->enter_sub();
 
2746   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2748   my $arap  = ($table eq 'customer') ? "ar" : "ap";
 
2749   $table = $table eq "customer" ? "customer" : "vendor";
 
2750   my $where = "1 = 1";
 
2752   if ($self->{type} =~ /_order/) {
 
2754     $where = "quotation = '0'";
 
2756   if ($self->{type} =~ /_quotation/) {
 
2758     $where = "quotation = '1'";
 
2761   my $query = qq|SELECT MAX(id) FROM $arap
 
2762                  WHERE $where AND ${table}_id > 0|;
 
2763   my ($trans_id) = selectrow_query($self, $dbh, $query);
 
2768          a.curr, a.${table}_id, a.department_id,
 
2769          d.description AS department,
 
2770          ct.name, current_date + ct.terms AS duedate
 
2772        LEFT JOIN $table ct ON (a.${table}_id = ct.id)
 
2773        LEFT JOIN department d ON (a.department_id = d.id)
 
2775   ($self->{currency},   $self->{"${table}_id"}, $self->{department_id},
 
2776    $self->{department}, $self->{$table},        $self->{duedate})
 
2777     = selectrow_query($self, $dbh, $query, $trans_id);
 
2779   $main::lxdebug->leave_sub();
 
2783   $main::lxdebug->enter_sub();
 
2785   my ($self, $myconfig, $thisdate, $days) = @_;
 
2787   my $dbh = $self->get_standard_dbh($myconfig);
 
2792     my $dateformat = $myconfig->{dateformat};
 
2793     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2794     $thisdate = $dbh->quote($thisdate);
 
2795     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
2797     $query = qq|SELECT current_date AS thisdate|;
 
2800   ($thisdate) = selectrow_query($self, $dbh, $query);
 
2802   $main::lxdebug->leave_sub();
 
2808   $main::lxdebug->enter_sub();
 
2810   my ($self, $string) = @_;
 
2812   if ($string !~ /%/) {
 
2813     $string = "%$string%";
 
2816   $string =~ s/\'/\'\'/g;
 
2818   $main::lxdebug->leave_sub();
 
2824   $main::lxdebug->enter_sub();
 
2826   my ($self, $flds, $new, $count, $numrows) = @_;
 
2830   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
2835   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
2837     $j = $item->{ndx} - 1;
 
2838     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
2842   for $i ($count + 1 .. $numrows) {
 
2843     map { delete $self->{"${_}_$i"} } @{$flds};
 
2846   $main::lxdebug->leave_sub();
 
2850   $main::lxdebug->enter_sub();
 
2852   my ($self, $myconfig) = @_;
 
2856   my $dbh = $self->dbconnect_noauto($myconfig);
 
2858   my $query = qq|DELETE FROM status
 
2859                  WHERE (formname = ?) AND (trans_id = ?)|;
 
2860   my $sth = prepare_query($self, $dbh, $query);
 
2862   if ($self->{formname} =~ /(check|receipt)/) {
 
2863     for $i (1 .. $self->{rowcount}) {
 
2864       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
2867     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
2871   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2872   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2874   my %queued = split / /, $self->{queued};
 
2877   if ($self->{formname} =~ /(check|receipt)/) {
 
2879     # this is a check or receipt, add one entry for each lineitem
 
2880     my ($accno) = split /--/, $self->{account};
 
2881     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
2882                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
2883     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
2884     $sth = prepare_query($self, $dbh, $query);
 
2886     for $i (1 .. $self->{rowcount}) {
 
2887       if ($self->{"checked_$i"}) {
 
2888         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
2894     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
2895                 VALUES (?, ?, ?, ?, ?)|;
 
2896     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
2897              $queued{$self->{formname}}, $self->{formname});
 
2903   $main::lxdebug->leave_sub();
 
2907   $main::lxdebug->enter_sub();
 
2909   my ($self, $dbh) = @_;
 
2911   my ($query, $printed, $emailed);
 
2913   my $formnames  = $self->{printed};
 
2914   my $emailforms = $self->{emailed};
 
2916   $query = qq|DELETE FROM status
 
2917                  WHERE (formname = ?) AND (trans_id = ?)|;
 
2918   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
2920   # this only applies to the forms
 
2921   # checks and receipts are posted when printed or queued
 
2923   if ($self->{queued}) {
 
2924     my %queued = split / /, $self->{queued};
 
2926     foreach my $formname (keys %queued) {
 
2927       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2928       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2930       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
2931                   VALUES (?, ?, ?, ?, ?)|;
 
2932       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
2934       $formnames  =~ s/\Q$self->{formname}\E//;
 
2935       $emailforms =~ s/\Q$self->{formname}\E//;
 
2940   # save printed, emailed info
 
2941   $formnames  =~ s/^ +//g;
 
2942   $emailforms =~ s/^ +//g;
 
2945   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
2946   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
2948   foreach my $formname (keys %status) {
 
2949     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2950     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2952     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
2953                 VALUES (?, ?, ?, ?)|;
 
2954     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
2957   $main::lxdebug->leave_sub();
 
2961 # $main::locale->text('SAVED')
 
2962 # $main::locale->text('DELETED')
 
2963 # $main::locale->text('ADDED')
 
2964 # $main::locale->text('PAYMENT POSTED')
 
2965 # $main::locale->text('POSTED')
 
2966 # $main::locale->text('POSTED AS NEW')
 
2967 # $main::locale->text('ELSE')
 
2968 # $main::locale->text('SAVED FOR DUNNING')
 
2969 # $main::locale->text('DUNNING STARTED')
 
2970 # $main::locale->text('PRINTED')
 
2971 # $main::locale->text('MAILED')
 
2972 # $main::locale->text('SCREENED')
 
2973 # $main::locale->text('CANCELED')
 
2974 # $main::locale->text('invoice')
 
2975 # $main::locale->text('proforma')
 
2976 # $main::locale->text('sales_order')
 
2977 # $main::locale->text('packing_list')
 
2978 # $main::locale->text('pick_list')
 
2979 # $main::locale->text('purchase_order')
 
2980 # $main::locale->text('bin_list')
 
2981 # $main::locale->text('sales_quotation')
 
2982 # $main::locale->text('request_quotation')
 
2985   $main::lxdebug->enter_sub();
 
2990   if(!exists $self->{employee_id}) {
 
2991     &get_employee($self, $dbh);
 
2995    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
2996    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
2997   my @values = (conv_i($self->{id}), $self->{login},
 
2998                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
2999   do_query($self, $dbh, $query, @values);
 
3001   $main::lxdebug->leave_sub();
 
3005   $main::lxdebug->enter_sub();
 
3007   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3008   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3009   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3012   if ($trans_id ne "") {
 
3014       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 | .
 
3015       qq|FROM history_erp h | .
 
3016       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3017       qq|WHERE trans_id = | . $trans_id
 
3018       . $restriction . qq| |
 
3021     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3023     $sth->execute() || $self->dberror("$query");
 
3025     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3026       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3027       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3028       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3029       $tempArray[$i++] = $hash_ref;
 
3031     $main::lxdebug->leave_sub() and return \@tempArray 
 
3032       if ($i > 0 && $tempArray[0] ne "");
 
3034   $main::lxdebug->leave_sub();
 
3038 sub update_defaults {
 
3039   $main::lxdebug->enter_sub();
 
3041   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3044   if ($provided_dbh) {
 
3045     $dbh = $provided_dbh;
 
3047     $dbh = $self->dbconnect_noauto($myconfig);
 
3049   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3050   my $sth   = $dbh->prepare($query);
 
3052   $sth->execute || $self->dberror($query);
 
3053   my ($var) = $sth->fetchrow_array;
 
3056   if ($var =~ m/\d+$/) {
 
3057     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3058     my $len_diff = length($var) - $-[0] - length($new_var);
 
3059     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3065   $query = qq|UPDATE defaults SET $fld = ?|;
 
3066   do_query($self, $dbh, $query, $var);
 
3068   if (!$provided_dbh) {
 
3073   $main::lxdebug->leave_sub();
 
3078 sub update_business {
 
3079   $main::lxdebug->enter_sub();
 
3081   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3084   if ($provided_dbh) {
 
3085     $dbh = $provided_dbh;
 
3087     $dbh = $self->dbconnect_noauto($myconfig);
 
3090     qq|SELECT customernumberinit FROM business
 
3091        WHERE id = ? FOR UPDATE|;
 
3092   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3094   if ($var =~ m/\d+$/) {
 
3095     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3096     my $len_diff = length($var) - $-[0] - length($new_var);
 
3097     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3103   $query = qq|UPDATE business
 
3104               SET customernumberinit = ?
 
3106   do_query($self, $dbh, $query, $var, $business_id);
 
3108   if (!$provided_dbh) {
 
3113   $main::lxdebug->leave_sub();
 
3118 sub get_partsgroup {
 
3119   $main::lxdebug->enter_sub();
 
3121   my ($self, $myconfig, $p) = @_;
 
3123   my $dbh = $self->get_standard_dbh($myconfig);
 
3125   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3127                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3130   if ($p->{searchitems} eq 'part') {
 
3131     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3133   if ($p->{searchitems} eq 'service') {
 
3134     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3136   if ($p->{searchitems} eq 'assembly') {
 
3137     $query .= qq|WHERE p.assembly = '1'|;
 
3139   if ($p->{searchitems} eq 'labor') {
 
3140     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3143   $query .= qq|ORDER BY partsgroup|;
 
3146     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3147                 ORDER BY partsgroup|;
 
3150   if ($p->{language_code}) {
 
3151     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3152                   t.description AS translation
 
3154                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3155                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3156                 ORDER BY translation|;
 
3157     @values = ($p->{language_code});
 
3160   $self->{all_partsgroup} = selectall_hashref_query($self, $dbh, $query, @values);
 
3162   $main::lxdebug->leave_sub();
 
3165 sub get_pricegroup {
 
3166   $main::lxdebug->enter_sub();
 
3168   my ($self, $myconfig, $p) = @_;
 
3170   my $dbh = $self->get_standard_dbh($myconfig);
 
3172   my $query = qq|SELECT p.id, p.pricegroup
 
3175   $query .= qq| ORDER BY pricegroup|;
 
3178     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3179                 ORDER BY pricegroup|;
 
3182   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3184   $main::lxdebug->leave_sub();
 
3188 # usage $form->all_years($myconfig, [$dbh])
 
3189 # return list of all years where bookings found
 
3192   $main::lxdebug->enter_sub();
 
3194   my ($self, $myconfig, $dbh) = @_;
 
3196   $dbh ||= $self->get_standard_dbh($myconfig);
 
3199   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3200                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3201   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3203   if ($myconfig->{dateformat} =~ /^yy/) {
 
3204     ($startdate) = split /\W/, $startdate;
 
3205     ($enddate) = split /\W/, $enddate;
 
3207     (@_) = split /\W/, $startdate;
 
3209     (@_) = split /\W/, $enddate;
 
3214   $startdate = substr($startdate,0,4);
 
3215   $enddate = substr($enddate,0,4);
 
3217   while ($enddate >= $startdate) {
 
3218     push @all_years, $enddate--;
 
3223   $main::lxdebug->leave_sub();
 
3227   $main::lxdebug->enter_sub();
 
3231   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if $self->{$_} } @vars;
 
3233   $main::lxdebug->leave_sub();
 
3237   $main::lxdebug->enter_sub();
 
3242   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if $self->{_VAR_BACKUP}->{$_} } @vars;
 
3244   $main::lxdebug->leave_sub();