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 #======================================================================
 
  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.6.0 beta 1";
 
 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 m/\./, $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 ($params{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         <script type="text/javascript" src="js/common.js"></script>
 
 581         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
 
 582         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
 
 583         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
 
 584         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
 
 591       ? "$self->{title} - $self->{titlebar}"
 
 594     foreach $item (@ { $self->{AJAX} }) {
 
 595       $ajax .= $item->show_javascript();
 
 598     print $self->create_http_response('content_type' => 'text/html',
 
 599                                       'charset'      => $db_charset,);
 
 600     print qq|${doctype}<html>
 
 602   <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
 
 603   <title>$self->{titlebar}</title>
 
 610   <script type="text/javascript">
 
 618   <meta name="robots" content="noindex,nofollow" />
 
 619   <script type="text/javascript" src="js/highlight_input.js"></script>
 
 621   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
 
 622   <script type="text/javascript" src="js/tabcontent.js">
 
 624   /***********************************************
 
 625    * Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
 
 626    * This notice MUST stay intact for legal use
 
 627    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
 
 628    ***********************************************/
 
 639   $main::lxdebug->leave_sub();
 
 642 sub ajax_response_header {
 
 643   $main::lxdebug->enter_sub();
 
 647   my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
 648   my $cgi        = $main::cgi || CGI->new('');
 
 649   my $output     = $cgi->header('-charset' => $db_charset);
 
 651   $main::lxdebug->leave_sub();
 
 656 sub _prepare_html_template {
 
 657   $main::lxdebug->enter_sub();
 
 659   my ($self, $file, $additional_params) = @_;
 
 662   if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
 
 663     $language = $main::language;
 
 665     $language = $main::myconfig{"countrycode"};
 
 667   $language = "de" unless ($language);
 
 669   if (-f "templates/webpages/${file}_${language}.html") {
 
 670     if ((-f ".developer") &&
 
 671         (-f "templates/webpages/${file}_master.html") &&
 
 672         ((stat("templates/webpages/${file}_master.html"))[9] >
 
 673          (stat("templates/webpages/${file}_${language}.html"))[9])) {
 
 674       my $info = "Developer information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
 
 675         "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 676       print(qq|<pre>$info</pre>|);
 
 680     $file = "templates/webpages/${file}_${language}.html";
 
 681   } elsif (-f "templates/webpages/${file}.html") {
 
 682     $file = "templates/webpages/${file}.html";
 
 684     my $info = "Web page template '${file}' not found.\n" .
 
 685       "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 686     print(qq|<pre>$info</pre>|);
 
 690   if ($self->{"DEBUG"}) {
 
 691     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
 
 694   if ($additional_params->{"DEBUG"}) {
 
 695     $additional_params->{"DEBUG"} =
 
 696       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
 
 699   if (%main::myconfig) {
 
 700     map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
 
 701     my $jsc_dateformat = $main::myconfig{"dateformat"};
 
 702     $jsc_dateformat =~ s/d+/\%d/gi;
 
 703     $jsc_dateformat =~ s/m+/\%m/gi;
 
 704     $jsc_dateformat =~ s/y+/\%Y/gi;
 
 705     $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
 
 708   $additional_params->{"conf_dbcharset"}              = $main::dbcharset;
 
 709   $additional_params->{"conf_webdav"}                 = $main::webdav;
 
 710   $additional_params->{"conf_lizenzen"}               = $main::lizenzen;
 
 711   $additional_params->{"conf_latex_templates"}        = $main::latex;
 
 712   $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
 
 714   if (%main::debug_options) {
 
 715     map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
 
 718   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 719     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 720       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 724   $main::lxdebug->leave_sub();
 
 729 sub parse_html_template {
 
 730   $main::lxdebug->enter_sub();
 
 732   my ($self, $file, $additional_params) = @_;
 
 734   $additional_params ||= { };
 
 736   $file = $self->_prepare_html_template($file, $additional_params);
 
 738   my $template = Template->new({ 'INTERPOLATE'  => 0,
 
 742                                  'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 743                                  'INCLUDE_PATH' => '.:templates/webpages',
 
 746   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 748   my $in = IO::File->new($file, 'r');
 
 751     print STDERR "Error opening template file: $!";
 
 752     $main::lxdebug->leave_sub();
 
 756   my $input = join('', <$in>);
 
 760     $input = $main::locale->{iconv}->convert($input);
 
 764   if (!$template->process(\$input, $additional_params, \$output)) {
 
 765     print STDERR $template->error();
 
 768   $main::lxdebug->leave_sub();
 
 773 sub show_generic_error {
 
 774   $main::lxdebug->enter_sub();
 
 776   my ($self, $error, %params) = @_;
 
 779     'title_error' => $params{title},
 
 780     'label_error' => $error,
 
 783   if ($params{action}) {
 
 786     map { delete($self->{$_}); } qw(action);
 
 787     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 789     $add_params->{SHOW_BUTTON}  = 1;
 
 790     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 791     $add_params->{VARIABLES}    = \@vars;
 
 793   } elsif ($params{back_button}) {
 
 794     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 797   $self->{title} = $title if ($title);
 
 800   print $self->parse_html_template("generic/error", $add_params);
 
 802   $main::lxdebug->leave_sub();
 
 804   die("Error: $error\n");
 
 807 sub show_generic_information {
 
 808   $main::lxdebug->enter_sub();
 
 810   my ($self, $text, $title) = @_;
 
 813     'title_information' => $title,
 
 814     'label_information' => $text,
 
 817   $self->{title} = $title if ($title);
 
 820   print $self->parse_html_template("generic/information", $add_params);
 
 822   $main::lxdebug->leave_sub();
 
 824   die("Information: $error\n");
 
 827 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 828 # changed it to accept an arbitrary number of triggers - sschoeling
 
 830   $main::lxdebug->enter_sub();
 
 833   my $myconfig = shift;
 
 836   # set dateform for jsscript
 
 839     "dd.mm.yy" => "%d.%m.%Y",
 
 840     "dd-mm-yy" => "%d-%m-%Y",
 
 841     "dd/mm/yy" => "%d/%m/%Y",
 
 842     "mm/dd/yy" => "%m/%d/%Y",
 
 843     "mm-dd-yy" => "%m-%d-%Y",
 
 844     "yyyy-mm-dd" => "%Y-%m-%d",
 
 847   my $ifFormat = defined($dateformats{$myconfig{"dateformat"}}) ?
 
 848     $dateformats{$myconfig{"dateformat"}} : "%d.%m.%Y";
 
 855       inputField : "| . (shift) . qq|",
 
 856       ifFormat :"$ifFormat",
 
 857       align : "| .  (shift) . qq|",
 
 858       button : "| . (shift) . qq|"
 
 864        <script type="text/javascript">
 
 865        <!--| . join("", @triggers) . qq|//-->
 
 869   $main::lxdebug->leave_sub();
 
 872 }    #end sub write_trigger
 
 875   $main::lxdebug->enter_sub();
 
 877   my ($self, $msg) = @_;
 
 879   if ($self->{callback}) {
 
 881     ($script, $argv) = split(/\?/, $self->{callback}, 2);
 
 883     $script =~ s|[^a-zA-Z0-9_\.]||g;
 
 884     exec("perl", "$script", $argv);
 
 892   $main::lxdebug->leave_sub();
 
 895 # sort of columns removed - empty sub
 
 897   $main::lxdebug->enter_sub();
 
 899   my ($self, @columns) = @_;
 
 901   $main::lxdebug->leave_sub();
 
 907   $main::lxdebug->enter_sub(2);
 
 909   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 915   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
 917   my $neg = ($amount =~ s/^-//);
 
 918   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
 920   if (defined($places) && ($places ne '')) {
 
 926         my ($actual_places) = ($amount =~ /\.(\d+)/);
 
 927         $actual_places = length($actual_places);
 
 928         $places = $actual_places > $places ? $actual_places : $places;
 
 931     $amount = $self->round_amount($amount, $places);
 
 934   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 935   my @p = split(/\./, $amount); # split amount at decimal point
 
 937   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
 940   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
 943     ($dash =~ /-/)    ? ($neg ? "($amount)"  : "$amount" )    :
 
 944     ($dash =~ /DRCR/) ? ($neg ? "$amount DR" : "$amount CR" ) :
 
 945                         ($neg ? "-$amount"   : "$amount" )    ;
 
 949   $main::lxdebug->leave_sub(2);
 
 953 sub format_amount_units {
 
 954   $main::lxdebug->enter_sub();
 
 959   my $myconfig         = \%main::myconfig;
 
 960   my $amount           = $params{amount} * 1;
 
 961   my $places           = $params{places};
 
 962   my $part_unit_name   = $params{part_unit};
 
 963   my $amount_unit_name = $params{amount_unit};
 
 964   my $conv_units       = $params{conv_units};
 
 965   my $max_places       = $params{max_places};
 
 967   if (!$part_unit_name) {
 
 968     $main::lxdebug->leave_sub();
 
 972   AM->retrieve_all_units();
 
 973   my $all_units        = $main::all_units;
 
 975   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
 976     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
 979   if (!scalar @{ $conv_units }) {
 
 980     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
 981     $main::lxdebug->leave_sub();
 
 985   my $part_unit  = $all_units->{$part_unit_name};
 
 986   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
 988   $amount       *= $conv_unit->{factor};
 
 992   foreach my $unit (@$conv_units) {
 
 993     my $last = $unit->{name} eq $part_unit->{name};
 
 995       $num     = int($amount / $unit->{factor});
 
 996       $amount -= $num * $unit->{factor};
 
 999     if ($last ? $amount : $num) {
 
1000       push @values, { "unit"   => $unit->{name},
 
1001                       "amount" => $last ? $amount / $unit->{factor} : $num,
 
1002                       "places" => $last ? $places : 0 };
 
1009     push @values, { "unit"   => $part_unit_name,
 
1014   my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
 
1016   $main::lxdebug->leave_sub();
 
1022   $main::lxdebug->enter_sub(2);
 
1027   $input =~ s/(^|[^\#]) \#  (\d+)  /$1$_[$2 - 1]/gx;
 
1028   $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
 
1029   $input =~ s/\#\#/\#/g;
 
1031   $main::lxdebug->leave_sub(2);
 
1039   $main::lxdebug->enter_sub(2);
 
1041   my ($self, $myconfig, $amount) = @_;
 
1043   if (   ($myconfig->{numberformat} eq '1.000,00')
 
1044       || ($myconfig->{numberformat} eq '1000,00')) {
 
1049   if ($myconfig->{numberformat} eq "1'000.00") {
 
1055   $main::lxdebug->leave_sub(2);
 
1057   return ($amount * 1);
 
1061   $main::lxdebug->enter_sub(2);
 
1063   my ($self, $amount, $places) = @_;
 
1066   # Rounding like "Kaufmannsrunden"
 
1067   # Descr. http://de.wikipedia.org/wiki/Rundung
 
1069   # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
 
1072   $amount = $amount * (10**($places));
 
1073   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1075   $main::lxdebug->leave_sub(2);
 
1077   return $round_amount;
 
1081 sub parse_template {
 
1082   $main::lxdebug->enter_sub();
 
1084   my ($self, $myconfig, $userspath) = @_;
 
1085   my ($template, $out);
 
1089   $self->{"cwd"} = getcwd();
 
1090   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1092   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1093     $template = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1094   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1095     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1096     $template = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1097   } elsif (($self->{"format"} =~ /html/i) ||
 
1098            (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1099     $template = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1100   } elsif (($self->{"format"} =~ /xml/i) ||
 
1101              (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1102     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1103   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
 
1104     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1105   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
 
1106     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
1107   } elsif ( defined $self->{'format'}) {
 
1108     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1109   } elsif ( $self->{'format'} eq '' ) {
 
1110     $self->error("No Outputformat given: $self->{'format'}");
 
1111   } else { #Catch the rest
 
1112     $self->error("Outputformat not defined: $self->{'format'}");
 
1115   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1116   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1118   if (!$self->{employee_id}) {
 
1119     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
 
1122   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
 
1124   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1126   # OUT is used for the media, screen, printer, email
 
1127   # for postscript we store a copy in a temporary file
 
1129   my $prepend_userspath;
 
1131   if (!$self->{tmpfile}) {
 
1132     $self->{tmpfile}   = "${fileid}.$self->{IN}";
 
1133     $prepend_userspath = 1;
 
1136   $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
 
1138   $self->{tmpfile} =~ s|.*/||;
 
1139   $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
 
1140   $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
 
1142   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1143     $out = $self->{OUT};
 
1144     $self->{OUT} = ">$self->{tmpfile}";
 
1148     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
 
1150     open(OUT, ">-") or $self->error("STDOUT : $!");
 
1154   if (!$template->parse(*OUT)) {
 
1156     $self->error("$self->{IN} : " . $template->get_error());
 
1161   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1163     if ($self->{media} eq 'email') {
 
1165       my $mail = new Mailer;
 
1167       map { $mail->{$_} = $self->{$_} }
 
1168         qw(cc bcc subject message version format);
 
1169       $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
 
1170       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1171       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1172       $mail->{fileid} = "$fileid.";
 
1173       $myconfig->{signature} =~ s/\r//g;
 
1175       # if we send html or plain text inline
 
1176       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1177         $mail->{contenttype} = "text/html";
 
1179         $mail->{message}       =~ s/\r//g;
 
1180         $mail->{message}       =~ s/\n/<br>\n/g;
 
1181         $myconfig->{signature} =~ s/\n/<br>\n/g;
 
1182         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
1184         open(IN, $self->{tmpfile})
 
1185           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1187           $mail->{message} .= $_;
 
1194         if (!$self->{"do_not_attach"}) {
 
1195           @{ $mail->{attachments} } =
 
1196             ({ "filename" => $self->{"tmpfile"},
 
1197                "name" => $self->{"attachment_filename"} ?
 
1198                  $self->{"attachment_filename"} : $self->{"tmpfile"} });
 
1201         $mail->{message}  =~ s/\r//g;
 
1202         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1206       my $err = $mail->send();
 
1207       $self->error($self->cleanup . "$err") if ($err);
 
1211       $self->{OUT} = $out;
 
1213       my $numbytes = (-s $self->{tmpfile});
 
1214       open(IN, $self->{tmpfile})
 
1215         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1217       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1219       chdir("$self->{cwd}");
 
1220       #print(STDERR "Kopien $self->{copies}\n");
 
1221       #print(STDERR "OUT $self->{OUT}\n");
 
1222       for my $i (1 .. $self->{copies}) {
 
1224           open(OUT, $self->{OUT})
 
1225             or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1227           $self->{attachment_filename} = ($self->{attachment_filename}) 
 
1228                                        ? $self->{attachment_filename}
 
1229                                        : $self->generate_attachment_filename();
 
1231           # launch application
 
1232           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1233 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1234 Content-Length: $numbytes
 
1238           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
 
1258   chdir("$self->{cwd}");
 
1259   $main::lxdebug->leave_sub();
 
1262 sub get_formname_translation {
 
1263   my ($self, $formname) = @_;
 
1265   $formname ||= $self->{formname};
 
1267   my %formname_translations = (
 
1268     bin_list                => $main::locale->text('Bin List'),
 
1269     credit_note             => $main::locale->text('Credit Note'),
 
1270     invoice                 => $main::locale->text('Invoice'),
 
1271     packing_list            => $main::locale->text('Packing List'),
 
1272     pick_list               => $main::locale->text('Pick List'),
 
1273     proforma                => $main::locale->text('Proforma Invoice'),
 
1274     purchase_order          => $main::locale->text('Purchase Order'),
 
1275     request_quotation       => $main::locale->text('RFQ'),
 
1276     sales_order             => $main::locale->text('Confirmation'),
 
1277     sales_quotation         => $main::locale->text('Quotation'),
 
1278     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1279     storno_packing_list     => $main::locale->text('Storno Packing List'),
 
1280     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1281     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1284   return $formname_translations{$formname}
 
1287 sub get_number_prefix_for_type {
 
1291       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1292     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1293     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1299 sub get_extension_for_format {
 
1302   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1303                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1304                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1305                 : $self->{format} =~ /html/i         ? ".html"
 
1311 sub generate_attachment_filename {
 
1314   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1315   my $prefix              = $self->get_number_prefix_for_type();
 
1317   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1318     $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1320   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1321     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1324     $attachment_filename = "";
 
1327   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1328   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1330   return $attachment_filename;
 
1333 sub generate_email_subject {
 
1336   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1337   my $prefix  = $self->get_number_prefix_for_type();
 
1339   if ($subject && $self->{"${prefix}number"}) {
 
1340     $subject .= " " . $self->{"${prefix}number"}
 
1347   $main::lxdebug->enter_sub();
 
1351   chdir("$self->{tmpdir}");
 
1354   if (-f "$self->{tmpfile}.err") {
 
1355     open(FH, "$self->{tmpfile}.err");
 
1360   if ($self->{tmpfile}) {
 
1361     $self->{tmpfile} =~ s|.*/||g;
 
1363     $self->{tmpfile} =~ s/\.\w+$//g;
 
1364     my $tmpfile = $self->{tmpfile};
 
1365     unlink(<$tmpfile.*>);
 
1368   chdir("$self->{cwd}");
 
1370   $main::lxdebug->leave_sub();
 
1376   $main::lxdebug->enter_sub();
 
1378   my ($self, $date, $myconfig) = @_;
 
1380   if ($date && $date =~ /\D/) {
 
1382     if ($myconfig->{dateformat} =~ /^yy/) {
 
1383       ($yy, $mm, $dd) = split /\D/, $date;
 
1385     if ($myconfig->{dateformat} =~ /^mm/) {
 
1386       ($mm, $dd, $yy) = split /\D/, $date;
 
1388     if ($myconfig->{dateformat} =~ /^dd/) {
 
1389       ($dd, $mm, $yy) = split /\D/, $date;
 
1394     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1395     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1397     $dd = "0$dd" if ($dd < 10);
 
1398     $mm = "0$mm" if ($mm < 10);
 
1400     $date = "$yy$mm$dd";
 
1403   $main::lxdebug->leave_sub();
 
1408 # Database routines used throughout
 
1411   $main::lxdebug->enter_sub(2);
 
1413   my ($self, $myconfig) = @_;
 
1415   # connect to database
 
1417     DBI->connect($myconfig->{dbconnect},
 
1418                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
 
1422   if ($myconfig->{dboptions}) {
 
1423     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1426   $main::lxdebug->leave_sub(2);
 
1431 sub dbconnect_noauto {
 
1432   $main::lxdebug->enter_sub();
 
1434   my ($self, $myconfig) = @_;
 
1436   # connect to database
 
1438     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
 
1439                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
 
1443   if ($myconfig->{dboptions}) {
 
1444     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1447   $main::lxdebug->leave_sub();
 
1452 sub get_standard_dbh {
 
1453   $main::lxdebug->enter_sub(2);
 
1455   my ($self, $myconfig) = @_;
 
1457   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1458     $main::lxdebug->message(LXDebug::INFO, "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1459     undef $standard_dbh;
 
1462   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1464   $main::lxdebug->leave_sub(2);
 
1466   return $standard_dbh;
 
1470   $main::lxdebug->enter_sub();
 
1472   my ($self, $date, $myconfig) = @_;
 
1473   my $dbh = $self->dbconnect($myconfig);
 
1475   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1476   my $sth = prepare_execute_query($self, $dbh, $query, $date);
 
1477   my ($closed) = $sth->fetchrow_array;
 
1479   $main::lxdebug->leave_sub();
 
1484 sub update_balance {
 
1485   $main::lxdebug->enter_sub();
 
1487   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1489   # if we have a value, go do it
 
1492     # retrieve balance from table
 
1493     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1494     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1495     my ($balance) = $sth->fetchrow_array;
 
1501     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1502     do_query($self, $dbh, $query, @values);
 
1504   $main::lxdebug->leave_sub();
 
1507 sub update_exchangerate {
 
1508   $main::lxdebug->enter_sub();
 
1510   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1512   # some sanity check for currency
 
1514     $main::lxdebug->leave_sub();
 
1517   $query = qq|SELECT curr FROM defaults|;
 
1519   my ($currency) = selectrow_query($self, $dbh, $query);
 
1520   my ($defaultcurrency) = split m/:/, $currency;
 
1523   if ($curr eq $defaultcurrency) {
 
1524     $main::lxdebug->leave_sub();
 
1528   $query = qq|SELECT e.curr FROM exchangerate e
 
1529                  WHERE e.curr = ? AND e.transdate = ?
 
1531   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1540   $buy = conv_i($buy, "NULL");
 
1541   $sell = conv_i($sell, "NULL");
 
1544   if ($buy != 0 && $sell != 0) {
 
1545     $set = "buy = $buy, sell = $sell";
 
1546   } elsif ($buy != 0) {
 
1547     $set = "buy = $buy";
 
1548   } elsif ($sell != 0) {
 
1549     $set = "sell = $sell";
 
1552   if ($sth->fetchrow_array) {
 
1553     $query = qq|UPDATE exchangerate
 
1559     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1560                 VALUES (?, $buy, $sell, ?)|;
 
1563   do_query($self, $dbh, $query, $curr, $transdate);
 
1565   $main::lxdebug->leave_sub();
 
1568 sub save_exchangerate {
 
1569   $main::lxdebug->enter_sub();
 
1571   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1573   my $dbh = $self->dbconnect($myconfig);
 
1577   $buy  = $rate if $fld eq 'buy';
 
1578   $sell = $rate if $fld eq 'sell';
 
1581   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1586   $main::lxdebug->leave_sub();
 
1589 sub get_exchangerate {
 
1590   $main::lxdebug->enter_sub();
 
1592   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1595   unless ($transdate) {
 
1596     $main::lxdebug->leave_sub();
 
1600   $query = qq|SELECT curr FROM defaults|;
 
1602   my ($currency) = selectrow_query($self, $dbh, $query);
 
1603   my ($defaultcurrency) = split m/:/, $currency;
 
1605   if ($currency eq $defaultcurrency) {
 
1606     $main::lxdebug->leave_sub();
 
1610   $query = qq|SELECT e.$fld FROM exchangerate e
 
1611                  WHERE e.curr = ? AND e.transdate = ?|;
 
1612   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1616   $main::lxdebug->leave_sub();
 
1618   return $exchangerate;
 
1621 sub check_exchangerate {
 
1622   $main::lxdebug->enter_sub();
 
1624   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1626   unless ($transdate) {
 
1627     $main::lxdebug->leave_sub();
 
1631   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1633   if ($currency eq $defaultcurrency) {
 
1634     $main::lxdebug->leave_sub();
 
1638   my $dbh   = $self->get_standard_dbh($myconfig);
 
1639   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1640                  WHERE e.curr = ? AND e.transdate = ?|;
 
1642   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1644   $main::lxdebug->leave_sub();
 
1646   return $exchangerate;
 
1649 sub get_default_currency {
 
1650   $main::lxdebug->enter_sub();
 
1652   my ($self, $myconfig) = @_;
 
1653   my $dbh = $self->get_standard_dbh($myconfig);
 
1655   my $query = qq|SELECT curr FROM defaults|;
 
1657   my ($curr)            = selectrow_query($self, $dbh, $query);
 
1658   my ($defaultcurrency) = split m/:/, $curr;
 
1660   $main::lxdebug->leave_sub();
 
1662   return $defaultcurrency;
 
1666 sub set_payment_options {
 
1667   $main::lxdebug->enter_sub();
 
1669   my ($self, $myconfig, $transdate) = @_;
 
1671   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1673   my $dbh = $self->get_standard_dbh($myconfig);
 
1676     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
 
1677     qq|FROM payment_terms p | .
 
1680   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1681    $self->{payment_terms}) =
 
1682      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1684   if ($transdate eq "") {
 
1685     if ($self->{invdate}) {
 
1686       $transdate = $self->{invdate};
 
1688       $transdate = $self->{transdate};
 
1693     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1694     qq|FROM payment_terms|;
 
1695   ($self->{netto_date}, $self->{skonto_date}) =
 
1696     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1698   my ($invtotal, $total);
 
1699   my (%amounts, %formatted_amounts);
 
1701   if ($self->{type} =~ /_order$/) {
 
1702     $amounts{invtotal} = $self->{ordtotal};
 
1703     $amounts{total}    = $self->{ordtotal};
 
1705   } elsif ($self->{type} =~ /_quotation$/) {
 
1706     $amounts{invtotal} = $self->{quototal};
 
1707     $amounts{total}    = $self->{quototal};
 
1710     $amounts{invtotal} = $self->{invtotal};
 
1711     $amounts{total}    = $self->{total};
 
1714   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1716   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1717   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1718   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1720   foreach (keys %amounts) {
 
1721     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1722     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1725   if ($self->{"language_id"}) {
 
1727       qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1728       qq|FROM translation_payment_terms t | .
 
1729       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1730       qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
 
1731     my ($description_long, $output_numberformat, $output_dateformat,
 
1732       $output_longdates) =
 
1733       selectrow_query($self, $dbh, $query,
 
1734                       $self->{"language_id"}, $self->{"payment_id"});
 
1736     $self->{payment_terms} = $description_long if ($description_long);
 
1738     if ($output_dateformat) {
 
1739       foreach my $key (qw(netto_date skonto_date)) {
 
1741           $main::locale->reformat_date($myconfig, $self->{$key},
 
1747     if ($output_numberformat &&
 
1748         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1749       my $saved_numberformat = $myconfig->{"numberformat"};
 
1750       $myconfig->{"numberformat"} = $output_numberformat;
 
1751       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1752       $myconfig->{"numberformat"} = $saved_numberformat;
 
1756   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1757   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1758   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1759   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1760   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1761   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1762   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1764   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1766   $main::lxdebug->leave_sub();
 
1770 sub get_template_language {
 
1771   $main::lxdebug->enter_sub();
 
1773   my ($self, $myconfig) = @_;
 
1775   my $template_code = "";
 
1777   if ($self->{language_id}) {
 
1778     my $dbh = $self->get_standard_dbh($myconfig);
 
1779     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1780     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1783   $main::lxdebug->leave_sub();
 
1785   return $template_code;
 
1788 sub get_printer_code {
 
1789   $main::lxdebug->enter_sub();
 
1791   my ($self, $myconfig) = @_;
 
1793   my $template_code = "";
 
1795   if ($self->{printer_id}) {
 
1796     my $dbh = $self->get_standard_dbh($myconfig);
 
1797     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1798     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1801   $main::lxdebug->leave_sub();
 
1803   return $template_code;
 
1807   $main::lxdebug->enter_sub();
 
1809   my ($self, $myconfig) = @_;
 
1811   my $template_code = "";
 
1813   if ($self->{shipto_id}) {
 
1814     my $dbh = $self->get_standard_dbh($myconfig);
 
1815     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1816     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1817     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1820   $main::lxdebug->leave_sub();
 
1824   $main::lxdebug->enter_sub();
 
1826   my ($self, $dbh, $id, $module) = @_;
 
1831   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
1832                        contact phone fax email)) {
 
1833     if ($self->{"shipto$item"}) {
 
1834       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1836     push(@values, $self->{"shipto${item}"});
 
1840     if ($self->{shipto_id}) {
 
1841       my $query = qq|UPDATE shipto set
 
1843                        shiptodepartment_1 = ?,
 
1844                        shiptodepartment_2 = ?,
 
1853                      WHERE shipto_id = ?|;
 
1854       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1856       my $query = qq|SELECT * FROM shipto
 
1857                      WHERE shiptoname = ? AND
 
1858                        shiptodepartment_1 = ? AND
 
1859                        shiptodepartment_2 = ? AND
 
1860                        shiptostreet = ? AND
 
1861                        shiptozipcode = ? AND
 
1863                        shiptocountry = ? AND
 
1864                        shiptocontact = ? AND
 
1870       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1873           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
1874                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
1875                                  shiptocontact, shiptophone, shiptofax, shiptoemail, module)
 
1876              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1877         do_query($self, $dbh, $query, $id, @values, $module);
 
1882   $main::lxdebug->leave_sub();
 
1886   $main::lxdebug->enter_sub();
 
1888   my ($self, $dbh) = @_;
 
1890   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
1891   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
1892   $self->{"employee_id"} *= 1;
 
1894   $main::lxdebug->leave_sub();
 
1897 sub get_employee_data {
 
1898   $main::lxdebug->enter_sub();
 
1903   Common::check_params(\%params, qw(prefix));
 
1904   Common::check_params_x(\%params, qw(id));
 
1907     $main::lxdebug->leave_sub();
 
1911   my $myconfig = \%main::myconfig;
 
1912   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
1914   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
 
1917     my $user = User->new($login);
 
1918     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
 
1920     $self->{$params{prefix} . '_login'}   = $login;
 
1921     $self->{$params{prefix} . '_name'}  ||= $login;
 
1924   $main::lxdebug->leave_sub();
 
1928   $main::lxdebug->enter_sub();
 
1930   my ($self, $myconfig) = @_;
 
1932   my $dbh = $self->get_standard_dbh($myconfig);
 
1933   my $query = qq|SELECT current_date + terms_netto FROM payment_terms WHERE id = ?|;
 
1934   ($self->{duedate}) = selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1936   $main::lxdebug->leave_sub();
 
1940   $main::lxdebug->enter_sub();
 
1942   my ($self, $dbh, $id, $key) = @_;
 
1944   $key = "all_contacts" unless ($key);
 
1948     $main::lxdebug->leave_sub();
 
1953     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
1954     qq|FROM contacts | .
 
1955     qq|WHERE cp_cv_id = ? | .
 
1956     qq|ORDER BY lower(cp_name)|;
 
1958   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
1960   $main::lxdebug->leave_sub();
 
1964   $main::lxdebug->enter_sub();
 
1966   my ($self, $dbh, $key) = @_;
 
1968   my ($all, $old_id, $where, @values);
 
1970   if (ref($key) eq "HASH") {
 
1973     $key = "ALL_PROJECTS";
 
1975     foreach my $p (keys(%{$params})) {
 
1977         $all = $params->{$p};
 
1978       } elsif ($p eq "old_id") {
 
1979         $old_id = $params->{$p};
 
1980       } elsif ($p eq "key") {
 
1981         $key = $params->{$p};
 
1987     $where = "WHERE active ";
 
1989       if (ref($old_id) eq "ARRAY") {
 
1990         my @ids = grep({ $_ } @{$old_id});
 
1992           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
1993           push(@values, @ids);
 
1996         $where .= " OR (id = ?) ";
 
1997         push(@values, $old_id);
 
2003     qq|SELECT id, projectnumber, description, active | .
 
2006     qq|ORDER BY lower(projectnumber)|;
 
2008   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2010   $main::lxdebug->leave_sub();
 
2014   $main::lxdebug->enter_sub();
 
2016   my ($self, $dbh, $vc_id, $key) = @_;
 
2018   $key = "all_shipto" unless ($key);
 
2021     # get shipping addresses
 
2022     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2024     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2030   $main::lxdebug->leave_sub();
 
2034   $main::lxdebug->enter_sub();
 
2036   my ($self, $dbh, $key) = @_;
 
2038   $key = "all_printers" unless ($key);
 
2040   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2042   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2044   $main::lxdebug->leave_sub();
 
2048   $main::lxdebug->enter_sub();
 
2050   my ($self, $dbh, $params) = @_;
 
2052   $key = $params->{key};
 
2053   $key = "all_charts" unless ($key);
 
2055   my $transdate = quote_db_date($params->{transdate});
 
2058     qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
 
2060     qq|LEFT JOIN taxkeys tk ON | .
 
2061     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2062     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2063     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2064     qq|ORDER BY c.accno|;
 
2066   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2068   $main::lxdebug->leave_sub();
 
2071 sub _get_taxcharts {
 
2072   $main::lxdebug->enter_sub();
 
2074   my ($self, $dbh, $key) = @_;
 
2076   $key = "all_taxcharts" unless ($key);
 
2078   my $query = qq|SELECT * FROM tax ORDER BY taxkey|;
 
2080   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2082   $main::lxdebug->leave_sub();
 
2086   $main::lxdebug->enter_sub();
 
2088   my ($self, $dbh, $key) = @_;
 
2090   $key = "all_taxzones" unless ($key);
 
2092   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2094   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2096   $main::lxdebug->leave_sub();
 
2099 sub _get_employees {
 
2100   $main::lxdebug->enter_sub();
 
2102   my ($self, $dbh, $default_key, $key) = @_;
 
2104   $key = $default_key unless ($key);
 
2105   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2107   $main::lxdebug->leave_sub();
 
2110 sub _get_business_types {
 
2111   $main::lxdebug->enter_sub();
 
2113   my ($self, $dbh, $key) = @_;
 
2115   $key = "all_business_types" unless ($key);
 
2117     selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
 
2119   $main::lxdebug->leave_sub();
 
2122 sub _get_languages {
 
2123   $main::lxdebug->enter_sub();
 
2125   my ($self, $dbh, $key) = @_;
 
2127   $key = "all_languages" unless ($key);
 
2129   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2131   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2133   $main::lxdebug->leave_sub();
 
2136 sub _get_dunning_configs {
 
2137   $main::lxdebug->enter_sub();
 
2139   my ($self, $dbh, $key) = @_;
 
2141   $key = "all_dunning_configs" unless ($key);
 
2143   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2145   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2147   $main::lxdebug->leave_sub();
 
2150 sub _get_currencies {
 
2151 $main::lxdebug->enter_sub();
 
2153   my ($self, $dbh, $key) = @_;
 
2155   $key = "all_currencies" unless ($key);
 
2157   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2159   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2161   $main::lxdebug->leave_sub();
 
2165 $main::lxdebug->enter_sub();
 
2167   my ($self, $dbh, $key) = @_;
 
2169   $key = "all_payments" unless ($key);
 
2171   my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
 
2173   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2175   $main::lxdebug->leave_sub();
 
2178 sub _get_customers {
 
2179   $main::lxdebug->enter_sub();
 
2181   my ($self, $dbh, $key, $limit) = @_;
 
2183   $key = "all_customers" unless ($key);
 
2184   $limit_clause = "LIMIT $limit" if $limit;
 
2186   my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name $limit_clause|;
 
2188   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2190   $main::lxdebug->leave_sub();
 
2194   $main::lxdebug->enter_sub();
 
2196   my ($self, $dbh, $key) = @_;
 
2198   $key = "all_vendors" unless ($key);
 
2200   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2202   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2204   $main::lxdebug->leave_sub();
 
2207 sub _get_departments {
 
2208   $main::lxdebug->enter_sub();
 
2210   my ($self, $dbh, $key) = @_;
 
2212   $key = "all_departments" unless ($key);
 
2214   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2216   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2218   $main::lxdebug->leave_sub();
 
2221 sub _get_warehouses {
 
2222   $main::lxdebug->enter_sub();
 
2224   my ($self, $dbh, $param) = @_;
 
2226   my ($key, $bins_key);
 
2228   if ('' eq ref $param) {
 
2232     $key      = $param->{key};
 
2233     $bins_key = $param->{bins};
 
2236   my $query = qq|SELECT w.* FROM warehouse w
 
2237                  WHERE (NOT w.invalid) AND
 
2238                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2239                  ORDER BY w.sortkey|;
 
2241   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2244     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
 
2245     my $sth = prepare_query($self, $dbh, $query);
 
2247     foreach my $warehouse (@{ $self->{$key} }) {
 
2248       do_statement($self, $sth, $query, $warehouse->{id});
 
2249       $warehouse->{$bins_key} = [];
 
2251       while (my $ref = $sth->fetchrow_hashref()) {
 
2252         push @{ $warehouse->{$bins_key} }, $ref;
 
2258   $main::lxdebug->leave_sub();
 
2262   $main::lxdebug->enter_sub();
 
2264   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2266   my $query  = qq|SELECT * FROM $table|;
 
2267   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2269   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2271   $main::lxdebug->leave_sub();
 
2275   $main::lxdebug->enter_sub();
 
2277   my ($self, $dbh, $key) = @_;
 
2279   $key ||= "all_groups";
 
2281   my $groups = $main::auth->read_groups();
 
2283   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2285   $main::lxdebug->leave_sub();
 
2289   $main::lxdebug->enter_sub();
 
2294   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2295   my ($sth, $query, $ref);
 
2297   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2298   my $vc_id = $self->{"${vc}_id"};
 
2300   if ($params{"contacts"}) {
 
2301     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2304   if ($params{"shipto"}) {
 
2305     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2308   if ($params{"projects"} || $params{"all_projects"}) {
 
2309     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2310                          $params{"all_projects"} : $params{"projects"},
 
2311                          $params{"all_projects"} ? 1 : 0);
 
2314   if ($params{"printers"}) {
 
2315     $self->_get_printers($dbh, $params{"printers"});
 
2318   if ($params{"languages"}) {
 
2319     $self->_get_languages($dbh, $params{"languages"});
 
2322   if ($params{"charts"}) {
 
2323     $self->_get_charts($dbh, $params{"charts"});
 
2326   if ($params{"taxcharts"}) {
 
2327     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2330   if ($params{"taxzones"}) {
 
2331     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2334   if ($params{"employees"}) {
 
2335     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2338   if ($params{"salesmen"}) {
 
2339     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2342   if ($params{"business_types"}) {
 
2343     $self->_get_business_types($dbh, $params{"business_types"});
 
2346   if ($params{"dunning_configs"}) {
 
2347     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2350   if($params{"currencies"}) {
 
2351     $self->_get_currencies($dbh, $params{"currencies"});
 
2354   if($params{"customers"}) {
 
2355     if (ref $params{"customers"} eq 'HASH') {
 
2356       $self->_get_customers($dbh, $params{"customers"}{key}, $params{"customers"}{limit});
 
2358       $self->_get_customers($dbh, $params{"customers"});
 
2362   if($params{"vendors"}) {
 
2363     if (ref $params{"vendors"} eq 'HASH') {
 
2364       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2366       $self->_get_vendors($dbh, $params{"vendors"});
 
2370   if($params{"payments"}) {
 
2371     $self->_get_payments($dbh, $params{"payments"});
 
2374   if($params{"departments"}) {
 
2375     $self->_get_departments($dbh, $params{"departments"});
 
2378   if ($params{price_factors}) {
 
2379     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2382   if ($params{warehouses}) {
 
2383     $self->_get_warehouses($dbh, $params{warehouses});
 
2386   if ($params{groups}) {
 
2387     $self->_get_groups($dbh, $params{groups});
 
2389   if ($params{partsgroup}) {
 
2390     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2393   $main::lxdebug->leave_sub();
 
2396 # this sub gets the id and name from $table
 
2398   $main::lxdebug->enter_sub();
 
2400   my ($self, $myconfig, $table) = @_;
 
2402   # connect to database
 
2403   my $dbh = $self->get_standard_dbh($myconfig);
 
2405   $table = $table eq "customer" ? "customer" : "vendor";
 
2406   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2408   my ($query, @values);
 
2410   if (!$self->{openinvoices}) {
 
2412     if ($self->{customernumber} ne "") {
 
2413       $where = qq|(vc.customernumber ILIKE ?)|;
 
2414       push(@values, '%' . $self->{customernumber} . '%');
 
2416       $where = qq|(vc.name ILIKE ?)|;
 
2417       push(@values, '%' . $self->{$table} . '%');
 
2421       qq~SELECT vc.id, vc.name,
 
2422            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2424          WHERE $where AND (NOT vc.obsolete)
 
2428       qq~SELECT DISTINCT vc.id, vc.name,
 
2429            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2431          JOIN $table vc ON (a.${table}_id = vc.id)
 
2432          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2434     push(@values, '%' . $self->{$table} . '%');
 
2437   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2439   $main::lxdebug->leave_sub();
 
2441   return scalar(@{ $self->{name_list} });
 
2444 # the selection sub is used in the AR, AP, IS, IR and OE module
 
2447   $main::lxdebug->enter_sub();
 
2449   my ($self, $myconfig, $table, $module) = @_;
 
2452   my $dbh = $self->get_standard_dbh($myconfig);
 
2454   $table = $table eq "customer" ? "customer" : "vendor";
 
2456   my $query = qq|SELECT count(*) FROM $table|;
 
2457   my ($count) = selectrow_query($self, $dbh, $query);
 
2459   # build selection list
 
2460   if ($count < $myconfig->{vclimit}) {
 
2461     $query = qq|SELECT id, name, salesman_id
 
2462                 FROM $table WHERE NOT obsolete
 
2464     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2468   $self->get_employee($dbh);
 
2470   # setup sales contacts
 
2471   $query = qq|SELECT e.id, e.name
 
2473               WHERE (e.sales = '1') AND (NOT e.id = ?)|;
 
2474   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2477   push(@{ $self->{all_employees} },
 
2478        { id   => $self->{employee_id},
 
2479          name => $self->{employee} });
 
2481   # sort the whole thing
 
2482   @{ $self->{all_employees} } =
 
2483     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
2485   if ($module eq 'AR') {
 
2487     # prepare query for departments
 
2488     $query = qq|SELECT id, description
 
2491                 ORDER BY description|;
 
2494     $query = qq|SELECT id, description
 
2496                 ORDER BY description|;
 
2499   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2502   $query = qq|SELECT id, description
 
2506   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2509   $query = qq|SELECT printer_description, id
 
2511               ORDER BY printer_description|;
 
2513   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2516   $query = qq|SELECT id, description
 
2520   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2522   $main::lxdebug->leave_sub();
 
2525 sub language_payment {
 
2526   $main::lxdebug->enter_sub();
 
2528   my ($self, $myconfig) = @_;
 
2530   my $dbh = $self->get_standard_dbh($myconfig);
 
2532   my $query = qq|SELECT id, description
 
2536   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2539   $query = qq|SELECT printer_description, id
 
2541               ORDER BY printer_description|;
 
2543   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2546   $query = qq|SELECT id, description
 
2550   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2552   # get buchungsgruppen
 
2553   $query = qq|SELECT id, description
 
2554               FROM buchungsgruppen|;
 
2556   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2558   $main::lxdebug->leave_sub();
 
2561 # this is only used for reports
 
2562 sub all_departments {
 
2563   $main::lxdebug->enter_sub();
 
2565   my ($self, $myconfig, $table) = @_;
 
2567   my $dbh = $self->get_standard_dbh($myconfig);
 
2570   if ($table eq 'customer') {
 
2571     $where = "WHERE role = 'P' ";
 
2574   my $query = qq|SELECT id, description
 
2577                  ORDER BY description|;
 
2578   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2580   delete($self->{all_departments}) unless (@{ $self->{all_departments} });
 
2582   $main::lxdebug->leave_sub();
 
2586   $main::lxdebug->enter_sub();
 
2588   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2591   if ($table eq "customer") {
 
2600   $self->all_vc($myconfig, $table, $module);
 
2602   # get last customers or vendors
 
2603   my ($query, $sth, $ref);
 
2605   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2610     my $transdate = "current_date";
 
2611     if ($self->{transdate}) {
 
2612       $transdate = $dbh->quote($self->{transdate});
 
2615     # now get the account numbers
 
2616     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2617                 FROM chart c, taxkeys tk
 
2618                 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2619                   (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2622     $sth = $dbh->prepare($query);
 
2624     do_statement($self, $sth, $query, '%' . $module . '%');
 
2626     $self->{accounts} = "";
 
2627     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2629       foreach my $key (split(/:/, $ref->{link})) {
 
2630         if ($key =~ /\Q$module\E/) {
 
2632           # cross reference for keys
 
2633           $xkeyref{ $ref->{accno} } = $key;
 
2635           push @{ $self->{"${module}_links"}{$key} },
 
2636             { accno       => $ref->{accno},
 
2637               description => $ref->{description},
 
2638               taxkey      => $ref->{taxkey_id},
 
2639               tax_id      => $ref->{tax_id} };
 
2641           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2647   # get taxkeys and description
 
2648   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2649   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2651   if (($module eq "AP") || ($module eq "AR")) {
 
2652     # get tax rates and description
 
2653     $query = qq|SELECT * FROM tax|;
 
2654     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2660            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2661            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2662            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2663            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2665            d.description AS department,
 
2668          JOIN $table c ON (a.${table}_id = c.id)
 
2669          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2670          LEFT JOIN department d ON (d.id = a.department_id)
 
2672     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2674     foreach $key (keys %$ref) {
 
2675       $self->{$key} = $ref->{$key};
 
2678     my $transdate = "current_date";
 
2679     if ($self->{transdate}) {
 
2680       $transdate = $dbh->quote($self->{transdate});
 
2683     # now get the account numbers
 
2684     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2686                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2688                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2689                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2692     $sth = $dbh->prepare($query);
 
2693     do_statement($self, $sth, $query, "%$module%");
 
2695     $self->{accounts} = "";
 
2696     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2698       foreach my $key (split(/:/, $ref->{link})) {
 
2699         if ($key =~ /\Q$module\E/) {
 
2701           # cross reference for keys
 
2702           $xkeyref{ $ref->{accno} } = $key;
 
2704           push @{ $self->{"${module}_links"}{$key} },
 
2705             { accno       => $ref->{accno},
 
2706               description => $ref->{description},
 
2707               taxkey      => $ref->{taxkey_id},
 
2708               tax_id      => $ref->{tax_id} };
 
2710           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2716     # get amounts from individual entries
 
2719            c.accno, c.description,
 
2720            a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
 
2724          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2725          LEFT JOIN project p ON (p.id = a.project_id)
 
2726          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
2727                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
2728                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
2729                                         THEN tk.chart_id = a.chart_id
 
2732                                        OR (c.link='%tax%')) AND
 
2733                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
2734          WHERE a.trans_id = ?
 
2735          AND a.fx_transaction = '0'
 
2736          ORDER BY a.oid, a.transdate|;
 
2737     $sth = $dbh->prepare($query);
 
2738     do_statement($self, $sth, $query, $self->{id});
 
2740     # get exchangerate for currency
 
2741     $self->{exchangerate} =
 
2742       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2745     # store amounts in {acc_trans}{$key} for multiple accounts
 
2746     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2747       $ref->{exchangerate} =
 
2748         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2749       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2752       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2753         $ref->{amount} *= -1;
 
2755       $ref->{index} = $index;
 
2757       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2763            d.curr AS currencies, d.closedto, d.revtrans,
 
2764            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2765            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2767     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2768     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2775             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
2776             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2777             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2779     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2780     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2782     if ($self->{"$self->{vc}_id"}) {
 
2784       # only setup currency
 
2785       ($self->{currency}) = split(/:/, $self->{currencies});
 
2789       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2791       # get exchangerate for currency
 
2792       $self->{exchangerate} =
 
2793         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2799   $main::lxdebug->leave_sub();
 
2803   $main::lxdebug->enter_sub();
 
2805   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2809   $table         = $table eq "customer" ? "customer" : "vendor";
 
2810   my %column_map = ("a.curr"                  => "currency",
 
2811                     "a.${table}_id"           => "${table}_id",
 
2812                     "a.department_id"         => "department_id",
 
2813                     "d.description"           => "department",
 
2814                     "ct.name"                 => $table,
 
2815                     "current_date + ct.terms" => "duedate",
 
2818   if ($self->{type} =~ /delivery_order/) {
 
2819     $arap  = 'delivery_orders';
 
2820     delete $column_map{"a.curr"};
 
2822   } elsif ($self->{type} =~ /_order/) {
 
2824     $where = "quotation = '0'";
 
2826   } elsif ($self->{type} =~ /_quotation/) {
 
2828     $where = "quotation = '1'";
 
2830   } elsif ($table eq 'customer') {
 
2838   $where           = "($where) AND" if ($where);
 
2839   my $query        = qq|SELECT MAX(id) FROM $arap
 
2840                         WHERE $where ${table}_id > 0|;
 
2841   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
2844   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
2845   $query           = qq|SELECT $column_spec
 
2847                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
2848                         LEFT JOIN department d  ON (a.department_id = d.id)
 
2850   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
2852   map { $self->{$_} = $ref->{$_} } values %column_map;
 
2854   $main::lxdebug->leave_sub();
 
2858   $main::lxdebug->enter_sub();
 
2860   my ($self, $myconfig, $thisdate, $days) = @_;
 
2862   my $dbh = $self->get_standard_dbh($myconfig);
 
2867     my $dateformat = $myconfig->{dateformat};
 
2868     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2869     $thisdate = $dbh->quote($thisdate);
 
2870     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
2872     $query = qq|SELECT current_date AS thisdate|;
 
2875   ($thisdate) = selectrow_query($self, $dbh, $query);
 
2877   $main::lxdebug->leave_sub();
 
2883   $main::lxdebug->enter_sub();
 
2885   my ($self, $string) = @_;
 
2887   if ($string !~ /%/) {
 
2888     $string = "%$string%";
 
2891   $string =~ s/\'/\'\'/g;
 
2893   $main::lxdebug->leave_sub();
 
2899   $main::lxdebug->enter_sub();
 
2901   my ($self, $flds, $new, $count, $numrows) = @_;
 
2905   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
2910   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
2912     $j = $item->{ndx} - 1;
 
2913     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
2917   for $i ($count + 1 .. $numrows) {
 
2918     map { delete $self->{"${_}_$i"} } @{$flds};
 
2921   $main::lxdebug->leave_sub();
 
2925   $main::lxdebug->enter_sub();
 
2927   my ($self, $myconfig) = @_;
 
2931   my $dbh = $self->dbconnect_noauto($myconfig);
 
2933   my $query = qq|DELETE FROM status
 
2934                  WHERE (formname = ?) AND (trans_id = ?)|;
 
2935   my $sth = prepare_query($self, $dbh, $query);
 
2937   if ($self->{formname} =~ /(check|receipt)/) {
 
2938     for $i (1 .. $self->{rowcount}) {
 
2939       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
2942     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
2946   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2947   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
2949   my %queued = split / /, $self->{queued};
 
2952   if ($self->{formname} =~ /(check|receipt)/) {
 
2954     # this is a check or receipt, add one entry for each lineitem
 
2955     my ($accno) = split /--/, $self->{account};
 
2956     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
2957                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
2958     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
2959     $sth = prepare_query($self, $dbh, $query);
 
2961     for $i (1 .. $self->{rowcount}) {
 
2962       if ($self->{"checked_$i"}) {
 
2963         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
2969     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
2970                 VALUES (?, ?, ?, ?, ?)|;
 
2971     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
2972              $queued{$self->{formname}}, $self->{formname});
 
2978   $main::lxdebug->leave_sub();
 
2982   $main::lxdebug->enter_sub();
 
2984   my ($self, $dbh) = @_;
 
2986   my ($query, $printed, $emailed);
 
2988   my $formnames  = $self->{printed};
 
2989   my $emailforms = $self->{emailed};
 
2991   $query = qq|DELETE FROM status
 
2992                  WHERE (formname = ?) AND (trans_id = ?)|;
 
2993   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
2995   # this only applies to the forms
 
2996   # checks and receipts are posted when printed or queued
 
2998   if ($self->{queued}) {
 
2999     my %queued = split / /, $self->{queued};
 
3001     foreach my $formname (keys %queued) {
 
3002       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3003       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3005       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3006                   VALUES (?, ?, ?, ?, ?)|;
 
3007       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3009       $formnames  =~ s/\Q$self->{formname}\E//;
 
3010       $emailforms =~ s/\Q$self->{formname}\E//;
 
3015   # save printed, emailed info
 
3016   $formnames  =~ s/^ +//g;
 
3017   $emailforms =~ s/^ +//g;
 
3020   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3021   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3023   foreach my $formname (keys %status) {
 
3024     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3025     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3027     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3028                 VALUES (?, ?, ?, ?)|;
 
3029     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3032   $main::lxdebug->leave_sub();
 
3036 # $main::locale->text('SAVED')
 
3037 # $main::locale->text('DELETED')
 
3038 # $main::locale->text('ADDED')
 
3039 # $main::locale->text('PAYMENT POSTED')
 
3040 # $main::locale->text('POSTED')
 
3041 # $main::locale->text('POSTED AS NEW')
 
3042 # $main::locale->text('ELSE')
 
3043 # $main::locale->text('SAVED FOR DUNNING')
 
3044 # $main::locale->text('DUNNING STARTED')
 
3045 # $main::locale->text('PRINTED')
 
3046 # $main::locale->text('MAILED')
 
3047 # $main::locale->text('SCREENED')
 
3048 # $main::locale->text('CANCELED')
 
3049 # $main::locale->text('invoice')
 
3050 # $main::locale->text('proforma')
 
3051 # $main::locale->text('sales_order')
 
3052 # $main::locale->text('packing_list')
 
3053 # $main::locale->text('pick_list')
 
3054 # $main::locale->text('purchase_order')
 
3055 # $main::locale->text('bin_list')
 
3056 # $main::locale->text('sales_quotation')
 
3057 # $main::locale->text('request_quotation')
 
3060   $main::lxdebug->enter_sub();
 
3065   if(!exists $self->{employee_id}) {
 
3066     &get_employee($self, $dbh);
 
3070    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3071    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3072   my @values = (conv_i($self->{id}), $self->{login},
 
3073                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3074   do_query($self, $dbh, $query, @values);
 
3076   $main::lxdebug->leave_sub();
 
3080   $main::lxdebug->enter_sub();
 
3082   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3083   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3084   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3087   if ($trans_id ne "") {
 
3089       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 | .
 
3090       qq|FROM history_erp h | .
 
3091       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3092       qq|WHERE trans_id = | . $trans_id
 
3093       . $restriction . qq| |
 
3096     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3098     $sth->execute() || $self->dberror("$query");
 
3100     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3101       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3102       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3103       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3104       $tempArray[$i++] = $hash_ref;
 
3106     $main::lxdebug->leave_sub() and return \@tempArray 
 
3107       if ($i > 0 && $tempArray[0] ne "");
 
3109   $main::lxdebug->leave_sub();
 
3113 sub update_defaults {
 
3114   $main::lxdebug->enter_sub();
 
3116   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3119   if ($provided_dbh) {
 
3120     $dbh = $provided_dbh;
 
3122     $dbh = $self->dbconnect_noauto($myconfig);
 
3124   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3125   my $sth   = $dbh->prepare($query);
 
3127   $sth->execute || $self->dberror($query);
 
3128   my ($var) = $sth->fetchrow_array;
 
3131   if ($var =~ m/\d+$/) {
 
3132     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3133     my $len_diff = length($var) - $-[0] - length($new_var);
 
3134     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3140   $query = qq|UPDATE defaults SET $fld = ?|;
 
3141   do_query($self, $dbh, $query, $var);
 
3143   if (!$provided_dbh) {
 
3148   $main::lxdebug->leave_sub();
 
3153 sub update_business {
 
3154   $main::lxdebug->enter_sub();
 
3156   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3159   if ($provided_dbh) {
 
3160     $dbh = $provided_dbh;
 
3162     $dbh = $self->dbconnect_noauto($myconfig);
 
3165     qq|SELECT customernumberinit FROM business
 
3166        WHERE id = ? FOR UPDATE|;
 
3167   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3169   if ($var =~ m/\d+$/) {
 
3170     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3171     my $len_diff = length($var) - $-[0] - length($new_var);
 
3172     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3178   $query = qq|UPDATE business
 
3179               SET customernumberinit = ?
 
3181   do_query($self, $dbh, $query, $var, $business_id);
 
3183   if (!$provided_dbh) {
 
3188   $main::lxdebug->leave_sub();
 
3193 sub get_partsgroup {
 
3194   $main::lxdebug->enter_sub();
 
3196   my ($self, $myconfig, $p) = @_;
 
3197   my $target = $p->{target} || 'all_partsgroup';
 
3199   my $dbh = $self->get_standard_dbh($myconfig);
 
3201   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3203                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3206   if ($p->{searchitems} eq 'part') {
 
3207     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3209   if ($p->{searchitems} eq 'service') {
 
3210     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3212   if ($p->{searchitems} eq 'assembly') {
 
3213     $query .= qq|WHERE p.assembly = '1'|;
 
3215   if ($p->{searchitems} eq 'labor') {
 
3216     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3219   $query .= qq|ORDER BY partsgroup|;
 
3222     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3223                 ORDER BY partsgroup|;
 
3226   if ($p->{language_code}) {
 
3227     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3228                   t.description AS translation
 
3230                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3231                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3232                 ORDER BY translation|;
 
3233     @values = ($p->{language_code});
 
3236   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3238   $main::lxdebug->leave_sub();
 
3241 sub get_pricegroup {
 
3242   $main::lxdebug->enter_sub();
 
3244   my ($self, $myconfig, $p) = @_;
 
3246   my $dbh = $self->get_standard_dbh($myconfig);
 
3248   my $query = qq|SELECT p.id, p.pricegroup
 
3251   $query .= qq| ORDER BY pricegroup|;
 
3254     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3255                 ORDER BY pricegroup|;
 
3258   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3260   $main::lxdebug->leave_sub();
 
3264 # usage $form->all_years($myconfig, [$dbh])
 
3265 # return list of all years where bookings found
 
3268   $main::lxdebug->enter_sub();
 
3270   my ($self, $myconfig, $dbh) = @_;
 
3272   $dbh ||= $self->get_standard_dbh($myconfig);
 
3275   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3276                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3277   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3279   if ($myconfig->{dateformat} =~ /^yy/) {
 
3280     ($startdate) = split /\W/, $startdate;
 
3281     ($enddate) = split /\W/, $enddate;
 
3283     (@_) = split /\W/, $startdate;
 
3285     (@_) = split /\W/, $enddate;
 
3290   $startdate = substr($startdate,0,4);
 
3291   $enddate = substr($enddate,0,4);
 
3293   while ($enddate >= $startdate) {
 
3294     push @all_years, $enddate--;
 
3299   $main::lxdebug->leave_sub();
 
3303   $main::lxdebug->enter_sub();
 
3307   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if $self->{$_} } @vars;
 
3309   $main::lxdebug->leave_sub();
 
3313   $main::lxdebug->enter_sub();
 
3318   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if $self->{_VAR_BACKUP}->{$_} } @vars;
 
3320   $main::lxdebug->leave_sub();