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 #======================================================================
 
  62 use SL::MoreCommon qw(uri_encode uri_decode);
 
  70 use List::Util qw(first max min sum);
 
  71 use List::MoreUtils qw(all any apply);
 
  78   disconnect_standard_dbh();
 
  81 sub disconnect_standard_dbh {
 
  82   return unless $standard_dbh;
 
  83   $standard_dbh->disconnect();
 
  88   $main::lxdebug->enter_sub();
 
  95   if ($LXDebug::watch_form) {
 
  97     tie %{ $self }, 'SL::Watchdog';
 
 102   open VERSION_FILE, "VERSION";                 # New but flexible code reads version from VERSION-file
 
 103   $self->{version} =  <VERSION_FILE>;
 
 105   $self->{version}  =~ s/[^0-9A-Za-z\.\_\-]//g; # only allow numbers, letters, points, underscores and dashes. Prevents injecting of malicious code.
 
 107   $main::lxdebug->leave_sub();
 
 114   SL::Request::read_cgi_input($self);
 
 117 sub _flatten_variables_rec {
 
 118   $main::lxdebug->enter_sub(2);
 
 127   if ('' eq ref $curr->{$key}) {
 
 128     @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
 
 130   } elsif ('HASH' eq ref $curr->{$key}) {
 
 131     foreach my $hash_key (sort keys %{ $curr->{$key} }) {
 
 132       push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
 
 136     foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
 
 137       my $first_array_entry = 1;
 
 139       foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
 
 140         push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
 
 141         $first_array_entry = 0;
 
 146   $main::lxdebug->leave_sub(2);
 
 151 sub flatten_variables {
 
 152   $main::lxdebug->enter_sub(2);
 
 160     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 163   $main::lxdebug->leave_sub(2);
 
 168 sub flatten_standard_variables {
 
 169   $main::lxdebug->enter_sub(2);
 
 172   my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
 
 176   foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
 
 177     push @variables, $self->_flatten_variables_rec($self, '', $_);
 
 180   $main::lxdebug->leave_sub(2);
 
 186   $main::lxdebug->enter_sub();
 
 192   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 194   $main::lxdebug->leave_sub();
 
 198   $main::lxdebug->enter_sub(2);
 
 201   my $password      = $self->{password};
 
 203   $self->{password} = 'X' x 8;
 
 205   local $Data::Dumper::Sortkeys = 1;
 
 206   my $output                    = Dumper($self);
 
 208   $self->{password} = $password;
 
 210   $main::lxdebug->leave_sub(2);
 
 216   my ($self, $str) = @_;
 
 218   return uri_encode($str);
 
 222   my ($self, $str) = @_;
 
 224   return uri_decode($str);
 
 228   $main::lxdebug->enter_sub();
 
 229   my ($self, $str) = @_;
 
 231   if ($str && !ref($str)) {
 
 232     $str =~ s/\"/"/g;
 
 235   $main::lxdebug->leave_sub();
 
 241   $main::lxdebug->enter_sub();
 
 242   my ($self, $str) = @_;
 
 244   if ($str && !ref($str)) {
 
 245     $str =~ s/"/\"/g;
 
 248   $main::lxdebug->leave_sub();
 
 254   $main::lxdebug->enter_sub();
 
 258     map({ print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
 
 260     for (sort keys %$self) {
 
 261       next if (($_ eq "header") || (ref($self->{$_}) ne ""));
 
 262       print($::request->{cgi}->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
 
 265   $main::lxdebug->leave_sub();
 
 269   my ($self, $code) = @_;
 
 270   local $self->{__ERROR_HANDLER} = sub { die SL::X::FormError->new($_[0]) };
 
 275   $main::lxdebug->enter_sub();
 
 277   $main::lxdebug->show_backtrace();
 
 279   my ($self, $msg) = @_;
 
 281   if ($self->{__ERROR_HANDLER}) {
 
 282     $self->{__ERROR_HANDLER}->($msg);
 
 284   } elsif ($ENV{HTTP_USER_AGENT}) {
 
 286     $self->show_generic_error($msg);
 
 289     print STDERR "Error: $msg\n";
 
 293   $main::lxdebug->leave_sub();
 
 297   $main::lxdebug->enter_sub();
 
 299   my ($self, $msg) = @_;
 
 301   if ($ENV{HTTP_USER_AGENT}) {
 
 304     if (!$self->{header}) {
 
 310     <p class="message_ok"><b>$msg</b></p>
 
 312     <script type="text/javascript">
 
 314     // If JavaScript is enabled, the whole thing will be reloaded.
 
 315     // The reason is: When one changes his menu setup (HTML / CSS ...)
 
 316     // it now loads the correct code into the browser instead of do nothing.
 
 317     setTimeout("top.frames.location.href='login.pl'",500);
 
 326     if ($self->{info_function}) {
 
 327       &{ $self->{info_function} }($msg);
 
 333   $main::lxdebug->leave_sub();
 
 336 # calculates the number of rows in a textarea based on the content and column number
 
 337 # can be capped with maxrows
 
 339   $main::lxdebug->enter_sub();
 
 340   my ($self, $str, $cols, $maxrows, $minrows) = @_;
 
 344   my $rows   = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
 
 347   $main::lxdebug->leave_sub();
 
 349   return max(min($rows, $maxrows), $minrows);
 
 353   $main::lxdebug->enter_sub();
 
 355   my ($self, $msg) = @_;
 
 357   $self->error("$msg\n" . $DBI::errstr);
 
 359   $main::lxdebug->leave_sub();
 
 363   $main::lxdebug->enter_sub();
 
 365   my ($self, $name, $msg) = @_;
 
 368   foreach my $part (split m/\./, $name) {
 
 369     if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
 
 372     $curr = $curr->{$part};
 
 375   $main::lxdebug->leave_sub();
 
 378 sub _get_request_uri {
 
 381   return URI->new($ENV{HTTP_REFERER})->canonical() if $ENV{HTTP_X_FORWARDED_FOR};
 
 383   my $scheme =  $ENV{HTTPS} && (lc $ENV{HTTPS} eq 'on') ? 'https' : 'http';
 
 384   my $port   =  $ENV{SERVER_PORT} || '';
 
 385   $port      =  undef if (($scheme eq 'http' ) && ($port == 80))
 
 386                       || (($scheme eq 'https') && ($port == 443));
 
 388   my $uri    =  URI->new("${scheme}://");
 
 389   $uri->scheme($scheme);
 
 391   $uri->host($ENV{HTTP_HOST} || $ENV{SERVER_ADDR});
 
 392   $uri->path_query($ENV{REQUEST_URI});
 
 398 sub _add_to_request_uri {
 
 401   my $relative_new_path = shift;
 
 402   my $request_uri       = shift || $self->_get_request_uri;
 
 403   my $relative_new_uri  = URI->new($relative_new_path);
 
 404   my @request_segments  = $request_uri->path_segments;
 
 406   my $new_uri           = $request_uri->clone;
 
 407   $new_uri->path_segments(@request_segments[0..scalar(@request_segments) - 2], $relative_new_uri->path_segments);
 
 412 sub create_http_response {
 
 413   $main::lxdebug->enter_sub();
 
 418   my $cgi      = $::request->{cgi};
 
 421   if (defined $main::auth) {
 
 422     my $uri      = $self->_get_request_uri;
 
 423     my @segments = $uri->path_segments;
 
 425     $uri->path_segments(@segments);
 
 427     my $session_cookie_value = $main::auth->get_session_id();
 
 429     if ($session_cookie_value) {
 
 430       $session_cookie = $cgi->cookie('-name'   => $main::auth->get_session_cookie_name(),
 
 431                                      '-value'  => $session_cookie_value,
 
 432                                      '-path'   => $uri->path,
 
 433                                      '-secure' => $ENV{HTTPS});
 
 437   my %cgi_params = ('-type' => $params{content_type});
 
 438   $cgi_params{'-charset'} = $params{charset} if ($params{charset});
 
 439   $cgi_params{'-cookie'}  = $session_cookie  if ($session_cookie);
 
 441   map { $cgi_params{'-' . $_} = $params{$_} if exists $params{$_} } qw(content_disposition content_length);
 
 443   my $output = $cgi->header(%cgi_params);
 
 445   $main::lxdebug->leave_sub();
 
 453   $self->{stylesheet} = [ $self->{stylesheet} ] unless ref $self->{stylesheet} eq 'ARRAY';
 
 454   $self->{stylesheet} = [ grep { -f                       }
 
 455                           map  { m:^css/: ? $_ : "css/$_" }
 
 457                                (@{ $self->{stylesheet} }, @_)
 
 460   return @{ $self->{stylesheet} };
 
 463 sub get_stylesheet_for_user {
 
 464   my $css_path = 'css';
 
 465   if (my $user_style = $::myconfig{stylesheet}) {
 
 466     $user_style =~ s/\.css$//; # nuke trailing .css, this is a remnand of pre 2.7.0 stylesheet handling
 
 467     if (-d "$css_path/$user_style" &&
 
 468         -f "$css_path/$user_style/main.css") {
 
 469       $css_path = "$css_path/$user_style";
 
 471       $css_path = "$css_path/lx-office-erp";
 
 474     $css_path = "$css_path/lx-office-erp";
 
 476   $::myconfig{css_path} = $css_path; # needed for menunew, FIXME: don't do this here
 
 482   $::lxdebug->enter_sub;
 
 484   # extra code is currently only used by menuv3 and menuv4 to set their css.
 
 485   # it is strongly deprecated, and will be changed in a future version.
 
 486   my ($self, %params) = @_;
 
 487   my $db_charset = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
 
 490   $::lxdebug->leave_sub and return if !$ENV{HTTP_USER_AGENT} || $self->{header}++;
 
 492   my $css_path = $self->get_stylesheet_for_user;
 
 494   $self->{favicon} ||= "favicon.ico";
 
 495   $self->{titlebar}  = "$self->{title} - $self->{titlebar}" if $self->{title};
 
 498   if ($self->{refresh_url} || $self->{refresh_time}) {
 
 499     my $refresh_time = $self->{refresh_time} || 3;
 
 500     my $refresh_url  = $self->{refresh_url}  || $ENV{REFERER};
 
 501     push @header, "<meta http-equiv='refresh' content='$refresh_time;$refresh_url'>";
 
 504   push @header, map { qq|<link rel="stylesheet" href="$_" type="text/css" title="Stylesheet">| } $self->use_stylesheet;
 
 506   push @header, "<style type='text/css'>\@page { size:landscape; }</style>" if $self->{landscape};
 
 507   push @header, "<link rel='shortcut icon' href='$self->{favicon}' type='image/x-icon'>" if -f $self->{favicon};
 
 508   push @header, map { qq|<script type="text/javascript" src="js/$_.js"></script>| }
 
 509        qw(jquery common jscalendar/calendar jscalendar/lang/calendar-de jscalendar/calendar-setup part_selection jquery-ui jqModal switchmenuframe);
 
 510   push @header, $self->{javascript} if $self->{javascript};
 
 511   push @header, map { qq|<link rel="stylesheet" type="text/css" href="$css_path/$_.css">| }
 
 512        qw(main menu tabcontent list_accounts jquery.autocomplete jquery.multiselect2side frame_header/header ui-lightness/jquery-ui-1.8.12.custom);
 
 513   push @header, map { qq|<link rel="stylesheet" type="text/css" href="js/jscalendar/calendar-win2k-1.css">| }
 
 514   push @header, map { $_->show_javascript } @{ $self->{AJAX} || [] };
 
 515   push @header, "<script type='text/javascript'>function fokus(){ document.$self->{fokus}.focus(); }</script>" if $self->{fokus};
 
 516   push @header, sprintf "<script type='text/javascript'>top.document.title='%s';</script>",
 
 517     join ' - ', grep $_, $self->{title}, $self->{login}, $::myconfig{dbname}, $self->{version} if $self->{title};
 
 519   # if there is a title, we put some JavaScript in to the page, wich writes a
 
 520   # meaningful title-tag for our frameset.
 
 522   if ($self->{title}) {
 
 524     <script type="text/javascript">
 
 526       // Write a meaningful title-tag for our frameset.
 
 527       top.document.title="| . $self->{"title"} . qq| - | . $self->{"login"} . qq| - | . $::myconfig{dbname} . qq| - V| . $self->{"version"} . qq|";
 
 533     strict       => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">|,
 
 534     transitional => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">|,
 
 535     frameset     => qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">|,
 
 539   print $self->create_http_response(content_type => 'text/html', charset => $db_charset);
 
 540   print $doctypes{$params{doctype} || 'transitional'}, $/;
 
 544   <meta http-equiv="Content-Type" content="text/html; charset=$db_charset">
 
 545   <title>$self->{titlebar}</title>
 
 547   print "  $_\n" for @header;
 
 549   <meta name="robots" content="noindex,nofollow">
 
 550   <script type="text/javascript" src="js/tabcontent.js">
 
 552   /***********************************************
 
 553    * Tab Content script v2.2- Â© Dynamic Drive DHTML code library (www.dynamicdrive.com)
 
 554    * This notice MUST stay intact for legal use
 
 555    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
 
 556    ***********************************************/
 
 565   $::lxdebug->leave_sub;
 
 568 sub ajax_response_header {
 
 569   $main::lxdebug->enter_sub();
 
 573   my $db_charset = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
 
 574   my $output     = $::request->{cgi}->header('-charset' => $db_charset);
 
 576   $main::lxdebug->leave_sub();
 
 581 sub redirect_header {
 
 585   my $base_uri = $self->_get_request_uri;
 
 586   my $new_uri  = URI->new_abs($new_url, $base_uri);
 
 588   die "Headers already sent" if $self->{header};
 
 591   return $::request->{cgi}->redirect($new_uri);
 
 594 sub set_standard_title {
 
 595   $::lxdebug->enter_sub;
 
 598   $self->{titlebar}  = "kivitendo " . $::locale->text('Version') . " $self->{version}";
 
 599   $self->{titlebar} .= "- $::myconfig{name}"   if $::myconfig{name};
 
 600   $self->{titlebar} .= "- $::myconfig{dbname}" if $::myconfig{name};
 
 602   $::lxdebug->leave_sub;
 
 605 sub _prepare_html_template {
 
 606   $main::lxdebug->enter_sub();
 
 608   my ($self, $file, $additional_params) = @_;
 
 611   if (!%::myconfig || !$::myconfig{"countrycode"}) {
 
 612     $language = $::lx_office_conf{system}->{language};
 
 614     $language = $main::myconfig{"countrycode"};
 
 616   $language = "de" unless ($language);
 
 618   if (-f "templates/webpages/${file}.html") {
 
 619     $file = "templates/webpages/${file}.html";
 
 622     my $info = "Web page template '${file}' not found.\n";
 
 623     print qq|<pre>$info</pre>|;
 
 627   if ($self->{"DEBUG"}) {
 
 628     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
 
 631   if ($additional_params->{"DEBUG"}) {
 
 632     $additional_params->{"DEBUG"} =
 
 633       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
 
 636   if (%main::myconfig) {
 
 637     $::myconfig{jsc_dateformat} = apply {
 
 641     } $::myconfig{"dateformat"};
 
 642     $additional_params->{"myconfig"} ||= \%::myconfig;
 
 643     map { $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys %::myconfig;
 
 646   $additional_params->{"conf_dbcharset"}              = $::lx_office_conf{system}->{dbcharset};
 
 647   $additional_params->{"conf_webdav"}                 = $::lx_office_conf{features}->{webdav};
 
 648   $additional_params->{"conf_latex_templates"}        = $::lx_office_conf{print_templates}->{latex};
 
 649   $additional_params->{"conf_opendocument_templates"} = $::lx_office_conf{print_templates}->{opendocument};
 
 650   $additional_params->{"conf_vertreter"}              = $::lx_office_conf{features}->{vertreter};
 
 651   $additional_params->{"conf_show_best_before"}       = $::lx_office_conf{features}->{show_best_before};
 
 652   $additional_params->{"conf_parts_image_css"}        = $::lx_office_conf{features}->{parts_image_css};
 
 653   $additional_params->{"conf_parts_listing_images"}   = $::lx_office_conf{features}->{parts_listing_images};
 
 654   $additional_params->{"conf_parts_show_image"}       = $::lx_office_conf{features}->{parts_show_image};
 
 655   $additional_params->{"conf_payments_changeable"}    = $::lx_office_conf{features}->{payments_changeable};
 
 656   $additional_params->{"INSTANCE_CONF"}               = $::instance_conf;
 
 658   if (my $debug_options = $::lx_office_conf{debug}{options}) {
 
 659     map { $additional_params->{'DEBUG_' . uc($_)} = $debug_options->{$_} } keys %$debug_options;
 
 662   if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
 
 663     while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
 
 664       $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
 
 668   $main::lxdebug->leave_sub();
 
 673 sub parse_html_template {
 
 674   $main::lxdebug->enter_sub();
 
 676   my ($self, $file, $additional_params) = @_;
 
 678   $additional_params ||= { };
 
 680   my $real_file = $self->_prepare_html_template($file, $additional_params);
 
 681   my $template  = $self->template || $self->init_template;
 
 683   map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
 
 686   $template->process($real_file, $additional_params, \$output) || die $template->error;
 
 688   $main::lxdebug->leave_sub();
 
 696   return $self->template if $self->template;
 
 698   return $self->template(Template->new({
 
 703      'PLUGIN_BASE'  => 'SL::Template::Plugin',
 
 704      'INCLUDE_PATH' => '.:templates/webpages',
 
 705      'COMPILE_EXT'  => '.tcc',
 
 706      'COMPILE_DIR'  => $::lx_office_conf{paths}->{userspath} . '/templates-cache',
 
 712   $self->{template_object} = shift if @_;
 
 713   return $self->{template_object};
 
 716 sub show_generic_error {
 
 717   $main::lxdebug->enter_sub();
 
 719   my ($self, $error, %params) = @_;
 
 721   if ($self->{__ERROR_HANDLER}) {
 
 722     $self->{__ERROR_HANDLER}->($error);
 
 723     $main::lxdebug->leave_sub();
 
 728     'title_error' => $params{title},
 
 729     'label_error' => $error,
 
 732   if ($params{action}) {
 
 735     map { delete($self->{$_}); } qw(action);
 
 736     map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
 
 738     $add_params->{SHOW_BUTTON}  = 1;
 
 739     $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
 
 740     $add_params->{VARIABLES}    = \@vars;
 
 742   } elsif ($params{back_button}) {
 
 743     $add_params->{SHOW_BACK_BUTTON} = 1;
 
 746   $self->{title} = $params{title} if $params{title};
 
 749   print $self->parse_html_template("generic/error", $add_params);
 
 751   print STDERR "Error: $error\n";
 
 753   $main::lxdebug->leave_sub();
 
 758 sub show_generic_information {
 
 759   $main::lxdebug->enter_sub();
 
 761   my ($self, $text, $title) = @_;
 
 764     'title_information' => $title,
 
 765     'label_information' => $text,
 
 768   $self->{title} = $title if ($title);
 
 771   print $self->parse_html_template("generic/information", $add_params);
 
 773   $main::lxdebug->leave_sub();
 
 778 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 779 # changed it to accept an arbitrary number of triggers - sschoeling
 
 781   $main::lxdebug->enter_sub();
 
 784   my $myconfig = shift;
 
 787   # set dateform for jsscript
 
 790     "dd.mm.yy" => "%d.%m.%Y",
 
 791     "dd-mm-yy" => "%d-%m-%Y",
 
 792     "dd/mm/yy" => "%d/%m/%Y",
 
 793     "mm/dd/yy" => "%m/%d/%Y",
 
 794     "mm-dd-yy" => "%m-%d-%Y",
 
 795     "yyyy-mm-dd" => "%Y-%m-%d",
 
 798   my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
 
 799     $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
 
 806       inputField : "| . (shift) . qq|",
 
 807       ifFormat :"$ifFormat",
 
 808       align : "| .  (shift) . qq|",
 
 809       button : "| . (shift) . qq|"
 
 815        <script type="text/javascript">
 
 816        <!--| . join("", @triggers) . qq|//-->
 
 820   $main::lxdebug->leave_sub();
 
 823 }    #end sub write_trigger
 
 825 sub _store_redirect_info_in_session {
 
 828   return unless $self->{callback} =~ m:^ ( [^\?/]+ \.pl ) \? (.+) :x;
 
 830   my ($controller, $params) = ($1, $2);
 
 831   my $form                  = { map { map { $self->unescape($_) } split /=/, $_, 2 } split m/\&/, $params };
 
 832   $self->{callback}         = "${controller}?RESTORE_FORM_FROM_SESSION_ID=" . $::auth->save_form_in_session(form => $form);
 
 836   $main::lxdebug->enter_sub();
 
 838   my ($self, $msg) = @_;
 
 840   if (!$self->{callback}) {
 
 844     $self->_store_redirect_info_in_session;
 
 845     print $::form->redirect_header($self->{callback});
 
 850   $main::lxdebug->leave_sub();
 
 853 # sort of columns removed - empty sub
 
 855   $main::lxdebug->enter_sub();
 
 857   my ($self, @columns) = @_;
 
 859   $main::lxdebug->leave_sub();
 
 865   $main::lxdebug->enter_sub(2);
 
 867   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 874   # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
 
 876   my $neg = ($amount =~ s/^-//);
 
 877   my $exp = ($amount =~ m/[e]/) ? 1 : 0;
 
 879   if (defined($places) && ($places ne '')) {
 
 885         if ($amount =~ /\.(\d+)/) {
 
 886           my $actual_places = length $1;
 
 887           $places = $actual_places if $actual_places > $places;
 
 891     $amount = $self->round_amount($amount, $places);
 
 894   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 895   my @p = split(/\./, $amount); # split amount at decimal point
 
 897   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
 900   $amount .= $d[0].($p[1]||'').(0 x ($places - length ($p[1]||''))) if ($places || $p[1] ne '');
 
 903     ($dash =~ /-/)    ? ($neg ? "($amount)"                            : "$amount" )                              :
 
 904     ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
 
 905                         ($neg ? "-$amount"                             : "$amount" )                              ;
 
 909   $main::lxdebug->leave_sub(2);
 
 913 sub format_amount_units {
 
 914   $main::lxdebug->enter_sub();
 
 919   my $myconfig         = \%main::myconfig;
 
 920   my $amount           = $params{amount} * 1;
 
 921   my $places           = $params{places};
 
 922   my $part_unit_name   = $params{part_unit};
 
 923   my $amount_unit_name = $params{amount_unit};
 
 924   my $conv_units       = $params{conv_units};
 
 925   my $max_places       = $params{max_places};
 
 927   if (!$part_unit_name) {
 
 928     $main::lxdebug->leave_sub();
 
 932   my $all_units        = AM->retrieve_all_units;
 
 934   if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
 
 935     $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
 
 938   if (!scalar @{ $conv_units }) {
 
 939     my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
 
 940     $main::lxdebug->leave_sub();
 
 944   my $part_unit  = $all_units->{$part_unit_name};
 
 945   my $conv_unit  = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
 
 947   $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')) {
 
1006     $amount =~ s/,/\./g;
 
1009   if ($myconfig->{numberformat} eq "1'000.00") {
 
1015   $main::lxdebug->leave_sub(2);
 
1017   # Make sure no code wich is not a math expression ends up in eval().
 
1018   return 0 unless $amount =~ /^ [\s \d \( \) \- \+ \* \/ \. ]* $/x;
 
1019   return scalar(eval($amount)) * 1 ;
 
1023   $main::lxdebug->enter_sub(2);
 
1025   my ($self, $amount, $places) = @_;
 
1028   # Rounding like "Kaufmannsrunden" (see http://de.wikipedia.org/wiki/Rundung )
 
1030   # Round amounts to eight places before rounding to the requested
 
1031   # number of places. This gets rid of errors due to internal floating
 
1032   # point representation.
 
1033   $amount       = $self->round_amount($amount, 8) if $places < 8;
 
1034   $amount       = $amount * (10**($places));
 
1035   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
1037   $main::lxdebug->leave_sub(2);
 
1039   return $round_amount;
 
1043 sub parse_template {
 
1044   $main::lxdebug->enter_sub();
 
1046   my ($self, $myconfig) = @_;
 
1047   my ($out, $out_mode);
 
1051   my $userspath = $::lx_office_conf{paths}->{userspath};
 
1053   $self->{"cwd"} = getcwd();
 
1054   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
1059   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
1060     $template_type  = 'OpenDocument';
 
1061     $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
 
1063   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
1064     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
1065     $template_type    = 'LaTeX';
 
1066     $ext_for_format   = 'pdf';
 
1068   } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
1069     $template_type  = 'HTML';
 
1070     $ext_for_format = 'html';
 
1072   } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
1073     $template_type  = 'XML';
 
1074     $ext_for_format = 'xml';
 
1076   } elsif ( $self->{"format"} =~ /elster(?:winston|taxbird)/i ) {
 
1077     $template_type = 'XML';
 
1079   } elsif ( $self->{"format"} =~ /excel/i ) {
 
1080     $template_type  = 'Excel';
 
1081     $ext_for_format = 'xls';
 
1083   } elsif ( defined $self->{'format'}) {
 
1084     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
1086   } elsif ( $self->{'format'} eq '' ) {
 
1087     $self->error("No Outputformat given: $self->{'format'}");
 
1089   } else { #Catch the rest
 
1090     $self->error("Outputformat not defined: $self->{'format'}");
 
1093   my $template = SL::Template::create(type      => $template_type,
 
1094                                       file_name => $self->{IN},
 
1096                                       myconfig  => $myconfig,
 
1097                                       userspath => $userspath);
 
1099   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
1100   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
1102   if (!$self->{employee_id}) {
 
1103     map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
 
1106   map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
 
1107   map { $self->{"myconfig_${_}"} = $myconfig->{$_} } grep { $_ ne 'dbpasswd' } keys %{ $myconfig };
 
1109   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
1111   # OUT is used for the media, screen, printer, email
 
1112   # for postscript we store a copy in a temporary file
 
1113   my ($temp_fh, $suffix);
 
1114   $suffix =  $self->{IN};
 
1115   $suffix =~ s/.*\.//;
 
1116   ($temp_fh, $self->{tmpfile}) = File::Temp::tempfile(
 
1117     'kivitendo-printXXXXXX',
 
1118     SUFFIX => '.' . ($suffix || 'tex'),
 
1120     UNLINK => ($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})? 0 : 1,
 
1124   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1125     $out              = $self->{OUT};
 
1126     $out_mode         = $self->{OUT_MODE} || '>';
 
1127     $self->{OUT}      = "$self->{tmpfile}";
 
1128     $self->{OUT_MODE} = '>';
 
1132   my $command_formatter = sub {
 
1133     my ($out_mode, $out) = @_;
 
1134     return $out_mode eq '|-' ? SL::Template::create(type => 'ShellCommand', form => $self)->parse($out) : $out;
 
1138     $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
 
1139     open(OUT, $self->{OUT_MODE}, $self->{OUT}) or $self->error("error on opening $self->{OUT} with mode $self->{OUT_MODE} : $!");
 
1141     *OUT = ($::dispatcher->get_standard_filehandles)[1];
 
1145   if (!$template->parse(*OUT)) {
 
1147     $self->error("$self->{IN} : " . $template->get_error());
 
1150   close OUT if $self->{OUT};
 
1152   if ($self->{media} eq 'file') {
 
1153     copy(join('/', $self->{cwd}, $userspath, $self->{tmpfile}), $out =~ m|^/| ? $out : join('/', $self->{cwd}, $out)) if $template->uses_temp_file;
 
1155     chdir("$self->{cwd}");
 
1157     $::lxdebug->leave_sub();
 
1162   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
1164     if ($self->{media} eq 'email') {
 
1166       my $mail = new Mailer;
 
1168       map { $mail->{$_} = $self->{$_} }
 
1169         qw(cc bcc subject message version format);
 
1170       $mail->{charset} = $::lx_office_conf{system}->{dbcharset} || Common::DEFAULT_CHARSET;
 
1171       $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
 
1172       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
1173       $mail->{fileid} = time() . '.' . $$ . '.';
 
1174       $myconfig->{signature} =~ s/\r//g;
 
1176       # if we send html or plain text inline
 
1177       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
1178         $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} : $!");
 
1186         $mail->{message} .= $_ while <IN>;
 
1191         if (!$self->{"do_not_attach"}) {
 
1192           my $attachment_name  =  $self->{attachment_filename} || $self->{tmpfile};
 
1193           $attachment_name     =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
 
1194           $mail->{attachments} =  [{ "filename" => $self->{tmpfile},
 
1195                                      "name"     => $attachment_name }];
 
1198         $mail->{message}  =~ s/\r//g;
 
1199         $mail->{message} .=  "\n-- \n$myconfig->{signature}";
 
1203       my $err = $mail->send();
 
1204       $self->error($self->cleanup . "$err") if ($err);
 
1208       $self->{OUT}      = $out;
 
1209       $self->{OUT_MODE} = $out_mode;
 
1211       my $numbytes = (-s $self->{tmpfile});
 
1212       open(IN, "<", $self->{tmpfile})
 
1213         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
1216       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
1218       chdir("$self->{cwd}");
 
1219       #print(STDERR "Kopien $self->{copies}\n");
 
1220       #print(STDERR "OUT $self->{OUT}\n");
 
1221       for my $i (1 .. $self->{copies}) {
 
1223           $self->{OUT} = $command_formatter->($self->{OUT_MODE}, $self->{OUT});
 
1225           open  OUT, $self->{OUT_MODE}, $self->{OUT} or $self->error($self->cleanup . "$self->{OUT} : $!");
 
1226           print OUT $_ while <IN>;
 
1231           $self->{attachment_filename} = ($self->{attachment_filename})
 
1232                                        ? $self->{attachment_filename}
 
1233                                        : $self->generate_attachment_filename();
 
1235           # launch application
 
1236           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
1237 Content-Disposition: attachment; filename="$self->{attachment_filename}"
 
1238 Content-Length: $numbytes
 
1242           $::locale->with_raw_io(\*STDOUT, sub { print while <IN> });
 
1253   chdir("$self->{cwd}");
 
1254   $main::lxdebug->leave_sub();
 
1257 sub get_formname_translation {
 
1258   $main::lxdebug->enter_sub();
 
1259   my ($self, $formname) = @_;
 
1261   $formname ||= $self->{formname};
 
1263   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
 
1264   local $::locale = Locale->new($self->{recipient_locale});
 
1266   my %formname_translations = (
 
1267     bin_list                => $main::locale->text('Bin List'),
 
1268     credit_note             => $main::locale->text('Credit Note'),
 
1269     invoice                 => $main::locale->text('Invoice'),
 
1270     pick_list               => $main::locale->text('Pick List'),
 
1271     proforma                => $main::locale->text('Proforma Invoice'),
 
1272     purchase_order          => $main::locale->text('Purchase Order'),
 
1273     request_quotation       => $main::locale->text('RFQ'),
 
1274     sales_order             => $main::locale->text('Confirmation'),
 
1275     sales_quotation         => $main::locale->text('Quotation'),
 
1276     storno_invoice          => $main::locale->text('Storno Invoice'),
 
1277     sales_delivery_order    => $main::locale->text('Delivery Order'),
 
1278     purchase_delivery_order => $main::locale->text('Delivery Order'),
 
1279     dunning                 => $main::locale->text('Dunning'),
 
1282   $main::lxdebug->leave_sub();
 
1283   return $formname_translations{$formname};
 
1286 sub get_number_prefix_for_type {
 
1287   $main::lxdebug->enter_sub();
 
1291       (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
 
1292     : ($self->{type} =~ /_quotation$/)                        ? 'quo'
 
1293     : ($self->{type} =~ /_delivery_order$/)                   ? 'do'
 
1296   $main::lxdebug->leave_sub();
 
1300 sub get_extension_for_format {
 
1301   $main::lxdebug->enter_sub();
 
1304   my $extension = $self->{format} =~ /pdf/i          ? ".pdf"
 
1305                 : $self->{format} =~ /postscript/i   ? ".ps"
 
1306                 : $self->{format} =~ /opendocument/i ? ".odt"
 
1307                 : $self->{format} =~ /excel/i        ? ".xls"
 
1308                 : $self->{format} =~ /html/i         ? ".html"
 
1311   $main::lxdebug->leave_sub();
 
1315 sub generate_attachment_filename {
 
1316   $main::lxdebug->enter_sub();
 
1319   $self->{recipient_locale} ||=  Locale->lang_to_locale($self->{language});
 
1320   my $recipient_locale = Locale->new($self->{recipient_locale});
 
1322   my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1323   my $prefix              = $self->get_number_prefix_for_type();
 
1325   if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
 
1326     $attachment_filename .= ' (' . $recipient_locale->text('Preview') . ')' . $self->get_extension_for_format();
 
1328   } elsif ($attachment_filename && $self->{"${prefix}number"}) {
 
1329     $attachment_filename .=  "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
 
1332     $attachment_filename = "";
 
1335   $attachment_filename =  $main::locale->quote_special_chars('filenames', $attachment_filename);
 
1336   $attachment_filename =~ s|[\s/\\]+|_|g;
 
1338   $main::lxdebug->leave_sub();
 
1339   return $attachment_filename;
 
1342 sub generate_email_subject {
 
1343   $main::lxdebug->enter_sub();
 
1346   my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
 
1347   my $prefix  = $self->get_number_prefix_for_type();
 
1349   if ($subject && $self->{"${prefix}number"}) {
 
1350     $subject .= " " . $self->{"${prefix}number"}
 
1353   $main::lxdebug->leave_sub();
 
1358   $main::lxdebug->enter_sub();
 
1360   my ($self, $application) = @_;
 
1362   my $error_code = $?;
 
1364   chdir("$self->{tmpdir}");
 
1367   if ((-1 == $error_code) || (127 == (($error_code) >> 8))) {
 
1368     push @err, $::locale->text('The application "#1" was not found on the system.', $application || 'pdflatex') . ' ' . $::locale->text('Please contact your administrator.');
 
1370   } elsif (-f "$self->{tmpfile}.err") {
 
1371     open(FH, "$self->{tmpfile}.err");
 
1376   if ($self->{tmpfile} && !($::lx_office_conf{debug} && $::lx_office_conf{debug}->{keep_temp_files})) {
 
1377     $self->{tmpfile} =~ s|.*/||g;
 
1379     $self->{tmpfile} =~ s/\.\w+$//g;
 
1380     my $tmpfile = $self->{tmpfile};
 
1381     unlink(<$tmpfile.*>);
 
1384   chdir("$self->{cwd}");
 
1386   $main::lxdebug->leave_sub();
 
1392   $main::lxdebug->enter_sub();
 
1394   my ($self, $date, $myconfig) = @_;
 
1397   if ($date && $date =~ /\D/) {
 
1399     if ($myconfig->{dateformat} =~ /^yy/) {
 
1400       ($yy, $mm, $dd) = split /\D/, $date;
 
1402     if ($myconfig->{dateformat} =~ /^mm/) {
 
1403       ($mm, $dd, $yy) = split /\D/, $date;
 
1405     if ($myconfig->{dateformat} =~ /^dd/) {
 
1406       ($dd, $mm, $yy) = split /\D/, $date;
 
1411     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1412     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1414     $dd = "0$dd" if ($dd < 10);
 
1415     $mm = "0$mm" if ($mm < 10);
 
1417     $date = "$yy$mm$dd";
 
1420   $main::lxdebug->leave_sub();
 
1425 # Database routines used throughout
 
1427 sub _dbconnect_options {
 
1429   my $options = { pg_enable_utf8 => $::locale->is_utf8,
 
1436   $main::lxdebug->enter_sub(2);
 
1438   my ($self, $myconfig) = @_;
 
1440   # connect to database
 
1441   my $dbh = SL::DBConnect->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}, $self->_dbconnect_options)
 
1445   if ($myconfig->{dboptions}) {
 
1446     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1449   $main::lxdebug->leave_sub(2);
 
1454 sub dbconnect_noauto {
 
1455   $main::lxdebug->enter_sub();
 
1457   my ($self, $myconfig) = @_;
 
1459   # connect to database
 
1460   my $dbh = SL::DBConnect->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}, $self->_dbconnect_options(AutoCommit => 0))
 
1464   if ($myconfig->{dboptions}) {
 
1465     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1468   $main::lxdebug->leave_sub();
 
1473 sub get_standard_dbh {
 
1474   $main::lxdebug->enter_sub(2);
 
1477   my $myconfig = shift || \%::myconfig;
 
1479   if ($standard_dbh && !$standard_dbh->{Active}) {
 
1480     $main::lxdebug->message(LXDebug->INFO(), "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
 
1481     undef $standard_dbh;
 
1484   $standard_dbh ||= $self->dbconnect_noauto($myconfig);
 
1486   $main::lxdebug->leave_sub(2);
 
1488   return $standard_dbh;
 
1492   $main::lxdebug->enter_sub();
 
1494   my ($self, $date, $myconfig) = @_;
 
1495   my $dbh = $self->dbconnect($myconfig);
 
1497   my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
 
1498   my $sth = prepare_execute_query($self, $dbh, $query, conv_date($date));
 
1500   # Falls $date = '' - Fehlermeldung aus der Datenbank. Ich denke,
 
1501   # es ist sicher ein conv_date vorher IMMER auszuführen.
 
1502   # Testfälle ohne definiertes closedto:
 
1503   #   Leere Datumseingabe i.O.
 
1504   #     SELECT 1 FROM defaults WHERE '' < closedto
 
1505   #   normale Zahlungsbuchung Ã¼ber Rechnungsmaske i.O.
 
1506   #     SELECT 1 FROM defaults WHERE '10.05.2011' < closedto
 
1507   # Testfälle mit definiertem closedto (30.04.2011):
 
1508   #  Leere Datumseingabe i.O.
 
1509   #   SELECT 1 FROM defaults WHERE '' < closedto
 
1510   # normale Buchung im geschloßenem Zeitraum i.O.
 
1511   #   SELECT 1 FROM defaults WHERE '21.04.2011' < closedto
 
1512   #     Fehlermeldung: Es können keine Zahlungen für abgeschlossene Bücher gebucht werden!
 
1513   # normale Buchung in aktiver Buchungsperiode i.O.
 
1514   #   SELECT 1 FROM defaults WHERE '01.05.2011' < closedto
 
1516   my ($closed) = $sth->fetchrow_array;
 
1518   $main::lxdebug->leave_sub();
 
1523 sub update_balance {
 
1524   $main::lxdebug->enter_sub();
 
1526   my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
 
1528   # if we have a value, go do it
 
1531     # retrieve balance from table
 
1532     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1533     my $sth = prepare_execute_query($self, $dbh, $query, @values);
 
1534     my ($balance) = $sth->fetchrow_array;
 
1540     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1541     do_query($self, $dbh, $query, @values);
 
1543   $main::lxdebug->leave_sub();
 
1546 sub update_exchangerate {
 
1547   $main::lxdebug->enter_sub();
 
1549   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1551   # some sanity check for currency
 
1553     $main::lxdebug->leave_sub();
 
1556   $query = qq|SELECT curr FROM defaults|;
 
1558   my ($currency) = selectrow_query($self, $dbh, $query);
 
1559   my ($defaultcurrency) = split m/:/, $currency;
 
1562   if ($curr eq $defaultcurrency) {
 
1563     $main::lxdebug->leave_sub();
 
1567   $query = qq|SELECT e.curr FROM exchangerate e
 
1568                  WHERE e.curr = ? AND e.transdate = ?
 
1570   my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
 
1579   $buy = conv_i($buy, "NULL");
 
1580   $sell = conv_i($sell, "NULL");
 
1583   if ($buy != 0 && $sell != 0) {
 
1584     $set = "buy = $buy, sell = $sell";
 
1585   } elsif ($buy != 0) {
 
1586     $set = "buy = $buy";
 
1587   } elsif ($sell != 0) {
 
1588     $set = "sell = $sell";
 
1591   if ($sth->fetchrow_array) {
 
1592     $query = qq|UPDATE exchangerate
 
1598     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1599                 VALUES (?, $buy, $sell, ?)|;
 
1602   do_query($self, $dbh, $query, $curr, $transdate);
 
1604   $main::lxdebug->leave_sub();
 
1607 sub save_exchangerate {
 
1608   $main::lxdebug->enter_sub();
 
1610   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1612   my $dbh = $self->dbconnect($myconfig);
 
1616   $buy  = $rate if $fld eq 'buy';
 
1617   $sell = $rate if $fld eq 'sell';
 
1620   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1625   $main::lxdebug->leave_sub();
 
1628 sub get_exchangerate {
 
1629   $main::lxdebug->enter_sub();
 
1631   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1634   unless ($transdate) {
 
1635     $main::lxdebug->leave_sub();
 
1639   $query = qq|SELECT curr FROM defaults|;
 
1641   my ($currency) = selectrow_query($self, $dbh, $query);
 
1642   my ($defaultcurrency) = split m/:/, $currency;
 
1644   if ($currency eq $defaultcurrency) {
 
1645     $main::lxdebug->leave_sub();
 
1649   $query = qq|SELECT e.$fld FROM exchangerate e
 
1650                  WHERE e.curr = ? AND e.transdate = ?|;
 
1651   my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
 
1655   $main::lxdebug->leave_sub();
 
1657   return $exchangerate;
 
1660 sub check_exchangerate {
 
1661   $main::lxdebug->enter_sub();
 
1663   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1665   if ($fld !~/^buy|sell$/) {
 
1666     $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
 
1669   unless ($transdate) {
 
1670     $main::lxdebug->leave_sub();
 
1674   my ($defaultcurrency) = $self->get_default_currency($myconfig);
 
1676   if ($currency eq $defaultcurrency) {
 
1677     $main::lxdebug->leave_sub();
 
1681   my $dbh   = $self->get_standard_dbh($myconfig);
 
1682   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1683                  WHERE e.curr = ? AND e.transdate = ?|;
 
1685   my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
 
1687   $main::lxdebug->leave_sub();
 
1689   return $exchangerate;
 
1692 sub get_all_currencies {
 
1693   $main::lxdebug->enter_sub();
 
1696   my $myconfig = shift || \%::myconfig;
 
1697   my $dbh      = $self->get_standard_dbh($myconfig);
 
1699   my $query = qq|SELECT curr FROM defaults|;
 
1701   my ($curr)     = selectrow_query($self, $dbh, $query);
 
1702   my @currencies = grep { $_ } map { s/\s//g; $_ } split m/:/, $curr;
 
1704   $main::lxdebug->leave_sub();
 
1709 sub get_default_currency {
 
1710   $main::lxdebug->enter_sub();
 
1712   my ($self, $myconfig) = @_;
 
1713   my @currencies        = $self->get_all_currencies($myconfig);
 
1715   $main::lxdebug->leave_sub();
 
1717   return $currencies[0];
 
1720 sub set_payment_options {
 
1721   $main::lxdebug->enter_sub();
 
1723   my ($self, $myconfig, $transdate) = @_;
 
1725   return $main::lxdebug->leave_sub() unless ($self->{payment_id});
 
1727   my $dbh = $self->get_standard_dbh($myconfig);
 
1730     qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long , p.description | .
 
1731     qq|FROM payment_terms p | .
 
1734   ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
 
1735    $self->{payment_terms}, $self->{payment_description}) =
 
1736      selectrow_query($self, $dbh, $query, $self->{payment_id});
 
1738   if ($transdate eq "") {
 
1739     if ($self->{invdate}) {
 
1740       $transdate = $self->{invdate};
 
1742       $transdate = $self->{transdate};
 
1747     qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
 
1748     qq|FROM payment_terms|;
 
1749   ($self->{netto_date}, $self->{skonto_date}) =
 
1750     selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
 
1752   my ($invtotal, $total);
 
1753   my (%amounts, %formatted_amounts);
 
1755   if ($self->{type} =~ /_order$/) {
 
1756     $amounts{invtotal} = $self->{ordtotal};
 
1757     $amounts{total}    = $self->{ordtotal};
 
1759   } elsif ($self->{type} =~ /_quotation$/) {
 
1760     $amounts{invtotal} = $self->{quototal};
 
1761     $amounts{total}    = $self->{quototal};
 
1764     $amounts{invtotal} = $self->{invtotal};
 
1765     $amounts{total}    = $self->{total};
 
1767   $amounts{skonto_in_percent} = 100.0 * $self->{percent_skonto};
 
1769   map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1771   $amounts{skonto_amount}      = $amounts{invtotal} * $self->{percent_skonto};
 
1772   $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
 
1773   $amounts{total_wo_skonto}    = $amounts{total}    * (1 - $self->{percent_skonto});
 
1775   foreach (keys %amounts) {
 
1776     $amounts{$_}           = $self->round_amount($amounts{$_}, 2);
 
1777     $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
 
1780   if ($self->{"language_id"}) {
 
1782       qq|SELECT t.translation, l.output_numberformat, l.output_dateformat, l.output_longdates | .
 
1783       qq|FROM generic_translations t | .
 
1784       qq|LEFT JOIN language l ON t.language_id = l.id | .
 
1785       qq|WHERE (t.language_id = ?)
 
1786            AND (t.translation_id = ?)
 
1787            AND (t.translation_type = 'SL::DB::PaymentTerm/description_long')|;
 
1788     my ($description_long, $output_numberformat, $output_dateformat,
 
1789       $output_longdates) =
 
1790       selectrow_query($self, $dbh, $query,
 
1791                       $self->{"language_id"}, $self->{"payment_id"});
 
1793     $self->{payment_terms} = $description_long if ($description_long);
 
1795     if ($output_dateformat) {
 
1796       foreach my $key (qw(netto_date skonto_date)) {
 
1798           $main::locale->reformat_date($myconfig, $self->{$key},
 
1804     if ($output_numberformat &&
 
1805         ($output_numberformat ne $myconfig->{"numberformat"})) {
 
1806       my $saved_numberformat = $myconfig->{"numberformat"};
 
1807       $myconfig->{"numberformat"} = $output_numberformat;
 
1808       map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
 
1809       $myconfig->{"numberformat"} = $saved_numberformat;
 
1813   $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1814   $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1815   $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1816   $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1817   $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1818   $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1819   $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1821   map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
 
1823   $self->{skonto_in_percent} = $formatted_amounts{skonto_in_percent};
 
1825   $main::lxdebug->leave_sub();
 
1829 sub get_template_language {
 
1830   $main::lxdebug->enter_sub();
 
1832   my ($self, $myconfig) = @_;
 
1834   my $template_code = "";
 
1836   if ($self->{language_id}) {
 
1837     my $dbh = $self->get_standard_dbh($myconfig);
 
1838     my $query = qq|SELECT template_code FROM language WHERE id = ?|;
 
1839     ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
 
1842   $main::lxdebug->leave_sub();
 
1844   return $template_code;
 
1847 sub get_printer_code {
 
1848   $main::lxdebug->enter_sub();
 
1850   my ($self, $myconfig) = @_;
 
1852   my $template_code = "";
 
1854   if ($self->{printer_id}) {
 
1855     my $dbh = $self->get_standard_dbh($myconfig);
 
1856     my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
 
1857     ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
 
1860   $main::lxdebug->leave_sub();
 
1862   return $template_code;
 
1866   $main::lxdebug->enter_sub();
 
1868   my ($self, $myconfig) = @_;
 
1870   my $template_code = "";
 
1872   if ($self->{shipto_id}) {
 
1873     my $dbh = $self->get_standard_dbh($myconfig);
 
1874     my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
 
1875     my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
 
1876     map({ $self->{$_} = $ref->{$_} } keys(%$ref));
 
1879   $main::lxdebug->leave_sub();
 
1883   $main::lxdebug->enter_sub();
 
1885   my ($self, $dbh, $id, $module) = @_;
 
1890   foreach my $item (qw(name department_1 department_2 street zipcode city country
 
1891                        contact cp_gender phone fax email)) {
 
1892     if ($self->{"shipto$item"}) {
 
1893       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1895     push(@values, $self->{"shipto${item}"});
 
1899     if ($self->{shipto_id}) {
 
1900       my $query = qq|UPDATE shipto set
 
1902                        shiptodepartment_1 = ?,
 
1903                        shiptodepartment_2 = ?,
 
1909                        shiptocp_gender = ?,
 
1913                      WHERE shipto_id = ?|;
 
1914       do_query($self, $dbh, $query, @values, $self->{shipto_id});
 
1916       my $query = qq|SELECT * FROM shipto
 
1917                      WHERE shiptoname = ? AND
 
1918                        shiptodepartment_1 = ? AND
 
1919                        shiptodepartment_2 = ? AND
 
1920                        shiptostreet = ? AND
 
1921                        shiptozipcode = ? AND
 
1923                        shiptocountry = ? AND
 
1924                        shiptocontact = ? AND
 
1925                        shiptocp_gender = ? AND
 
1931       my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
 
1934           qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
 
1935                                  shiptostreet, shiptozipcode, shiptocity, shiptocountry,
 
1936                                  shiptocontact, shiptocp_gender, shiptophone, shiptofax, shiptoemail, module)
 
1937              VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
 
1938         do_query($self, $dbh, $query, $id, @values, $module);
 
1943   $main::lxdebug->leave_sub();
 
1947   $main::lxdebug->enter_sub();
 
1949   my ($self, $dbh) = @_;
 
1951   $dbh ||= $self->get_standard_dbh(\%main::myconfig);
 
1953   my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
 
1954   ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
 
1955   $self->{"employee_id"} *= 1;
 
1957   $main::lxdebug->leave_sub();
 
1960 sub get_employee_data {
 
1961   $main::lxdebug->enter_sub();
 
1966   Common::check_params(\%params, qw(prefix));
 
1967   Common::check_params_x(\%params, qw(id));
 
1970     $main::lxdebug->leave_sub();
 
1974   my $myconfig = \%main::myconfig;
 
1975   my $dbh      = $params{dbh} || $self->get_standard_dbh($myconfig);
 
1977   my ($login)  = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
 
1980     my $user = User->new(login => $login);
 
1981     map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
 
1983     $self->{$params{prefix} . '_login'}   = $login;
 
1984     $self->{$params{prefix} . '_name'}  ||= $login;
 
1987   $main::lxdebug->leave_sub();
 
1991   $main::lxdebug->enter_sub();
 
1993   my ($self, $myconfig, $reference_date) = @_;
 
1995   $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
 
1997   my $dbh         = $self->get_standard_dbh($myconfig);
 
2000   if($self->{payment_id}) {
 
2001     $payment_id = $self->{payment_id};
 
2002   } elsif($self->{vendor_id}) {
 
2003     my $query = 'SELECT payment_id FROM vendor WHERE id = ?';
 
2004     ($payment_id) = selectrow_query($self, $dbh, $query, $self->{vendor_id});
 
2007   my $query       = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
 
2008   my ($duedate)   = selectrow_query($self, $dbh, $query, $payment_id);
 
2010   $main::lxdebug->leave_sub();
 
2016   $main::lxdebug->enter_sub();
 
2018   my ($self, $dbh, $id, $key) = @_;
 
2020   $key = "all_contacts" unless ($key);
 
2024     $main::lxdebug->leave_sub();
 
2029     qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
 
2030     qq|FROM contacts | .
 
2031     qq|WHERE cp_cv_id = ? | .
 
2032     qq|ORDER BY lower(cp_name)|;
 
2034   $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
 
2036   $main::lxdebug->leave_sub();
 
2040   $main::lxdebug->enter_sub();
 
2042   my ($self, $dbh, $key) = @_;
 
2044   my ($all, $old_id, $where, @values);
 
2046   if (ref($key) eq "HASH") {
 
2049     $key = "ALL_PROJECTS";
 
2051     foreach my $p (keys(%{$params})) {
 
2053         $all = $params->{$p};
 
2054       } elsif ($p eq "old_id") {
 
2055         $old_id = $params->{$p};
 
2056       } elsif ($p eq "key") {
 
2057         $key = $params->{$p};
 
2063     $where = "WHERE active ";
 
2065       if (ref($old_id) eq "ARRAY") {
 
2066         my @ids = grep({ $_ } @{$old_id});
 
2068           $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
 
2069           push(@values, @ids);
 
2072         $where .= " OR (id = ?) ";
 
2073         push(@values, $old_id);
 
2079     qq|SELECT id, projectnumber, description, active | .
 
2082     qq|ORDER BY lower(projectnumber)|;
 
2084   $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
 
2086   $main::lxdebug->leave_sub();
 
2090   $main::lxdebug->enter_sub();
 
2092   my ($self, $dbh, $vc_id, $key) = @_;
 
2094   $key = "all_shipto" unless ($key);
 
2097     # get shipping addresses
 
2098     my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
 
2100     $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
 
2106   $main::lxdebug->leave_sub();
 
2110   $main::lxdebug->enter_sub();
 
2112   my ($self, $dbh, $key) = @_;
 
2114   $key = "all_printers" unless ($key);
 
2116   my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
 
2118   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2120   $main::lxdebug->leave_sub();
 
2124   $main::lxdebug->enter_sub();
 
2126   my ($self, $dbh, $params) = @_;
 
2129   $key = $params->{key};
 
2130   $key = "all_charts" unless ($key);
 
2132   my $transdate = quote_db_date($params->{transdate});
 
2135     qq|SELECT c.id, c.accno, c.description, c.link, c.charttype, tk.taxkey_id, tk.tax_id | .
 
2137     qq|LEFT JOIN taxkeys tk ON | .
 
2138     qq|(tk.id = (SELECT id FROM taxkeys | .
 
2139     qq|          WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
 
2140     qq|          ORDER BY startdate DESC LIMIT 1)) | .
 
2141     qq|ORDER BY c.accno|;
 
2143   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2145   $main::lxdebug->leave_sub();
 
2148 sub _get_taxcharts {
 
2149   $main::lxdebug->enter_sub();
 
2151   my ($self, $dbh, $params) = @_;
 
2153   my $key = "all_taxcharts";
 
2156   if (ref $params eq 'HASH') {
 
2157     $key = $params->{key} if ($params->{key});
 
2158     if ($params->{module} eq 'AR') {
 
2159       push @where, 'taxkey NOT IN (8, 9, 18, 19)';
 
2161     } elsif ($params->{module} eq 'AP') {
 
2162       push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
 
2169   my $where = @where ? ' WHERE ' . join(' AND ', map { "($_)" } @where) : '';
 
2171   my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
 
2173   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2175   $main::lxdebug->leave_sub();
 
2179   $main::lxdebug->enter_sub();
 
2181   my ($self, $dbh, $key) = @_;
 
2183   $key = "all_taxzones" unless ($key);
 
2185   my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
 
2187   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2189   $main::lxdebug->leave_sub();
 
2192 sub _get_employees {
 
2193   $main::lxdebug->enter_sub();
 
2195   my ($self, $dbh, $default_key, $key) = @_;
 
2197   $key = $default_key unless ($key);
 
2198   $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
 
2200   $main::lxdebug->leave_sub();
 
2203 sub _get_business_types {
 
2204   $main::lxdebug->enter_sub();
 
2206   my ($self, $dbh, $key) = @_;
 
2208   my $options       = ref $key eq 'HASH' ? $key : { key => $key };
 
2209   $options->{key} ||= "all_business_types";
 
2212   if (exists $options->{salesman}) {
 
2213     $where = 'WHERE ' . ($options->{salesman} ? '' : 'NOT ') . 'COALESCE(salesman)';
 
2216   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, qq|SELECT * FROM business $where ORDER BY lower(description)|);
 
2218   $main::lxdebug->leave_sub();
 
2221 sub _get_languages {
 
2222   $main::lxdebug->enter_sub();
 
2224   my ($self, $dbh, $key) = @_;
 
2226   $key = "all_languages" unless ($key);
 
2228   my $query = qq|SELECT * FROM language ORDER BY id|;
 
2230   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2232   $main::lxdebug->leave_sub();
 
2235 sub _get_dunning_configs {
 
2236   $main::lxdebug->enter_sub();
 
2238   my ($self, $dbh, $key) = @_;
 
2240   $key = "all_dunning_configs" unless ($key);
 
2242   my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
 
2244   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2246   $main::lxdebug->leave_sub();
 
2249 sub _get_currencies {
 
2250 $main::lxdebug->enter_sub();
 
2252   my ($self, $dbh, $key) = @_;
 
2254   $key = "all_currencies" unless ($key);
 
2256   my $query = qq|SELECT curr AS currency FROM defaults|;
 
2258   $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
 
2260   $main::lxdebug->leave_sub();
 
2264 $main::lxdebug->enter_sub();
 
2266   my ($self, $dbh, $key) = @_;
 
2268   $key = "all_payments" unless ($key);
 
2270   my $query = qq|SELECT * FROM payment_terms ORDER BY sortkey|;
 
2272   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2274   $main::lxdebug->leave_sub();
 
2277 sub _get_customers {
 
2278   $main::lxdebug->enter_sub();
 
2280   my ($self, $dbh, $key) = @_;
 
2282   my $options        = ref $key eq 'HASH' ? $key : { key => $key };
 
2283   $options->{key}  ||= "all_customers";
 
2284   my $limit_clause   = $options->{limit} ? "LIMIT $options->{limit}" : '';
 
2287   push @where, qq|business_id IN (SELECT id FROM business WHERE salesman)| if  $options->{business_is_salesman};
 
2288   push @where, qq|NOT obsolete|                                            if !$options->{with_obsolete};
 
2289   my $where_str = @where ? "WHERE " . join(" AND ", map { "($_)" } @where) : '';
 
2291   my $query = qq|SELECT * FROM customer $where_str ORDER BY name $limit_clause|;
 
2292   $self->{ $options->{key} } = selectall_hashref_query($self, $dbh, $query);
 
2294   $main::lxdebug->leave_sub();
 
2298   $main::lxdebug->enter_sub();
 
2300   my ($self, $dbh, $key) = @_;
 
2302   $key = "all_vendors" unless ($key);
 
2304   my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
 
2306   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2308   $main::lxdebug->leave_sub();
 
2311 sub _get_departments {
 
2312   $main::lxdebug->enter_sub();
 
2314   my ($self, $dbh, $key) = @_;
 
2316   $key = "all_departments" unless ($key);
 
2318   my $query = qq|SELECT * FROM department ORDER BY description|;
 
2320   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2322   $main::lxdebug->leave_sub();
 
2325 sub _get_warehouses {
 
2326   $main::lxdebug->enter_sub();
 
2328   my ($self, $dbh, $param) = @_;
 
2330   my ($key, $bins_key);
 
2332   if ('' eq ref $param) {
 
2336     $key      = $param->{key};
 
2337     $bins_key = $param->{bins};
 
2340   my $query = qq|SELECT w.* FROM warehouse w
 
2341                  WHERE (NOT w.invalid) AND
 
2342                    ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
 
2343                  ORDER BY w.sortkey|;
 
2345   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2348     $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
 
2349                 ORDER BY description|;
 
2350     my $sth = prepare_query($self, $dbh, $query);
 
2352     foreach my $warehouse (@{ $self->{$key} }) {
 
2353       do_statement($self, $sth, $query, $warehouse->{id});
 
2354       $warehouse->{$bins_key} = [];
 
2356       while (my $ref = $sth->fetchrow_hashref()) {
 
2357         push @{ $warehouse->{$bins_key} }, $ref;
 
2363   $main::lxdebug->leave_sub();
 
2367   $main::lxdebug->enter_sub();
 
2369   my ($self, $dbh, $table, $key, $sortkey) = @_;
 
2371   my $query  = qq|SELECT * FROM $table|;
 
2372   $query    .= qq| ORDER BY $sortkey| if ($sortkey);
 
2374   $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2376   $main::lxdebug->leave_sub();
 
2380 #  $main::lxdebug->enter_sub();
 
2382 #  my ($self, $dbh, $key) = @_;
 
2384 #  $key ||= "all_groups";
 
2386 #  my $groups = $main::auth->read_groups();
 
2388 #  $self->{$key} = selectall_hashref_query($self, $dbh, $query);
 
2390 #  $main::lxdebug->leave_sub();
 
2394   $main::lxdebug->enter_sub();
 
2399   my $dbh = $self->get_standard_dbh(\%main::myconfig);
 
2400   my ($sth, $query, $ref);
 
2402   my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
 
2403   my $vc_id = $self->{"${vc}_id"};
 
2405   if ($params{"contacts"}) {
 
2406     $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
 
2409   if ($params{"shipto"}) {
 
2410     $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
 
2413   if ($params{"projects"} || $params{"all_projects"}) {
 
2414     $self->_get_projects($dbh, $params{"all_projects"} ?
 
2415                          $params{"all_projects"} : $params{"projects"},
 
2416                          $params{"all_projects"} ? 1 : 0);
 
2419   if ($params{"printers"}) {
 
2420     $self->_get_printers($dbh, $params{"printers"});
 
2423   if ($params{"languages"}) {
 
2424     $self->_get_languages($dbh, $params{"languages"});
 
2427   if ($params{"charts"}) {
 
2428     $self->_get_charts($dbh, $params{"charts"});
 
2431   if ($params{"taxcharts"}) {
 
2432     $self->_get_taxcharts($dbh, $params{"taxcharts"});
 
2435   if ($params{"taxzones"}) {
 
2436     $self->_get_taxzones($dbh, $params{"taxzones"});
 
2439   if ($params{"employees"}) {
 
2440     $self->_get_employees($dbh, "all_employees", $params{"employees"});
 
2443   if ($params{"salesmen"}) {
 
2444     $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
 
2447   if ($params{"business_types"}) {
 
2448     $self->_get_business_types($dbh, $params{"business_types"});
 
2451   if ($params{"dunning_configs"}) {
 
2452     $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
 
2455   if($params{"currencies"}) {
 
2456     $self->_get_currencies($dbh, $params{"currencies"});
 
2459   if($params{"customers"}) {
 
2460     $self->_get_customers($dbh, $params{"customers"});
 
2463   if($params{"vendors"}) {
 
2464     if (ref $params{"vendors"} eq 'HASH') {
 
2465       $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
 
2467       $self->_get_vendors($dbh, $params{"vendors"});
 
2471   if($params{"payments"}) {
 
2472     $self->_get_payments($dbh, $params{"payments"});
 
2475   if($params{"departments"}) {
 
2476     $self->_get_departments($dbh, $params{"departments"});
 
2479   if ($params{price_factors}) {
 
2480     $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
 
2483   if ($params{warehouses}) {
 
2484     $self->_get_warehouses($dbh, $params{warehouses});
 
2487 #  if ($params{groups}) {
 
2488 #    $self->_get_groups($dbh, $params{groups});
 
2491   if ($params{partsgroup}) {
 
2492     $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
 
2495   $main::lxdebug->leave_sub();
 
2498 # this sub gets the id and name from $table
 
2500   $main::lxdebug->enter_sub();
 
2502   my ($self, $myconfig, $table) = @_;
 
2504   # connect to database
 
2505   my $dbh = $self->get_standard_dbh($myconfig);
 
2507   $table = $table eq "customer" ? "customer" : "vendor";
 
2508   my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
 
2510   my ($query, @values);
 
2512   if (!$self->{openinvoices}) {
 
2514     if ($self->{customernumber} ne "") {
 
2515       $where = qq|(vc.customernumber ILIKE ?)|;
 
2516       push(@values, '%' . $self->{customernumber} . '%');
 
2518       $where = qq|(vc.name ILIKE ?)|;
 
2519       push(@values, '%' . $self->{$table} . '%');
 
2523       qq~SELECT vc.id, vc.name,
 
2524            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2526          WHERE $where AND (NOT vc.obsolete)
 
2530       qq~SELECT DISTINCT vc.id, vc.name,
 
2531            vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
 
2533          JOIN $table vc ON (a.${table}_id = vc.id)
 
2534          WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
 
2536     push(@values, '%' . $self->{$table} . '%');
 
2539   $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
 
2541   $main::lxdebug->leave_sub();
 
2543   return scalar(@{ $self->{name_list} });
 
2546 # the selection sub is used in the AR, AP, IS, IR, DO and OE module
 
2549   $main::lxdebug->enter_sub();
 
2551   my ($self, $myconfig, $table, $module) = @_;
 
2554   my $dbh = $self->get_standard_dbh;
 
2556   $table = $table eq "customer" ? "customer" : "vendor";
 
2558   # build selection list
 
2559   # Hotfix für Bug 1837 - Besser wäre es alte Buchungsbelege
 
2560   # OHNE Auswahlliste (reines Textfeld) zu laden. Hilft aber auch
 
2561   # nicht für veränderbare Belege (oe, do, ...)
 
2562   my $obsolete = "WHERE NOT obsolete" unless $self->{id};
 
2563   my $query = qq|SELECT count(*) FROM $table $obsolete|;
 
2564   my ($count) = selectrow_query($self, $dbh, $query);
 
2566   if ($count < $myconfig->{vclimit}) {
 
2567     $query = qq|SELECT id, name, salesman_id
 
2568                 FROM $table $obsolete
 
2570     $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
 
2574   $self->get_employee($dbh);
 
2576   # setup sales contacts
 
2577   $query = qq|SELECT e.id, e.name
 
2579               WHERE (e.sales = '1') AND (NOT e.id = ?)
 
2581   $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
 
2584   push(@{ $self->{all_employees} },
 
2585        { id   => $self->{employee_id},
 
2586          name => $self->{employee} });
 
2588     # prepare query for departments
 
2589     $query = qq|SELECT id, description
 
2591                 ORDER BY description|;
 
2593   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2596   $query = qq|SELECT id, description
 
2600   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2603   $query = qq|SELECT printer_description, id
 
2605               ORDER BY printer_description|;
 
2607   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2610   $query = qq|SELECT id, description
 
2614   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2616   $main::lxdebug->leave_sub();
 
2619 sub language_payment {
 
2620   $main::lxdebug->enter_sub();
 
2622   my ($self, $myconfig) = @_;
 
2624   my $dbh = $self->get_standard_dbh($myconfig);
 
2626   my $query = qq|SELECT id, description
 
2630   $self->{languages} = selectall_hashref_query($self, $dbh, $query);
 
2633   $query = qq|SELECT printer_description, id
 
2635               ORDER BY printer_description|;
 
2637   $self->{printers} = selectall_hashref_query($self, $dbh, $query);
 
2640   $query = qq|SELECT id, description
 
2644   $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
 
2646   # get buchungsgruppen
 
2647   $query = qq|SELECT id, description
 
2648               FROM buchungsgruppen|;
 
2650   $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
 
2652   $main::lxdebug->leave_sub();
 
2655 # this is only used for reports
 
2656 sub all_departments {
 
2657   $main::lxdebug->enter_sub();
 
2659   my ($self, $myconfig, $table) = @_;
 
2661   my $dbh = $self->get_standard_dbh($myconfig);
 
2663   my $query = qq|SELECT id, description
 
2665                  ORDER BY description|;
 
2666   $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
 
2668   delete($self->{all_departments}) unless (@{ $self->{all_departments} || [] });
 
2670   $main::lxdebug->leave_sub();
 
2674   $main::lxdebug->enter_sub();
 
2676   my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
 
2679   if ($table eq "customer") {
 
2688   $self->all_vc($myconfig, $table, $module);
 
2690   # get last customers or vendors
 
2691   my ($query, $sth, $ref);
 
2693   my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
 
2698     my $transdate = "current_date";
 
2699     if ($self->{transdate}) {
 
2700       $transdate = $dbh->quote($self->{transdate});
 
2703     # now get the account numbers
 
2704 #    $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2705 #                FROM chart c, taxkeys tk
 
2706 #                WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
 
2707 #                  (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
 
2708 #                ORDER BY c.accno|;
 
2710 #  same query as above, but without expensive subquery for each row. about 80% faster
 
2712       SELECT c.accno, c.description, c.link, c.taxkey_id, tk2.tax_id
 
2714         -- find newest entries in taxkeys
 
2716           SELECT chart_id, MAX(startdate) AS startdate
 
2718           WHERE (startdate <= $transdate)
 
2720         ) tk ON (c.id = tk.chart_id)
 
2721         -- and load all of those entries
 
2722         INNER JOIN taxkeys tk2
 
2723            ON (tk.chart_id = tk2.chart_id AND tk.startdate = tk2.startdate)
 
2724        WHERE (c.link LIKE ?)
 
2727     $sth = $dbh->prepare($query);
 
2729     do_statement($self, $sth, $query, '%' . $module . '%');
 
2731     $self->{accounts} = "";
 
2732     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2734       foreach my $key (split(/:/, $ref->{link})) {
 
2735         if ($key =~ /\Q$module\E/) {
 
2737           # cross reference for keys
 
2738           $xkeyref{ $ref->{accno} } = $key;
 
2740           push @{ $self->{"${module}_links"}{$key} },
 
2741             { accno       => $ref->{accno},
 
2742               description => $ref->{description},
 
2743               taxkey      => $ref->{taxkey_id},
 
2744               tax_id      => $ref->{tax_id} };
 
2746           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2752   # get taxkeys and description
 
2753   $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
 
2754   $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
 
2756   if (($module eq "AP") || ($module eq "AR")) {
 
2757     # get tax rates and description
 
2758     $query = qq|SELECT * FROM tax|;
 
2759     $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
 
2765            a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
 
2766            a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
 
2767            a.intnotes, a.department_id, a.amount AS oldinvtotal,
 
2768            a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
 
2771            d.description AS department,
 
2774          JOIN $table c ON (a.${table}_id = c.id)
 
2775          LEFT JOIN employee e ON (e.id = a.employee_id)
 
2776          LEFT JOIN department d ON (d.id = a.department_id)
 
2778     $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
 
2780     foreach my $key (keys %$ref) {
 
2781       $self->{$key} = $ref->{$key};
 
2784     # remove any trailing whitespace
 
2785     $self->{currency} =~ s/\s*$//;
 
2787     my $transdate = "current_date";
 
2788     if ($self->{transdate}) {
 
2789       $transdate = $dbh->quote($self->{transdate});
 
2792     # now get the account numbers
 
2793     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
2795                 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
 
2797                   AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
 
2798                     OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
 
2801     $sth = $dbh->prepare($query);
 
2802     do_statement($self, $sth, $query, "%$module%");
 
2804     $self->{accounts} = "";
 
2805     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2807       foreach my $key (split(/:/, $ref->{link})) {
 
2808         if ($key =~ /\Q$module\E/) {
 
2810           # cross reference for keys
 
2811           $xkeyref{ $ref->{accno} } = $key;
 
2813           push @{ $self->{"${module}_links"}{$key} },
 
2814             { accno       => $ref->{accno},
 
2815               description => $ref->{description},
 
2816               taxkey      => $ref->{taxkey_id},
 
2817               tax_id      => $ref->{tax_id} };
 
2819           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
2825     # get amounts from individual entries
 
2828            c.accno, c.description,
 
2829            a.acc_trans_id, a.source, a.amount, a.memo, a.transdate, a.gldate, a.cleared, a.project_id, a.taxkey,
 
2833          LEFT JOIN chart c ON (c.id = a.chart_id)
 
2834          LEFT JOIN project p ON (p.id = a.project_id)
 
2835          LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
 
2836                                     WHERE (tk.taxkey_id=a.taxkey) AND
 
2837                                       ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
 
2838                                         THEN tk.chart_id = a.chart_id
 
2841                                        OR (c.link='%tax%')) AND
 
2842                                       (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
 
2843          WHERE a.trans_id = ?
 
2844          AND a.fx_transaction = '0'
 
2845          ORDER BY a.acc_trans_id, a.transdate|;
 
2846     $sth = $dbh->prepare($query);
 
2847     do_statement($self, $sth, $query, $self->{id});
 
2849     # get exchangerate for currency
 
2850     $self->{exchangerate} =
 
2851       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2854     # store amounts in {acc_trans}{$key} for multiple accounts
 
2855     while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
2856       $ref->{exchangerate} =
 
2857         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
 
2858       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
2861       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
2862         $ref->{amount} *= -1;
 
2864       $ref->{index} = $index;
 
2866       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
2872            d.curr AS currencies, d.closedto, d.revtrans,
 
2873            (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2874            (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2876     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2877     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2884             current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
 
2885             (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
2886             (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
2888     $ref = selectfirst_hashref_query($self, $dbh, $query);
 
2889     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
2891     if ($self->{"$self->{vc}_id"}) {
 
2893       # only setup currency
 
2894       ($self->{currency}) = split(/:/, $self->{currencies}) if !$self->{currency};
 
2898       $self->lastname_used($dbh, $myconfig, $table, $module);
 
2900       # get exchangerate for currency
 
2901       $self->{exchangerate} =
 
2902         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
 
2908   $main::lxdebug->leave_sub();
 
2912   $main::lxdebug->enter_sub();
 
2914   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
2918   $table         = $table eq "customer" ? "customer" : "vendor";
 
2919   my %column_map = ("a.curr"                  => "currency",
 
2920                     "a.${table}_id"           => "${table}_id",
 
2921                     "a.department_id"         => "department_id",
 
2922                     "d.description"           => "department",
 
2923                     "ct.name"                 => $table,
 
2924                     "ct.curr"                 => "cv_curr",
 
2925                     "current_date + ct.terms" => "duedate",
 
2928   if ($self->{type} =~ /delivery_order/) {
 
2929     $arap  = 'delivery_orders';
 
2930     delete $column_map{"a.curr"};
 
2931     delete $column_map{"ct.curr"};
 
2933   } elsif ($self->{type} =~ /_order/) {
 
2935     $where = "quotation = '0'";
 
2937   } elsif ($self->{type} =~ /_quotation/) {
 
2939     $where = "quotation = '1'";
 
2941   } elsif ($table eq 'customer') {
 
2949   $where           = "($where) AND" if ($where);
 
2950   my $query        = qq|SELECT MAX(id) FROM $arap
 
2951                         WHERE $where ${table}_id > 0|;
 
2952   my ($trans_id)   = selectrow_query($self, $dbh, $query);
 
2955   my $column_spec  = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
 
2956   $query           = qq|SELECT $column_spec
 
2958                         LEFT JOIN $table     ct ON (a.${table}_id = ct.id)
 
2959                         LEFT JOIN department d  ON (a.department_id = d.id)
 
2961   my $ref          = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
 
2963   map { $self->{$_} = $ref->{$_} } values %column_map;
 
2965   # remove any trailing whitespace
 
2966   $self->{currency} =~ s/\s*$// if $self->{currency};
 
2967   $self->{cv_curr} =~ s/\s*$// if $self->{cv_curr};
 
2969   # if customer/vendor currency is set use this
 
2970   $self->{currency} = $self->{cv_curr} if $self->{cv_curr};
 
2972   $main::lxdebug->leave_sub();
 
2976   $main::lxdebug->enter_sub();
 
2979   my $myconfig = shift || \%::myconfig;
 
2980   my ($thisdate, $days) = @_;
 
2982   my $dbh = $self->get_standard_dbh($myconfig);
 
2987     my $dateformat = $myconfig->{dateformat};
 
2988     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
2989     $thisdate = $dbh->quote($thisdate);
 
2990     $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
 
2992     $query = qq|SELECT current_date AS thisdate|;
 
2995   ($thisdate) = selectrow_query($self, $dbh, $query);
 
2997   $main::lxdebug->leave_sub();
 
3003   $main::lxdebug->enter_sub();
 
3005   my ($self, $string) = @_;
 
3007   if ($string !~ /%/) {
 
3008     $string = "%$string%";
 
3011   $string =~ s/\'/\'\'/g;
 
3013   $main::lxdebug->leave_sub();
 
3019   $main::lxdebug->enter_sub();
 
3021   my ($self, $flds, $new, $count, $numrows) = @_;
 
3025   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
 
3030   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
3032     my $j = $item->{ndx} - 1;
 
3033     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
3037   for $i ($count + 1 .. $numrows) {
 
3038     map { delete $self->{"${_}_$i"} } @{$flds};
 
3041   $main::lxdebug->leave_sub();
 
3045   $main::lxdebug->enter_sub();
 
3047   my ($self, $myconfig) = @_;
 
3051   my $dbh = $self->dbconnect_noauto($myconfig);
 
3053   my $query = qq|DELETE FROM status
 
3054                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3055   my $sth = prepare_query($self, $dbh, $query);
 
3057   if ($self->{formname} =~ /(check|receipt)/) {
 
3058     for $i (1 .. $self->{rowcount}) {
 
3059       do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
 
3062     do_statement($self, $sth, $query, $self->{formname}, $self->{id});
 
3066   my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3067   my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3069   my %queued = split / /, $self->{queued};
 
3072   if ($self->{formname} =~ /(check|receipt)/) {
 
3074     # this is a check or receipt, add one entry for each lineitem
 
3075     my ($accno) = split /--/, $self->{account};
 
3076     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
 
3077                 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
 
3078     @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
 
3079     $sth = prepare_query($self, $dbh, $query);
 
3081     for $i (1 .. $self->{rowcount}) {
 
3082       if ($self->{"checked_$i"}) {
 
3083         do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
 
3089     $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3090                 VALUES (?, ?, ?, ?, ?)|;
 
3091     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
 
3092              $queued{$self->{formname}}, $self->{formname});
 
3098   $main::lxdebug->leave_sub();
 
3102   $main::lxdebug->enter_sub();
 
3104   my ($self, $dbh) = @_;
 
3106   my ($query, $printed, $emailed);
 
3108   my $formnames  = $self->{printed};
 
3109   my $emailforms = $self->{emailed};
 
3111   $query = qq|DELETE FROM status
 
3112                  WHERE (formname = ?) AND (trans_id = ?)|;
 
3113   do_query($self, $dbh, $query, $self->{formname}, $self->{id});
 
3115   # this only applies to the forms
 
3116   # checks and receipts are posted when printed or queued
 
3118   if ($self->{queued}) {
 
3119     my %queued = split / /, $self->{queued};
 
3121     foreach my $formname (keys %queued) {
 
3122       $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3123       $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3125       $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
 
3126                   VALUES (?, ?, ?, ?, ?)|;
 
3127       do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
 
3129       $formnames  =~ s/\Q$self->{formname}\E//;
 
3130       $emailforms =~ s/\Q$self->{formname}\E//;
 
3135   # save printed, emailed info
 
3136   $formnames  =~ s/^ +//g;
 
3137   $emailforms =~ s/^ +//g;
 
3140   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
3141   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
3143   foreach my $formname (keys %status) {
 
3144     $printed = ($formnames  =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3145     $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
 
3147     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
3148                 VALUES (?, ?, ?, ?)|;
 
3149     do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
 
3152   $main::lxdebug->leave_sub();
 
3156 # $main::locale->text('SAVED')
 
3157 # $main::locale->text('DELETED')
 
3158 # $main::locale->text('ADDED')
 
3159 # $main::locale->text('PAYMENT POSTED')
 
3160 # $main::locale->text('POSTED')
 
3161 # $main::locale->text('POSTED AS NEW')
 
3162 # $main::locale->text('ELSE')
 
3163 # $main::locale->text('SAVED FOR DUNNING')
 
3164 # $main::locale->text('DUNNING STARTED')
 
3165 # $main::locale->text('PRINTED')
 
3166 # $main::locale->text('MAILED')
 
3167 # $main::locale->text('SCREENED')
 
3168 # $main::locale->text('CANCELED')
 
3169 # $main::locale->text('invoice')
 
3170 # $main::locale->text('proforma')
 
3171 # $main::locale->text('sales_order')
 
3172 # $main::locale->text('pick_list')
 
3173 # $main::locale->text('purchase_order')
 
3174 # $main::locale->text('bin_list')
 
3175 # $main::locale->text('sales_quotation')
 
3176 # $main::locale->text('request_quotation')
 
3179   $main::lxdebug->enter_sub();
 
3182   my $dbh  = shift || $self->get_standard_dbh;
 
3184   if(!exists $self->{employee_id}) {
 
3185     &get_employee($self, $dbh);
 
3189    qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
 
3190    qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
 
3191   my @values = (conv_i($self->{id}), $self->{login},
 
3192                 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
 
3193   do_query($self, $dbh, $query, @values);
 
3197   $main::lxdebug->leave_sub();
 
3201   $main::lxdebug->enter_sub();
 
3203   my ($self, $dbh, $trans_id, $restriction, $order) = @_;
 
3204   my ($orderBy, $desc) = split(/\-\-/, $order);
 
3205   $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
 
3208   if ($trans_id ne "") {
 
3210       qq|SELECT h.employee_id, h.itime::timestamp(0) AS itime, h.addition, h.what_done, emp.name, h.snumbers, h.trans_id AS id | .
 
3211       qq|FROM history_erp h | .
 
3212       qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
 
3213       qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
 
3216     my $sth = $dbh->prepare($query) || $self->dberror($query);
 
3218     $sth->execute() || $self->dberror("$query");
 
3220     while(my $hash_ref = $sth->fetchrow_hashref()) {
 
3221       $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
 
3222       $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
 
3223       $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
 
3224       $tempArray[$i++] = $hash_ref;
 
3226     $main::lxdebug->leave_sub() and return \@tempArray
 
3227       if ($i > 0 && $tempArray[0] ne "");
 
3229   $main::lxdebug->leave_sub();
 
3233 sub update_defaults {
 
3234   $main::lxdebug->enter_sub();
 
3236   my ($self, $myconfig, $fld, $provided_dbh) = @_;
 
3239   if ($provided_dbh) {
 
3240     $dbh = $provided_dbh;
 
3242     $dbh = $self->dbconnect_noauto($myconfig);
 
3244   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
3245   my $sth   = $dbh->prepare($query);
 
3247   $sth->execute || $self->dberror($query);
 
3248   my ($var) = $sth->fetchrow_array;
 
3251   if ($var =~ m/\d+$/) {
 
3252     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3253     my $len_diff = length($var) - $-[0] - length($new_var);
 
3254     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3260   $query = qq|UPDATE defaults SET $fld = ?|;
 
3261   do_query($self, $dbh, $query, $var);
 
3263   if (!$provided_dbh) {
 
3268   $main::lxdebug->leave_sub();
 
3273 sub update_business {
 
3274   $main::lxdebug->enter_sub();
 
3276   my ($self, $myconfig, $business_id, $provided_dbh) = @_;
 
3279   if ($provided_dbh) {
 
3280     $dbh = $provided_dbh;
 
3282     $dbh = $self->dbconnect_noauto($myconfig);
 
3285     qq|SELECT customernumberinit FROM business
 
3286        WHERE id = ? FOR UPDATE|;
 
3287   my ($var) = selectrow_query($self, $dbh, $query, $business_id);
 
3289   return undef unless $var;
 
3291   if ($var =~ m/\d+$/) {
 
3292     my $new_var  = (substr $var, $-[0]) * 1 + 1;
 
3293     my $len_diff = length($var) - $-[0] - length($new_var);
 
3294     $var         = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
 
3300   $query = qq|UPDATE business
 
3301               SET customernumberinit = ?
 
3303   do_query($self, $dbh, $query, $var, $business_id);
 
3305   if (!$provided_dbh) {
 
3310   $main::lxdebug->leave_sub();
 
3315 sub get_partsgroup {
 
3316   $main::lxdebug->enter_sub();
 
3318   my ($self, $myconfig, $p) = @_;
 
3319   my $target = $p->{target} || 'all_partsgroup';
 
3321   my $dbh = $self->get_standard_dbh($myconfig);
 
3323   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
3325                  JOIN parts p ON (p.partsgroup_id = pg.id) |;
 
3328   if ($p->{searchitems} eq 'part') {
 
3329     $query .= qq|WHERE p.inventory_accno_id > 0|;
 
3331   if ($p->{searchitems} eq 'service') {
 
3332     $query .= qq|WHERE p.inventory_accno_id IS NULL|;
 
3334   if ($p->{searchitems} eq 'assembly') {
 
3335     $query .= qq|WHERE p.assembly = '1'|;
 
3337   if ($p->{searchitems} eq 'labor') {
 
3338     $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
 
3341   $query .= qq|ORDER BY partsgroup|;
 
3344     $query = qq|SELECT id, partsgroup FROM partsgroup
 
3345                 ORDER BY partsgroup|;
 
3348   if ($p->{language_code}) {
 
3349     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
3350                   t.description AS translation
 
3352                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
3353                 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
 
3354                 ORDER BY translation|;
 
3355     @values = ($p->{language_code});
 
3358   $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
 
3360   $main::lxdebug->leave_sub();
 
3363 sub get_pricegroup {
 
3364   $main::lxdebug->enter_sub();
 
3366   my ($self, $myconfig, $p) = @_;
 
3368   my $dbh = $self->get_standard_dbh($myconfig);
 
3370   my $query = qq|SELECT p.id, p.pricegroup
 
3373   $query .= qq| ORDER BY pricegroup|;
 
3376     $query = qq|SELECT id, pricegroup FROM pricegroup
 
3377                 ORDER BY pricegroup|;
 
3380   $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
 
3382   $main::lxdebug->leave_sub();
 
3386 # usage $form->all_years($myconfig, [$dbh])
 
3387 # return list of all years where bookings found
 
3390   $main::lxdebug->enter_sub();
 
3392   my ($self, $myconfig, $dbh) = @_;
 
3394   $dbh ||= $self->get_standard_dbh($myconfig);
 
3397   my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
 
3398                    (SELECT MAX(transdate) FROM acc_trans)|;
 
3399   my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
 
3401   if ($myconfig->{dateformat} =~ /^yy/) {
 
3402     ($startdate) = split /\W/, $startdate;
 
3403     ($enddate) = split /\W/, $enddate;
 
3405     (@_) = split /\W/, $startdate;
 
3407     (@_) = split /\W/, $enddate;
 
3412   $startdate = substr($startdate,0,4);
 
3413   $enddate = substr($enddate,0,4);
 
3415   while ($enddate >= $startdate) {
 
3416     push @all_years, $enddate--;
 
3421   $main::lxdebug->leave_sub();
 
3425   $main::lxdebug->enter_sub();
 
3429   map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
 
3431   $main::lxdebug->leave_sub();
 
3435   $main::lxdebug->enter_sub();
 
3440   map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
 
3442   $main::lxdebug->leave_sub();
 
3445 sub prepare_for_printing {
 
3448   $self->{templates} ||= $::myconfig{templates};
 
3449   $self->{formname}  ||= $self->{type};
 
3450   $self->{media}     ||= 'email';
 
3452   die "'media' other than 'email', 'file', 'printer' is not supported yet" unless $self->{media} =~ m/^(?:email|file|printer)$/;
 
3454   # set shipto from billto unless set
 
3455   my $has_shipto = any { $self->{"shipto$_"} } qw(name street zipcode city country contact);
 
3456   if (!$has_shipto && ($self->{type} =~ m/^(?:purchase_order|request_quotation)$/)) {
 
3457     $self->{shiptoname}   = $::myconfig{company};
 
3458     $self->{shiptostreet} = $::myconfig{address};
 
3461   my $language = $self->{language} ? '_' . $self->{language} : '';
 
3463   my ($language_tc, $output_numberformat, $output_dateformat, $output_longdates);
 
3464   if ($self->{language_id}) {
 
3465     ($language_tc, $output_numberformat, $output_dateformat, $output_longdates) = AM->get_language_details(\%::myconfig, $self, $self->{language_id});
 
3467     $output_dateformat   = $::myconfig{dateformat};
 
3468     $output_numberformat = $::myconfig{numberformat};
 
3469     $output_longdates    = 1;
 
3472   # Retrieve accounts for tax calculation.
 
3473   IC->retrieve_accounts(\%::myconfig, $self, map { $_ => $self->{"id_$_"} } 1 .. $self->{rowcount});
 
3475   if ($self->{type} =~ /_delivery_order$/) {
 
3476     DO->order_details();
 
3477   } elsif ($self->{type} =~ /sales_order|sales_quotation|request_quotation|purchase_order/) {
 
3478     OE->order_details(\%::myconfig, $self);
 
3480     IS->invoice_details(\%::myconfig, $self, $::locale);
 
3483   # Chose extension & set source file name
 
3484   my $extension = 'html';
 
3485   if ($self->{format} eq 'postscript') {
 
3486     $self->{postscript}   = 1;
 
3488   } elsif ($self->{"format"} =~ /pdf/) {
 
3490     $extension            = $self->{'format'} =~ m/opendocument/i ? 'odt' : 'tex';
 
3491   } elsif ($self->{"format"} =~ /opendocument/) {
 
3492     $self->{opendocument} = 1;
 
3494   } elsif ($self->{"format"} =~ /excel/) {
 
3499   my $printer_code    = $self->{printer_code} ? '_' . $self->{printer_code} : '';
 
3500   my $email_extension = -f "$::myconfig{templates}/$self->{formname}_email${language}.${extension}" ? '_email' : '';
 
3501   $self->{IN}         = "$self->{formname}${email_extension}${language}${printer_code}.${extension}";
 
3504   $self->format_dates($output_dateformat, $output_longdates,
 
3505                       qw(invdate orddate quodate pldate duedate reqdate transdate shippingdate deliverydate validitydate paymentdate datepaid
 
3506                          transdate_oe deliverydate_oe employee_startdate employee_enddate),
 
3507                       grep({ /^(?:datepaid|transdate_oe|reqdate|deliverydate|deliverydate_oe|transdate)_\d+$/ } keys(%{$self})));
 
3509   $self->reformat_numbers($output_numberformat, 2,
 
3510                           qw(invtotal ordtotal quototal subtotal linetotal listprice sellprice netprice discount tax taxbase total paid),
 
3511                           grep({ /^(?:linetotal|listprice|sellprice|netprice|taxbase|discount|paid|subtotal|total|tax)_\d+$/ } keys(%{$self})));
 
3513   $self->reformat_numbers($output_numberformat, undef, qw(qty price_factor), grep({ /^qty_\d+$/} keys(%{$self})));
 
3515   my ($cvar_date_fields, $cvar_number_fields) = CVar->get_field_format_list('module' => 'CT', 'prefix' => 'vc_');
 
3517   if (scalar @{ $cvar_date_fields }) {
 
3518     $self->format_dates($output_dateformat, $output_longdates, @{ $cvar_date_fields });
 
3521   while (my ($precision, $field_list) = each %{ $cvar_number_fields }) {
 
3522     $self->reformat_numbers($output_numberformat, $precision, @{ $field_list });
 
3529   my ($self, $dateformat, $longformat, @indices) = @_;
 
3531   $dateformat ||= $::myconfig{dateformat};
 
3533   foreach my $idx (@indices) {
 
3534     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3535       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3536         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $dateformat, $longformat);
 
3540     next unless defined $self->{$idx};
 
3542     if (!ref($self->{$idx})) {
 
3543       $self->{$idx} = $::locale->reformat_date(\%::myconfig, $self->{$idx}, $dateformat, $longformat);
 
3545     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3546       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3547         $self->{$idx}->[$i] = $::locale->reformat_date(\%::myconfig, $self->{$idx}->[$i], $dateformat, $longformat);
 
3553 sub reformat_numbers {
 
3554   my ($self, $numberformat, $places, @indices) = @_;
 
3556   return if !$numberformat || ($numberformat eq $::myconfig{numberformat});
 
3558   foreach my $idx (@indices) {
 
3559     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3560       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3561         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i]);
 
3565     next unless defined $self->{$idx};
 
3567     if (!ref($self->{$idx})) {
 
3568       $self->{$idx} = $self->parse_amount(\%::myconfig, $self->{$idx});
 
3570     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3571       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3572         $self->{$idx}->[$i] = $self->parse_amount(\%::myconfig, $self->{$idx}->[$i]);
 
3577   my $saved_numberformat    = $::myconfig{numberformat};
 
3578   $::myconfig{numberformat} = $numberformat;
 
3580   foreach my $idx (@indices) {
 
3581     if ($self->{TEMPLATE_ARRAYS} && (ref($self->{TEMPLATE_ARRAYS}->{$idx}) eq "ARRAY")) {
 
3582       for (my $i = 0; $i < scalar(@{ $self->{TEMPLATE_ARRAYS}->{$idx} }); $i++) {
 
3583         $self->{TEMPLATE_ARRAYS}->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{TEMPLATE_ARRAYS}->{$idx}->[$i], $places);
 
3587     next unless defined $self->{$idx};
 
3589     if (!ref($self->{$idx})) {
 
3590       $self->{$idx} = $self->format_amount(\%::myconfig, $self->{$idx}, $places);
 
3592     } elsif (ref($self->{$idx}) eq "ARRAY") {
 
3593       for (my $i = 0; $i < scalar(@{ $self->{$idx} }); $i++) {
 
3594         $self->{$idx}->[$i] = $self->format_amount(\%::myconfig, $self->{$idx}->[$i], $places);
 
3599   $::myconfig{numberformat} = $saved_numberformat;
 
3608 SL::Form.pm - main data object.
 
3612 This is the main data object of Lx-Office.
 
3613 Unfortunately it also acts as a god object for certain data retrieval procedures used in the entry points.
 
3614 Points of interest for a beginner are:
 
3616  - $form->error            - renders a generic error in html. accepts an error message
 
3617  - $form->get_standard_dbh - returns a database connection for the
 
3619 =head1 SPECIAL FUNCTIONS
 
3621 =head2 C<update_business> PARAMS
 
3624  \%config,     - config hashref
 
3625  $business_id, - business id
 
3626  $dbh          - optional database handle
 
3628 handles business (thats customer/vendor types) sequences.
 
3630 special behaviour for empty strings in customerinitnumber field:
 
3631 will in this case not increase the value, and return undef.
 
3633 =head2 C<redirect_header> $url
 
3635 Generates a HTTP redirection header for the new C<$url>. Constructs an
 
3636 absolute URL including scheme, host name and port. If C<$url> is a
 
3637 relative URL then it is considered relative to Lx-Office base URL.
 
3639 This function C<die>s if headers have already been created with
 
3640 C<$::form-E<gt>header>.
 
3644   print $::form->redirect_header('oe.pl?action=edit&id=1234');
 
3645   print $::form->redirect_header('http://www.lx-office.org/');
 
3649 Generates a general purpose http/html header and includes most of the scripts
 
3650 and stylesheets needed. Stylesheets can be added with L<use_stylesheet>.
 
3652 Only one header will be generated. If the method was already called in this
 
3653 request it will not output anything and return undef. Also if no
 
3654 HTTP_USER_AGENT is found, no header is generated.
 
3656 Although header does not accept parameters itself, it will honor special
 
3657 hashkeys of its Form instance:
 
3665 If one of these is set, a http-equiv refresh is generated. Missing parameters
 
3666 default to 3 seconds and the refering url.
 
3670 Either a scalar or an array ref. Will be inlined into the header. Add
 
3671 stylesheets with the L<use_stylesheet> function.
 
3675 If true, a css snippet will be generated that sets the page in landscape mode.
 
3679 Used to override the default favicon.
 
3683 A html page title will be generated from this