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 #======================================================================
 
  49   $main::lxdebug->enter_sub(2);
 
  53   my @pairs = split(/&/, $input);
 
  56     my ($name, $value) = split(/=/, $_, 2);
 
  57     $in{$name} = unescape(undef, $value);
 
  60   $main::lxdebug->leave_sub(2);
 
  65 sub _request_to_hash {
 
  66   $main::lxdebug->enter_sub(2);
 
  69   my ($i,        $loc,  $key,    $val);
 
  70   my (%ATTACH,   $f,    $header, $header_body, $len, $buf);
 
  71   my ($boundary, @list, $size,   $body, $x, $blah, $name);
 
  73   if ($ENV{'CONTENT_TYPE'}
 
  74       && ($ENV{'CONTENT_TYPE'} =~ /multipart\/form-data; boundary=(.+)$/)) {
 
  75     $boundary = quotemeta('--' . $1);
 
  76     @list     = split(/$boundary/, $input);
 
  78     # For some reason there are always 2 extra, that are empty
 
  81     for ($x = 1; $x <= $size; $x++) {
 
  82       $header_body = $list[$x];
 
  83       $header_body =~ /\r\n\r\n|\n\n/;
 
  85       # Here we split the header and body
 
  90       # Now we try to get the file name
 
  92       $name =~ /name=\"(.+)\"/;
 
  93       ($name, $blah) = split(/\"/, $1);
 
  95       # If the form name is not attach, then we need to parse this like
 
  97       if ($name ne "attach") {
 
  98         $body =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
  99         $ATTACH{$name} = $body;
 
 101         # Otherwise it is an attachment and we need to finish it up
 
 102       } elsif ($name eq "attach") {
 
 103         $header =~ /filename=\"(.+)\"/;
 
 104         $ATTACH{'FILE_NAME'} = $1;
 
 105         $ATTACH{'FILE_NAME'} =~ s/\"//g;
 
 106         $ATTACH{'FILE_NAME'} =~ s/\s//g;
 
 107         $ATTACH{'FILE_CONTENT'} = $body;
 
 109         for ($i = $x; $list[$i]; $i++) {
 
 110           $list[$i] =~ s/^.+name=$//;
 
 111           $list[$i] =~ /\"(\w+)\"/;
 
 117     $main::lxdebug->leave_sub(2);
 
 121     $main::lxdebug->leave_sub(2);
 
 122     return _input_to_hash($input);
 
 127   $main::lxdebug->enter_sub();
 
 133   read(STDIN, $_, $ENV{CONTENT_LENGTH});
 
 135   if ($ENV{QUERY_STRING}) {
 
 136     $_ = $ENV{QUERY_STRING};
 
 143   my %parameters = _request_to_hash($_);
 
 144   map({ $self->{$_} = $parameters{$_}; } keys(%parameters));
 
 146   $self->{action} = lc $self->{action};
 
 147   $self->{action} =~ s/( |-|,|\#)/_/g;
 
 149   $self->{version}   = "2.4.0";
 
 151   $main::lxdebug->leave_sub();
 
 157   $main::lxdebug->enter_sub();
 
 163   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 165   $main::lxdebug->leave_sub();
 
 169   $main::lxdebug->enter_sub(2);
 
 171   my ($self, $str, $beenthere) = @_;
 
 173   # for Apache 2 we escape strings twice
 
 174   #if (($ENV{SERVER_SOFTWARE} =~ /Apache\/2/) && !$beenthere) {
 
 175   #  $str = $self->escape($str, 1);
 
 178   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
 
 180   $main::lxdebug->leave_sub(2);
 
 186   $main::lxdebug->enter_sub(2);
 
 188   my ($self, $str) = @_;
 
 193   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
 195   $main::lxdebug->leave_sub(2);
 
 201   my ($self, $str) = @_;
 
 203   if ($str && !ref($str)) {
 
 204     $str =~ s/\"/"/g;
 
 212   my ($self, $str) = @_;
 
 214   if ($str && !ref($str)) {
 
 215     $str =~ s/"/\"/g;
 
 223   $main::lxdebug->enter_sub(2);
 
 225   my ($self, $str) = @_;
 
 228     ('order' => ['"', '<', '>'],
 
 234   map({ $str =~ s/$_/$replace{$_}/g; } @{ $replace{"order"} });
 
 236   $main::lxdebug->leave_sub(2);
 
 246       print qq|<input type=hidden name="$_" value="|
 
 247         . $self->quote($self->{$_})
 
 251     delete $self->{header};
 
 252     for (sort keys %$self) {
 
 253       print qq|<input type=hidden name="$_" value="|
 
 254         . $self->quote($self->{$_})
 
 262   $main::lxdebug->enter_sub();
 
 264   my ($self, $msg) = @_;
 
 265   if ($ENV{HTTP_USER_AGENT}) {
 
 267     $self->show_generic_error($msg);
 
 271     if ($self->{error_function}) {
 
 272       &{ $self->{error_function} }($msg);
 
 278   $main::lxdebug->leave_sub();
 
 282   $main::lxdebug->enter_sub();
 
 284   my ($self, $msg) = @_;
 
 286   if ($ENV{HTTP_USER_AGENT}) {
 
 289     if (!$self->{header}) {
 
 302     if ($self->{info_function}) {
 
 303       &{ $self->{info_function} }($msg);
 
 309   $main::lxdebug->leave_sub();
 
 313   $main::lxdebug->enter_sub();
 
 315   my ($self, $str, $cols, $maxrows) = @_;
 
 319   map { $rows += int(((length) - 2) / $cols) + 1 } split /\r/, $str;
 
 321   $maxrows = $rows unless defined $maxrows;
 
 323   $main::lxdebug->leave_sub();
 
 325   return ($rows > $maxrows) ? $maxrows : $rows;
 
 329   $main::lxdebug->enter_sub();
 
 331   my ($self, $msg) = @_;
 
 333   $self->error("$msg\n" . $DBI::errstr);
 
 335   $main::lxdebug->leave_sub();
 
 339   $main::lxdebug->enter_sub();
 
 341   my ($self, $name, $msg) = @_;
 
 343   if ($self->{$name} =~ /^\s*$/) {
 
 346   $main::lxdebug->leave_sub();
 
 350   $main::lxdebug->enter_sub();
 
 354   if ($self->{header}) {
 
 355     $main::lxdebug->leave_sub();
 
 359   my ($stylesheet, $favicon, $charset);
 
 361   if ($ENV{HTTP_USER_AGENT}) {
 
 363     if ($self->{stylesheet} && (-f "css/$self->{stylesheet}")) {
 
 365         qq|<LINK REL="stylesheet" HREF="css/$self->{stylesheet}" TYPE="text/css" TITLE="Lx-Office stylesheet">
 
 369     if ($self->{favicon} && (-f "$self->{favicon}")) {
 
 371         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
 
 375     if ($self->{charset}) {
 
 377         qq|<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=$self->{charset}">
 
 380     if ($self->{landscape}) {
 
 381       $pagelayout = qq|<style type="text/css">
 
 382                         \@page { size:landscape; }
 
 385     if ($self->{fokus}) {
 
 386       $fokus = qq|<script type="text/javascript">
 
 388 function fokus(){document.$self->{fokus}.focus();}
 
 395     if ($self->{jsscript} == 1) {
 
 398         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
 
 399         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
 
 400         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
 
 401         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
 
 408       ? "$self->{title} - $self->{titlebar}"
 
 411     foreach $item (@ { $self->{AJAX} }) {
 
 412       $ajax .= $item->show_javascript();
 
 414     print qq|Content-Type: text/html
 
 418   <title>$self->{titlebar}</title>
 
 426   <meta name="robots" content="noindex,nofollow" />
 
 427   <script type="text/javascript" src="js/highlight_input.js"></script>
 
 428   <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
 
 430   <script type="text/javascript" src="js/tabcontent.js">
 
 432   /***********************************************
 
 433   * Tab Content script- Â© Dynamic Drive DHTML code library (www.dynamicdrive.com)
 
 434   * This notice MUST stay intact for legal use
 
 435   * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
 
 436   ***********************************************/
 
 446   $main::lxdebug->leave_sub();
 
 449 sub parse_html_template {
 
 450   $main::lxdebug->enter_sub();
 
 452   my ($self, $file, $additional_params) = @_;
 
 455   if (!defined($main::myconfig) || !defined($main::myconfig{"countrycode"})) {
 
 456     $language = $main::language;
 
 458     $language = $main::myconfig{"countrycode"};
 
 461   if (-f "templates/webpages/${file}_${language}.html") {
 
 462     if ((-f ".developer") &&
 
 463         (-f "templates/webpages/${file}_master.html") &&
 
 464         ((stat("templates/webpages/${file}_master.html"))[9] >
 
 465          (stat("templates/webpages/${file}_${language}.html"))[9])) {
 
 466       my $info = "Developper information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
 
 467         "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 468       print(qq|<pre>$info</pre>|);
 
 472     $file = "templates/webpages/${file}_${language}.html";
 
 473   } elsif (-f "templates/webpages/${file}.html") {
 
 474     $file = "templates/webpages/${file}.html";
 
 476     my $info = "Web page template '${file}' not found.\n" .
 
 477       "Please re-run 'locales.pl' in 'locale/${language}'.";
 
 478     print(qq|<pre>$info</pre>|);
 
 482   my $template = HTML::Template->new("filename" => $file,
 
 483                                      "die_on_bad_params" => 0,
 
 485                                      "case_sensitive" => 1,
 
 486                                      "loop_context_vars" => 1,
 
 489   $additional_params = {} unless ($additional_params);
 
 490   if ($self->{"DEBUG"}) {
 
 491     $additional_params->{"DEBUG"} = $self->{"DEBUG"};
 
 494   if ($additional_params->{"DEBUG"}) {
 
 495     $additional_params->{"DEBUG"} =
 
 496       "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
 
 499   if (%main::myconfig) {
 
 500     map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
 
 501     my $jsc_dateformat = $main::myconfig{"dateformat"};
 
 502     $jsc_dateformat =~ s/d+/\%d/gi;
 
 503     $jsc_dateformat =~ s/m+/\%m/gi;
 
 504     $jsc_dateformat =~ s/y+/\%Y/gi;
 
 505     $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
 
 508   $additional_params->{"conf_jscalendar"} = $main::jscalendar;
 
 509   $additional_params->{"conf_lizenzen"} = $main::lizenzen;
 
 510   $additional_params->{"conf_latex_templates"} = $main::latex;
 
 511   $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
 
 513   my @additional_param_names = keys(%{$additional_params});
 
 514   foreach my $key ($template->param()) {
 
 515     my $param = $self->{$key};
 
 516     $param = $additional_params->{$key} if (grep(/^${key}$/, @additional_param_names));
 
 517     $param = [] if (($template->query("name" => $key) eq "LOOP") && (ref($param) ne "ARRAY"));
 
 518     $template->param($key => $param);
 
 521   my $output = $template->output();
 
 523   $main::lxdebug->leave_sub();
 
 528 sub show_generic_error {
 
 529   my ($self, $error, $title, $action) = @_;
 
 532   $add_params->{"title"} = $title if ($title);
 
 533   $self->{"label_error"} = $error;
 
 537     map({ delete($self->{$_}); } qw(action));
 
 538     map({ push(@vars, { "name" => $_, "value" => $self->{$_} })
 
 539             if (!ref($self->{$_})); }
 
 541     $add_params->{"SHOW_BUTTON"} = 1;
 
 542     $add_params->{"BUTTON_LABEL"} = $action;
 
 544   $add_params->{"VARIABLES"} = \@vars;
 
 547   print($self->parse_html_template("generic/error", $add_params));
 
 549   die("Error: $error\n");
 
 552 sub show_generic_information {
 
 553   my ($self, $error, $title) = @_;
 
 556   $add_params->{"title"} = $title if ($title);
 
 557   $self->{"label_information"} = $error;
 
 560   print($self->parse_html_template("generic/information", $add_params));
 
 562   die("Information: $error\n");
 
 565 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
 
 566 # changed it to accept an arbitrary number of triggers - sschoeling
 
 568   $main::lxdebug->enter_sub();
 
 571   my $myconfig = shift;
 
 574   # set dateform for jsscript
 
 576   $ifFormat = "%d.%m.%Y";
 
 577   if ($myconfig->{dateformat} eq "dd.mm.yy") {
 
 578     $ifFormat = "%d.%m.%Y";
 
 580     if ($myconfig->{dateformat} eq "dd-mm-yy") {
 
 581       $ifFormat = "%d-%m-%Y";
 
 583       if ($myconfig->{dateformat} eq "dd/mm/yy") {
 
 584         $ifFormat = "%d/%m/%Y";
 
 586         if ($myconfig->{dateformat} eq "mm/dd/yy") {
 
 587           $ifFormat = "%m/%d/%Y";
 
 589           if ($myconfig->{dateformat} eq "mm-dd-yy") {
 
 590             $ifFormat = "%m-%d-%Y";
 
 592             if ($myconfig->{dateformat} eq "yyyy-mm-dd") {
 
 593               $ifFormat = "%Y-%m-%d";
 
 605       inputField : "| . (shift) . qq|",
 
 606       ifFormat :"$ifFormat",
 
 607       align : "| .  (shift) . qq|", 
 
 608       button : "| . (shift) . qq|"
 
 614        <script type="text/javascript">
 
 615        <!--| . join("", @triggers) . qq|//-->
 
 619   $main::lxdebug->leave_sub();
 
 622 }    #end sub write_trigger
 
 625   $main::lxdebug->enter_sub();
 
 627   my ($self, $msg) = @_;
 
 629   if ($self->{callback}) {
 
 631     ($script, $argv) = split(/\?/, $self->{callback});
 
 632     exec("perl", "$script", $argv);
 
 640   $main::lxdebug->leave_sub();
 
 643 # sort of columns removed - empty sub
 
 645   $main::lxdebug->enter_sub();
 
 647   my ($self, @columns) = @_;
 
 649   $main::lxdebug->leave_sub();
 
 655   $main::lxdebug->enter_sub(2);
 
 657   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 662   my $neg = ($amount =~ s/-//);
 
 664   $amount = $self->round_amount($amount, $places) if ($places =~ /\d/);
 
 666   my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
 
 667   my @p = split(/\./, $amount); # split amount at decimal point
 
 669   $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
 
 672   $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
 
 675     ($dash =~ /-/)    ? ($neg ? "($amount)"  : "$amount" )    :
 
 676     ($dash =~ /DRCR/) ? ($neg ? "$amount DR" : "$amount CR" ) :
 
 677                         ($neg ? "-$amount"   : "$amount" )    ;
 
 681   $main::lxdebug->leave_sub(2);
 
 686   $main::lxdebug->enter_sub(2);
 
 688   my ($self, $myconfig, $amount) = @_;
 
 690   if ($myconfig->{in_numberformat} == 1) {
 
 691     # Extra input number format 1000.00 or 1000,00
 
 693     $amount = scalar reverse $amount;
 
 694     $amount =~ s/\./DOT/;
 
 696     $amount =~ s/DOT/\./;
 
 697     $amount = scalar reverse $amount;
 
 698     $main::lxdebug->leave_sub(2);
 
 699     return ($amount * 1);
 
 702   if (   ($myconfig->{numberformat} eq '1.000,00')
 
 703       || ($myconfig->{numberformat} eq '1000,00')) {
 
 708   if ($myconfig->{numberformat} eq "1'000.00") {
 
 714   $main::lxdebug->leave_sub(2);
 
 716   return ($amount * 1);
 
 720   $main::lxdebug->enter_sub(2);
 
 722   my ($self, $amount, $places) = @_;
 
 725   # Rounding like "Kaufmannsrunden"
 
 726   # Descr. http://de.wikipedia.org/wiki/Rundung
 
 728   # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
 
 731   $amount = $amount * (10**($places));
 
 732   $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
 
 734   $main::lxdebug->leave_sub(2);
 
 736   return $round_amount;
 
 741   $main::lxdebug->enter_sub();
 
 743   my ($self, $myconfig, $userspath) = @_;
 
 746   $self->{"cwd"} = getcwd();
 
 747   $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
 
 749   if ($self->{"format"} =~ /(opendocument|oasis)/i) {
 
 750     $template = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
 751   } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
 
 752     $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
 
 753     $template = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
 754   } elsif (($self->{"format"} =~ /html/i) ||
 
 755            (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
 
 756     $template = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
 757   } elsif (($self->{"format"} =~ /xml/i) ||
 
 758              (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
 
 759     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
 760   } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
 
 761     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);  
 
 762   } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
 
 763     $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
 
 764   } elsif ( defined $self->{'format'}) {
 
 765     $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
 
 766   } elsif ( $self->{'format'} eq '' ) {
 
 767     $self->error("No Outputformat given: $self->{'format'}");
 
 768   } else { #Catch the rest
 
 769     $self->error("Outputformat not defined: $self->{'format'}");  
 
 772   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
 773   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
 775   map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
 
 776       qw(email tel fax name signature company address businessnumber
 
 777          co_ustid taxnumber duns));
 
 778   map({ $self->{"employee_${_}"} =~ s/\\n/\n/g; }
 
 779       qw(company address signature));
 
 781   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
 783   # OUT is used for the media, screen, printer, email
 
 784   # for postscript we store a copy in a temporary file
 
 786   $self->{tmpfile} = "$userspath/${fileid}.$self->{IN}" if ( $self->{tmpfile} eq '' );
 
 787   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
 789     $self->{OUT} = ">$self->{tmpfile}";
 
 793     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
 
 795     open(OUT, ">-") or $self->error("STDOUT : $!");
 
 799   if (!$template->parse(*OUT)) {
 
 801     $self->error("$self->{IN} : " . $template->get_error());
 
 806   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
 808     if ($self->{media} eq 'email') {
 
 812       my $mail = new Mailer;
 
 814       map { $mail->{$_} = $self->{$_} }
 
 815         qw(cc bcc subject message version format charset);
 
 816       $mail->{to}     = qq|$self->{email}|;
 
 817       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
 818       $mail->{fileid} = "$fileid.";
 
 819       $myconfig->{signature} =~ s/\\r\\n/\\n/g;
 
 821       # if we send html or plain text inline
 
 822       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
 823         $mail->{contenttype} = "text/html";
 
 825         $mail->{message}       =~ s/\r\n/<br>\n/g;
 
 826         $myconfig->{signature} =~ s/\\n/<br>\n/g;
 
 827         $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
 
 829         open(IN, $self->{tmpfile})
 
 830           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
 832           $mail->{message} .= $_;
 
 839         @{ $mail->{attachments} } = ($self->{tmpfile}) unless ($form->{do_not_attach});
 
 841         $mail->{message}       =~ s/\r\n/\n/g;
 
 842         $myconfig->{signature} =~ s/\\n/\n/g;
 
 843         $mail->{message} .= "\n-- \n$myconfig->{signature}";
 
 847       my $err = $mail->send($out);
 
 848       $self->error($self->cleanup . "$err") if ($err);
 
 854       my $numbytes = (-s $self->{tmpfile});
 
 855       open(IN, $self->{tmpfile})
 
 856         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
 858       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
 860       chdir("$self->{cwd}");
 
 861       #print(STDERR "Kopien $self->{copies}\n");
 
 862       #print(STDERR "OUT $self->{OUT}\n");
 
 863       for my $i (1 .. $self->{copies}) {
 
 865           open(OUT, $self->{OUT})
 
 866             or $self->error($self->cleanup . "$self->{OUT} : $!");
 
 870           print qq|Content-Type: | . $template->get_mime_type() . qq|
 
 871 Content-Disposition: attachment; filename="$self->{tmpfile}"
 
 872 Content-Length: $numbytes
 
 876           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
 
 896   chdir("$self->{cwd}");
 
 897   $main::lxdebug->leave_sub();
 
 901   $main::lxdebug->enter_sub();
 
 905   chdir("$self->{tmpdir}");
 
 908   if (-f "$self->{tmpfile}.err") {
 
 909     open(FH, "$self->{tmpfile}.err");
 
 914   if ($self->{tmpfile}) {
 
 915     $self->{tmpfile} =~ s|.*/||g;
 
 917     $self->{tmpfile} =~ s/\.\w+$//g;
 
 918     my $tmpfile = $self->{tmpfile};
 
 919     unlink(<$tmpfile.*>);
 
 922   chdir("$self->{cwd}");
 
 924   $main::lxdebug->leave_sub();
 
 930   $main::lxdebug->enter_sub();
 
 932   my ($self, $date, $myconfig) = @_;
 
 934   if ($date && $date =~ /\D/) {
 
 936     if ($myconfig->{dateformat} =~ /^yy/) {
 
 937       ($yy, $mm, $dd) = split /\D/, $date;
 
 939     if ($myconfig->{dateformat} =~ /^mm/) {
 
 940       ($mm, $dd, $yy) = split /\D/, $date;
 
 942     if ($myconfig->{dateformat} =~ /^dd/) {
 
 943       ($dd, $mm, $yy) = split /\D/, $date;
 
 948     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
 949     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
 951     $dd = "0$dd" if ($dd < 10);
 
 952     $mm = "0$mm" if ($mm < 10);
 
 957   $main::lxdebug->leave_sub();
 
 962 # Database routines used throughout
 
 965   $main::lxdebug->enter_sub();
 
 967   my ($self, $myconfig) = @_;
 
 969   # connect to database
 
 971     DBI->connect($myconfig->{dbconnect},
 
 972                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
 
 976   if ($myconfig->{dboptions}) {
 
 977     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
 980   $main::lxdebug->leave_sub();
 
 985 sub dbconnect_noauto {
 
 986   $main::lxdebug->enter_sub();
 
 988   my ($self, $myconfig) = @_;
 
 990   # connect to database
 
 992     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
 
 993                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
 
 997   if ($myconfig->{dboptions}) {
 
 998     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1001   $main::lxdebug->leave_sub();
 
1006 sub update_balance {
 
1007   $main::lxdebug->enter_sub();
 
1009   my ($self, $dbh, $table, $field, $where, $value) = @_;
 
1011   # if we have a value, go do it
 
1014     # retrieve balance from table
 
1015     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1016     my $sth   = $dbh->prepare($query);
 
1018     $sth->execute || $self->dberror($query);
 
1019     my ($balance) = $sth->fetchrow_array;
 
1025     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1026     $dbh->do($query) || $self->dberror($query);
 
1028   $main::lxdebug->leave_sub();
 
1031 sub update_exchangerate {
 
1032   $main::lxdebug->enter_sub();
 
1034   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1036   # some sanity check for currency
 
1038     $main::lxdebug->leave_sub();
 
1042   my $query = qq|SELECT e.curr FROM exchangerate e
 
1043                  WHERE e.curr = '$curr'
 
1044                  AND e.transdate = '$transdate'
 
1046   my $sth = $dbh->prepare($query);
 
1047   $sth->execute || $self->dberror($query);
 
1050   if ($buy != 0 && $sell != 0) {
 
1051     $set = "buy = $buy, sell = $sell";
 
1052   } elsif ($buy != 0) {
 
1053     $set = "buy = $buy";
 
1054   } elsif ($sell != 0) {
 
1055     $set = "sell = $sell";
 
1058   if ($sth->fetchrow_array) {
 
1059     $query = qq|UPDATE exchangerate
 
1061                 WHERE curr = '$curr'
 
1062                 AND transdate = '$transdate'|;
 
1064     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1065                 VALUES ('$curr', $buy, $sell, '$transdate')|;
 
1068   $dbh->do($query) || $self->dberror($query);
 
1070   $main::lxdebug->leave_sub();
 
1073 sub save_exchangerate {
 
1074   $main::lxdebug->enter_sub();
 
1076   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1078   my $dbh = $self->dbconnect($myconfig);
 
1080   my ($buy, $sell) = (0, 0);
 
1081   $buy  = $rate if $fld eq 'buy';
 
1082   $sell = $rate if $fld eq 'sell';
 
1084   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1088   $main::lxdebug->leave_sub();
 
1091 sub get_exchangerate {
 
1092   $main::lxdebug->enter_sub();
 
1094   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1096   unless ($transdate) {
 
1097     $main::lxdebug->leave_sub();
 
1101   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1102                  WHERE e.curr = '$curr'
 
1103                  AND e.transdate = '$transdate'|;
 
1104   my $sth = $dbh->prepare($query);
 
1105   $sth->execute || $self->dberror($query);
 
1107   my ($exchangerate) = $sth->fetchrow_array;
 
1110   if ($exchangerate == 0) {
 
1114   $main::lxdebug->leave_sub();
 
1116   return $exchangerate;
 
1119 sub set_payment_options {
 
1120   $main::lxdebug->enter_sub();
 
1122   my ($self, $myconfig, $transdate) = @_;
 
1124   if ($self->{payment_id}) {
 
1126     my $dbh = $self->dbconnect($myconfig);
 
1129     my $query = qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long FROM payment_terms p
 
1130                   WHERE p.id = $self->{payment_id}|;
 
1131     my $sth = $dbh->prepare($query);
 
1132     $sth->execute || $self->dberror($query);
 
1134     ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto}, $self->{payment_terms}) = $sth->fetchrow_array;
 
1137     my $query = qq|SELECT date '$transdate' + $self->{terms_netto} AS netto_date,date '$transdate' + $self->{terms_skonto} AS skonto_date  FROM payment_terms
 
1139     my $sth = $dbh->prepare($query);
 
1140     $sth->execute || $self->dberror($query);    
 
1141     ($self->{netto_date}, $self->{skonto_date}) = $sth->fetchrow_array;
 
1144     $self->{skonto_amount} = $self->format_amount($myconfig, ($self->parse_amount($myconfig, $self->{subtotal}) * $self->{percent_skonto}), 2);
 
1146     $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
 
1147     $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
 
1148     $self->{payment_terms} =~ s/<%skonto_amount%>/$self->{skonto_amount}/g;
 
1149     $self->{payment_terms} =~ s/<%total%>/$self->{total}/g;
 
1150     $self->{payment_terms} =~ s/<%invtotal%>/$self->{invtotal}/g;
 
1151     $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
 
1152     $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
 
1153     $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
 
1154     $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
 
1155     $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
 
1160   $main::lxdebug->leave_sub();
 
1164 sub check_exchangerate {
 
1165   $main::lxdebug->enter_sub();
 
1167   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1169   unless ($transdate) {
 
1170     $main::lxdebug->leave_sub();
 
1174   my $dbh = $self->dbconnect($myconfig);
 
1176   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1177                  WHERE e.curr = '$currency'
 
1178                  AND e.transdate = '$transdate'|;
 
1179   my $sth = $dbh->prepare($query);
 
1180   $sth->execute || $self->dberror($query);
 
1182   my ($exchangerate) = $sth->fetchrow_array;
 
1186   $main::lxdebug->leave_sub();
 
1188   return $exchangerate;
 
1191 sub get_template_language {
 
1192   $main::lxdebug->enter_sub();
 
1194   my ($self, $myconfig) = @_;
 
1196   my $template_code = "";
 
1198   if ($self->{language_id}) {
 
1200     my $dbh = $self->dbconnect($myconfig);
 
1203     my $query = qq|SELECT l.template_code FROM language l
 
1204                   WHERE l.id = $self->{language_id}|;
 
1205     my $sth = $dbh->prepare($query);
 
1206     $sth->execute || $self->dberror($query);
 
1208     ($template_code) = $sth->fetchrow_array;
 
1213   $main::lxdebug->leave_sub();
 
1215   return $template_code;
 
1218 sub get_printer_code {
 
1219   $main::lxdebug->enter_sub();
 
1221   my ($self, $myconfig) = @_;
 
1223   my $template_code = "";
 
1225   if ($self->{printer_id}) {
 
1227     my $dbh = $self->dbconnect($myconfig);
 
1230     my $query = qq|SELECT p.template_code,p.printer_command FROM printers p
 
1231                   WHERE p.id = $self->{printer_id}|;
 
1232     my $sth = $dbh->prepare($query);
 
1233     $sth->execute || $self->dberror($query);
 
1235     ($template_code, $self->{printer_command}) = $sth->fetchrow_array;
 
1240   $main::lxdebug->leave_sub();
 
1242   return $template_code;
 
1246   $main::lxdebug->enter_sub();
 
1248   my ($self, $myconfig) = @_;
 
1250   my $template_code = "";
 
1252   if ($self->{shipto_id}) {
 
1254     my $dbh = $self->dbconnect($myconfig);
 
1257     my $query = qq|SELECT s.* FROM shipto s
 
1258                   WHERE s.shipto_id = $self->{shipto_id}|;
 
1259     my $sth = $dbh->prepare($query);
 
1260     $sth->execute || $self->dberror($query);
 
1261     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1262     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1267   $main::lxdebug->leave_sub();
 
1272   $main::lxdebug->enter_sub();
 
1274   my ($self, $dbh, $id, $module) = @_;
 
1278     qw(name department_1 department_2 street zipcode city country contact phone fax email)
 
1280     if ($self->{"shipto$item"}) {
 
1281       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1283     $self->{"shipto$item"} =~ s/\'/\'\'/g;
 
1286     if ($self->{shipto_id}) {
 
1287       my $query = qq| UPDATE shipto set
 
1288                       shiptoname = '$self->{shiptoname}',
 
1289                       shiptodepartment_1 = '$self->{shiptodepartment_1}',
 
1290                       shiptodepartment_2 = '$self->{shiptodepartment_2}',
 
1291                       shiptostreet = '$self->{shiptostreet}',
 
1292                       shiptozipcode = '$self->{shiptozipcode}',
 
1293                       shiptocity = '$self->{shiptocity}',
 
1294                       shiptocountry = '$self->{shiptocountry}',
 
1295                       shiptocontact = '$self->{shiptocontact}',
 
1296                       shiptophone = '$self->{shiptophone}',
 
1297                       shiptofax = '$self->{shiptofax}',
 
1298                       shiptoemail = '$self->{shiptoemail}'
 
1299                       WHERE shipto_id = $self->{shipto_id}|;
 
1300       $dbh->do($query) || $self->dberror($query);
 
1303       qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2, shiptostreet,
 
1304                    shiptozipcode, shiptocity, shiptocountry, shiptocontact,
 
1305                    shiptophone, shiptofax, shiptoemail, module) VALUES ($id,
 
1306                    '$self->{shiptoname}', '$self->{shiptodepartment_1}', '$self->{shiptodepartment_2}', '$self->{shiptostreet}',
 
1307                    '$self->{shiptozipcode}', '$self->{shiptocity}',
 
1308                    '$self->{shiptocountry}', '$self->{shiptocontact}',
 
1309                    '$self->{shiptophone}', '$self->{shiptofax}',
 
1310                    '$self->{shiptoemail}', '$module')|;
 
1311       $dbh->do($query) || $self->dberror($query);
 
1315   $main::lxdebug->leave_sub();
 
1319   $main::lxdebug->enter_sub();
 
1321   my ($self, $dbh) = @_;
 
1323   my $query = qq|SELECT e.id, e.name FROM employee e
 
1324                  WHERE e.login = '$self->{login}'|;
 
1325   my $sth = $dbh->prepare($query);
 
1326   $sth->execute || $self->dberror($query);
 
1328   ($self->{employee_id}, $self->{employee}) = $sth->fetchrow_array;
 
1329   $self->{employee_id} *= 1;
 
1333   $main::lxdebug->leave_sub();
 
1337   $main::lxdebug->enter_sub();
 
1339   my ($self, $myconfig) = @_;
 
1341   my $dbh = $self->dbconnect($myconfig);
 
1342   my $query = qq|SELECT current_date+terms_netto FROM payment_terms
 
1343                  WHERE id = '$self->{payment_id}'|;
 
1344   my $sth = $dbh->prepare($query);
 
1345   $sth->execute || $self->dberror($query);
 
1347   ($self->{duedate}) = $sth->fetchrow_array;
 
1351   $main::lxdebug->leave_sub();
 
1354 # get other contact for transaction and form - html/tex
 
1356   $main::lxdebug->enter_sub();
 
1358   my ($self, $dbh, $id) = @_;
 
1360   my $query = qq|SELECT c.*
 
1363   $sth = $dbh->prepare($query);
 
1364   $sth->execute || $self->dberror($query);
 
1366   $ref = $sth->fetchrow_hashref(NAME_lc);
 
1368   push @{ $self->{$_} }, $ref;
 
1371   $main::lxdebug->leave_sub();
 
1374 # get contacts for id, if no contact return {"","","","",""}
 
1376   $main::lxdebug->enter_sub();
 
1378   my ($self, $dbh, $id) = @_;
 
1380   my $query = qq|SELECT c.cp_id, c.cp_cv_id, c.cp_name, c.cp_givenname, c.cp_abteilung
 
1382               WHERE cp_cv_id=$id|;
 
1383   my $sth = $dbh->prepare($query);
 
1384   $sth->execute || $self->dberror($query);
 
1387   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1388     push @{ $self->{all_contacts} }, $ref;
 
1393     push @{ $self->{all_contacts} }, { { "", "", "", "", "", "" } };
 
1396   $main::lxdebug->leave_sub();
 
1399 # this sub gets the id and name from $table
 
1401   $main::lxdebug->enter_sub();
 
1403   my ($self, $myconfig, $table) = @_;
 
1405   # connect to database
 
1406   my $dbh = $self->dbconnect($myconfig);
 
1408   my $name           = $self->like(lc $self->{$table});
 
1409   my $customernumber = $self->like(lc $self->{customernumber});
 
1411   if ($self->{customernumber} ne "") {
 
1412     $query = qq~SELECT c.id, c.name,
 
1413                   c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1415                   WHERE (lower(c.customernumber) LIKE '$customernumber') AND (not c.obsolete)
 
1418     $query = qq~SELECT c.id, c.name,
 
1419                  c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1421                  WHERE (lower(c.name) LIKE '$name') AND (not c.obsolete)
 
1425   if ($self->{openinvoices}) {
 
1426     $query = qq~SELECT DISTINCT c.id, c.name,
 
1427                 c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1428                 FROM $self->{arap} a
 
1429                 JOIN $table c ON (a.${table}_id = c.id)
 
1430                 WHERE NOT a.amount = a.paid
 
1431                 AND lower(c.name) LIKE '$name'
 
1434   my $sth = $dbh->prepare($query);
 
1436   $sth->execute || $self->dberror($query);
 
1439   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1440     push(@{ $self->{name_list} }, $ref);
 
1446   $main::lxdebug->leave_sub();
 
1451 # the selection sub is used in the AR, AP, IS, IR and OE module
 
1454   $main::lxdebug->enter_sub();
 
1456   my ($self, $myconfig, $table, $module) = @_;
 
1459   my $dbh = $self->dbconnect($myconfig);
 
1461   my $query = qq|SELECT count(*) FROM $table|;
 
1462   my $sth   = $dbh->prepare($query);
 
1463   $sth->execute || $self->dberror($query);
 
1464   my ($count) = $sth->fetchrow_array;
 
1467   # build selection list
 
1468   if ($count < $myconfig->{vclimit}) {
 
1469     $query = qq|SELECT id, name
 
1470                 FROM $table WHERE not obsolete
 
1472     $sth = $dbh->prepare($query);
 
1473     $sth->execute || $self->dberror($query);
 
1475     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1476       push @{ $self->{"all_$table"} }, $ref;
 
1484   $self->get_employee($dbh);
 
1486   # setup sales contacts
 
1487   $query = qq|SELECT e.id, e.name
 
1490               AND NOT e.id = $self->{employee_id}|;
 
1491   $sth = $dbh->prepare($query);
 
1492   $sth->execute || $self->dberror($query);
 
1494   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1495     push @{ $self->{all_employees} }, $ref;
 
1500   push @{ $self->{all_employees} },
 
1501     { id   => $self->{employee_id},
 
1502       name => $self->{employee} };
 
1504   # sort the whole thing
 
1505   @{ $self->{all_employees} } =
 
1506     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
1508   if ($module eq 'AR') {
 
1510     # prepare query for departments
 
1511     $query = qq|SELECT d.id, d.description
 
1517     $query = qq|SELECT d.id, d.description
 
1522   $sth = $dbh->prepare($query);
 
1523   $sth->execute || $self->dberror($query);
 
1525   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1526     push @{ $self->{all_departments} }, $ref;
 
1531   $query = qq|SELECT id, description
 
1534   $sth = $dbh->prepare($query);
 
1535   $sth->execute || $form->dberror($query);
 
1537   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1538     push @{ $self->{languages} }, $ref;
 
1543   $query = qq|SELECT printer_description, id
 
1546   $sth = $dbh->prepare($query);
 
1547   $sth->execute || $form->dberror($query);
 
1549   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1550     push @{ $self->{printers} }, $ref;
 
1556   $query = qq|SELECT id, description
 
1559   $sth = $dbh->prepare($query);
 
1560   $sth->execute || $form->dberror($query);
 
1562   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1563     push @{ $self->{payment_terms} }, $ref;
 
1567   $main::lxdebug->leave_sub();
 
1571 sub language_payment {
 
1572   $main::lxdebug->enter_sub();
 
1574   my ($self, $myconfig) = @_;
 
1575   undef $self->{languages};
 
1576   undef $self->{payment_terms};
 
1577   undef $self->{printers};
 
1580   my $dbh = $self->dbconnect($myconfig);
 
1582   my $query = qq|SELECT id, description
 
1585   my $sth = $dbh->prepare($query);
 
1586   $sth->execute || $form->dberror($query);
 
1588   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1589     push @{ $self->{languages} }, $ref;
 
1594   $query = qq|SELECT printer_description, id
 
1597   $sth = $dbh->prepare($query);
 
1598   $sth->execute || $form->dberror($query);
 
1600   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1601     push @{ $self->{printers} }, $ref;
 
1606   $query = qq|SELECT id, description
 
1609   $sth = $dbh->prepare($query);
 
1610   $sth->execute || $form->dberror($query);
 
1612   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1613     push @{ $self->{payment_terms} }, $ref;
 
1617   # get buchungsgruppen
 
1618   $query = qq|SELECT id, description
 
1619               FROM buchungsgruppen|;
 
1620   $sth = $dbh->prepare($query);
 
1621   $sth->execute || $form->dberror($query);
 
1623   $self->{BUCHUNGSGRUPPEN} = [];
 
1624   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1625     push @{ $self->{BUCHUNGSGRUPPEN} }, $ref;
 
1630   $main::lxdebug->leave_sub();
 
1633 # this is only used for reports
 
1634 sub all_departments {
 
1635   $main::lxdebug->enter_sub();
 
1637   my ($self, $myconfig, $table) = @_;
 
1639   my $dbh   = $self->dbconnect($myconfig);
 
1640   my $where = "1 = 1";
 
1642   if (defined $table) {
 
1643     if ($table eq 'customer') {
 
1644       $where = " d.role = 'P'";
 
1648   my $query = qq|SELECT d.id, d.description
 
1652   my $sth = $dbh->prepare($query);
 
1653   $sth->execute || $self->dberror($query);
 
1655   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1656     push @{ $self->{all_departments} }, $ref;
 
1662   $main::lxdebug->leave_sub();
 
1666   $main::lxdebug->enter_sub();
 
1668   my ($self, $module, $myconfig, $table) = @_;
 
1670   $self->all_vc($myconfig, $table, $module);
 
1672   # get last customers or vendors
 
1675   my $dbh = $self->dbconnect($myconfig);
 
1680     my $transdate = "current_date";
 
1681     if ($self->{transdate}) {
 
1682       $transdate = qq|'$self->{transdate}'|;
 
1685     # now get the account numbers
 
1686     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
1687                 FROM chart c, taxkeys tk
 
1688                 WHERE c.link LIKE '%$module%' AND c.id=tk.chart_id AND tk.id = (SELECT id from taxkeys where taxkeys.chart_id =c.id AND startdate<=$transdate ORDER BY startdate desc LIMIT 1)
 
1691     $sth = $dbh->prepare($query);
 
1692     $sth->execute || $self->dberror($query);
 
1694     $self->{accounts} = "";
 
1695     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1697       foreach my $key (split(/:/, $ref->{link})) {
 
1698         if ($key =~ /$module/) {
 
1700           # cross reference for keys
 
1701           $xkeyref{ $ref->{accno} } = $key;
 
1703           push @{ $self->{"${module}_links"}{$key} },
 
1704             { accno       => $ref->{accno},
 
1705               description => $ref->{description},
 
1706               taxkey      => $ref->{taxkey_id},
 
1707               tax_id      => $ref->{tax_id} };
 
1709           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
1715   # get taxkeys and description
 
1716   $query = qq|SELECT id, taxkey, taxdescription
 
1718   $sth = $dbh->prepare($query);
 
1719   $sth->execute || $self->dberror($query);
 
1721   $ref = $sth->fetchrow_hashref(NAME_lc);
 
1723   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1724     push @{ $self->{TAXKEY} }, $ref;
 
1731   $query = qq|SELECT id, description
 
1733   $sth = $dbh->prepare($query);
 
1734   $sth->execute || $form->dberror($query);
 
1737   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1738     push @{ $self->{TAXZONE} }, $ref;
 
1742   if (($module eq "AP") || ($module eq "AR")) {
 
1744     # get tax rates and description
 
1745     $query = qq| SELECT * FROM tax t|;
 
1746     $sth   = $dbh->prepare($query);
 
1747     $sth->execute || $self->dberror($query);
 
1749     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1750       push @{ $self->{TAX} }, $ref;
 
1756     my $arap = ($table eq 'customer') ? 'ar' : 'ap';
 
1758     $query = qq|SELECT a.cp_id, a.invnumber, a.transdate,
 
1759                 a.${table}_id, a.datepaid, a.duedate, a.ordnumber,
 
1760                 a.taxincluded, a.curr AS currency, a.notes, a.intnotes,
 
1761                 c.name AS $table, a.department_id, d.description AS department,
 
1762                 a.amount AS oldinvtotal, a.paid AS oldtotalpaid,
 
1763                 a.employee_id, e.name AS employee, a.gldate, a.type
 
1765                 JOIN $table c ON (a.${table}_id = c.id)
 
1766                 LEFT JOIN employee e ON (e.id = a.employee_id)
 
1767                 LEFT JOIN department d ON (d.id = a.department_id)
 
1768                 WHERE a.id = $self->{id}|;
 
1769     $sth = $dbh->prepare($query);
 
1770     $sth->execute || $self->dberror($query);
 
1772     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1773     foreach $key (keys %$ref) {
 
1774       $self->{$key} = $ref->{$key};
 
1779     my $transdate = "current_date";
 
1780     if ($self->{transdate}) {
 
1781       $transdate = qq|'$self->{transdate}'|;
 
1784     # now get the account numbers
 
1785     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
1786                 FROM chart c, taxkeys tk
 
1787                 WHERE c.link LIKE '%$module%' AND (((tk.chart_id=c.id) AND NOT(c.link like '%_tax%')) OR (NOT(tk.chart_id=c.id) AND (c.link like '%_tax%'))) AND (((tk.id = (SELECT id from taxkeys where taxkeys.chart_id =c.id AND startdate<=$transdate ORDER BY startdate desc LIMIT 1)) AND NOT(c.link like '%_tax%')) OR (c.link like '%_tax%'))
 
1790     $sth = $dbh->prepare($query);
 
1791     $sth->execute || $self->dberror($query);
 
1793     $self->{accounts} = "";
 
1794     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1796       foreach my $key (split(/:/, $ref->{link})) {
 
1797         if ($key =~ /$module/) {
 
1799           # cross reference for keys
 
1800           $xkeyref{ $ref->{accno} } = $key;
 
1802           push @{ $self->{"${module}_links"}{$key} },
 
1803             { accno       => $ref->{accno},
 
1804               description => $ref->{description},
 
1805               taxkey      => $ref->{taxkey_id},
 
1806               tax_id      => $ref->{tax_id} };
 
1808           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
1814     # get amounts from individual entries
 
1815     $query = qq|SELECT c.accno, c.description, a.source, a.amount, a.memo,
 
1816                 a.transdate, a.cleared, a.project_id, p.projectnumber, a.taxkey, t.rate, t.id
 
1818                 JOIN chart c ON (c.id = a.chart_id)
 
1819                 LEFT JOIN project p ON (p.id = a.project_id)
 
1820                 LEFT JOIN tax t ON (t.id=(SELECT tk.tax_id from taxkeys tk WHERE (tk.taxkey_id=a.taxkey) AND ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id=a.taxkey) THEN tk.chart_id=a.chart_id ELSE 1=1 END) OR (c.link='%tax%')) AND startdate <=a.transdate ORDER BY startdate DESC LIMIT 1)) 
 
1821                 WHERE a.trans_id = $self->{id}
 
1822                 AND a.fx_transaction = '0'
 
1823                 ORDER BY a.oid,a.transdate|;
 
1824     $sth = $dbh->prepare($query);
 
1825     $sth->execute || $self->dberror($query);
 
1827     my $fld = ($table eq 'customer') ? 'buy' : 'sell';
 
1829     # get exchangerate for currency
 
1830     $self->{exchangerate} =
 
1831       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
 
1835     # store amounts in {acc_trans}{$key} for multiple accounts
 
1836     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1837       $ref->{exchangerate} =
 
1838         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate},
 
1840       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
1843       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
1844         $ref->{amount} *= -1;
 
1846       $ref->{index} = $index;
 
1848       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
1852     $query = qq|SELECT d.curr AS currencies, d.closedto, d.revtrans,
 
1853                   (SELECT c.accno FROM chart c
 
1854                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
1855                   (SELECT c.accno FROM chart c
 
1856                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
1858     $sth = $dbh->prepare($query);
 
1859     $sth->execute || $self->dberror($query);
 
1861     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1862     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
1868     $query = qq|SELECT current_date AS transdate,
 
1869                 d.curr AS currencies, d.closedto, d.revtrans,
 
1870                   (SELECT c.accno FROM chart c
 
1871                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
1872                   (SELECT c.accno FROM chart c
 
1873                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
1875     $sth = $dbh->prepare($query);
 
1876     $sth->execute || $self->dberror($query);
 
1878     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1879     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
1882     if ($self->{"$self->{vc}_id"}) {
 
1884       # only setup currency
 
1885       ($self->{currency}) = split(/:/, $self->{currencies});
 
1889       $self->lastname_used($dbh, $myconfig, $table, $module);
 
1891       my $fld = ($table eq 'customer') ? 'buy' : 'sell';
 
1893       # get exchangerate for currency
 
1894       $self->{exchangerate} =
 
1895         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
 
1906   $main::lxdebug->leave_sub();
 
1910   $main::lxdebug->enter_sub();
 
1912   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
1914   my $arap  = ($table eq 'customer') ? "ar" : "ap";
 
1915   my $where = "1 = 1";
 
1917   if ($self->{type} =~ /_order/) {
 
1919     $where = "quotation = '0'";
 
1921   if ($self->{type} =~ /_quotation/) {
 
1923     $where = "quotation = '1'";
 
1926   my $query = qq|SELECT MAX(id) FROM $arap
 
1928                               AND ${table}_id > 0|;
 
1929   my $sth = $dbh->prepare($query);
 
1930   $sth->execute || $self->dberror($query);
 
1932   my ($trans_id) = $sth->fetchrow_array;
 
1936   $query = qq|SELECT ct.name, a.curr, a.${table}_id,
 
1937               current_date + ct.terms AS duedate, a.department_id,
 
1938               d.description AS department
 
1940               JOIN $table ct ON (a.${table}_id = ct.id)
 
1941               LEFT JOIN department d ON (a.department_id = d.id)
 
1942               WHERE a.id = $trans_id|;
 
1943   $sth = $dbh->prepare($query);
 
1944   $sth->execute || $self->dberror($query);
 
1946   ($self->{$table},  $self->{currency},      $self->{"${table}_id"},
 
1947    $self->{duedate}, $self->{department_id}, $self->{department})
 
1948     = $sth->fetchrow_array;
 
1951   $main::lxdebug->leave_sub();
 
1955   $main::lxdebug->enter_sub();
 
1957   my ($self, $myconfig, $thisdate, $days) = @_;
 
1959   my $dbh = $self->dbconnect($myconfig);
 
1964     my $dateformat = $myconfig->{dateformat};
 
1965     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
1967     $query = qq|SELECT to_date('$thisdate', '$dateformat') + $days AS thisdate
 
1969     $sth = $dbh->prepare($query);
 
1970     $sth->execute || $self->dberror($query);
 
1972     $query = qq|SELECT current_date AS thisdate
 
1974     $sth = $dbh->prepare($query);
 
1975     $sth->execute || $self->dberror($query);
 
1978   ($thisdate) = $sth->fetchrow_array;
 
1983   $main::lxdebug->leave_sub();
 
1989   $main::lxdebug->enter_sub();
 
1991   my ($self, $string) = @_;
 
1993   if ($string !~ /%/) {
 
1994     $string = "%$string%";
 
1997   $string =~ s/\'/\'\'/g;
 
1999   $main::lxdebug->leave_sub();
 
2005   $main::lxdebug->enter_sub();
 
2007   my ($self, $flds, $new, $count, $numrows) = @_;
 
2011   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } }
 
2017   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
2019     $j = $item->{ndx} - 1;
 
2020     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
2024   for $i ($count + 1 .. $numrows) {
 
2025     map { delete $self->{"${_}_$i"} } @{$flds};
 
2028   $main::lxdebug->leave_sub();
 
2032   $main::lxdebug->enter_sub();
 
2034   my ($self, $myconfig) = @_;
 
2038   my $dbh = $self->dbconnect_noauto($myconfig);
 
2040   my $query = qq|DELETE FROM status
 
2041                  WHERE formname = '$self->{formname}'
 
2043   my $sth = $dbh->prepare($query) || $self->dberror($query);
 
2045   if ($self->{formname} =~ /(check|receipt)/) {
 
2046     for $i (1 .. $self->{rowcount}) {
 
2047       $sth->execute($self->{"id_$i"} * 1) || $self->dberror($query);
 
2051     $sth->execute($self->{id}) || $self->dberror($query);
 
2055   my $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
 
2056   my $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
 
2058   my %queued = split / /, $self->{queued};
 
2060   if ($self->{formname} =~ /(check|receipt)/) {
 
2062     # this is a check or receipt, add one entry for each lineitem
 
2063     my ($accno) = split /--/, $self->{account};
 
2064     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname,
 
2065                 chart_id) VALUES (?, '$printed',
 
2066                 '$queued{$self->{formname}}', '$self->{prinform}',
 
2067                 (SELECT c.id FROM chart c WHERE c.accno = '$accno'))|;
 
2068     $sth = $dbh->prepare($query) || $self->dberror($query);
 
2070     for $i (1 .. $self->{rowcount}) {
 
2071       if ($self->{"checked_$i"}) {
 
2072         $sth->execute($self->{"id_$i"}) || $self->dberror($query);
 
2077     $query = qq|INSERT INTO status (trans_id, printed, emailed,
 
2078                 spoolfile, formname)
 
2079                 VALUES ($self->{id}, '$printed', '$emailed',
 
2080                 '$queued{$self->{formname}}', '$self->{formname}')|;
 
2081     $dbh->do($query) || $self->dberror($query);
 
2087   $main::lxdebug->leave_sub();
 
2091   $main::lxdebug->enter_sub();
 
2093   my ($self, $dbh) = @_;
 
2095   my ($query, $printed, $emailed);
 
2097   my $formnames  = $self->{printed};
 
2098   my $emailforms = $self->{emailed};
 
2100   my $query = qq|DELETE FROM status
 
2101                  WHERE formname = '$self->{formname}'
 
2102                  AND trans_id = $self->{id}|;
 
2103   $dbh->do($query) || $self->dberror($query);
 
2105   # this only applies to the forms
 
2106   # checks and receipts are posted when printed or queued
 
2108   if ($self->{queued}) {
 
2109     my %queued = split / /, $self->{queued};
 
2111     foreach my $formname (keys %queued) {
 
2112       $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
 
2113       $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
 
2115       $query = qq|INSERT INTO status (trans_id, printed, emailed,
 
2116                   spoolfile, formname)
 
2117                   VALUES ($self->{id}, '$printed', '$emailed',
 
2118                   '$queued{$formname}', '$formname')|;
 
2119       $dbh->do($query) || $self->dberror($query);
 
2121       $formnames  =~ s/$self->{formname}//;
 
2122       $emailforms =~ s/$self->{formname}//;
 
2127   # save printed, emailed info
 
2128   $formnames  =~ s/^ +//g;
 
2129   $emailforms =~ s/^ +//g;
 
2132   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
2133   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
2135   foreach my $formname (keys %status) {
 
2136     $printed = ($formnames  =~ /$self->{formname}/) ? "1" : "0";
 
2137     $emailed = ($emailforms =~ /$self->{formname}/) ? "1" : "0";
 
2139     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
2140                 VALUES ($self->{id}, '$printed', '$emailed', '$formname')|;
 
2141     $dbh->do($query) || $self->dberror($query);
 
2144   $main::lxdebug->leave_sub();
 
2147 sub update_defaults {
 
2148   $main::lxdebug->enter_sub();
 
2150   my ($self, $myconfig, $fld) = @_;
 
2152   my $dbh   = $self->dbconnect_noauto($myconfig);
 
2153   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
2154   my $sth   = $dbh->prepare($query);
 
2156   $sth->execute || $self->dberror($query);
 
2157   my ($var) = $sth->fetchrow_array;
 
2162   $query = qq|UPDATE defaults
 
2164   $dbh->do($query) || $self->dberror($query);
 
2169   $main::lxdebug->leave_sub();
 
2174 sub update_business {
 
2175   $main::lxdebug->enter_sub();
 
2177   my ($self, $myconfig, $business_id) = @_;
 
2179   my $dbh   = $self->dbconnect_noauto($myconfig);
 
2181     qq|SELECT customernumberinit FROM business  WHERE id=$business_id FOR UPDATE|;
 
2182   my $sth = $dbh->prepare($query);
 
2184   $sth->execute || $self->dberror($query);
 
2185   my ($var) = $sth->fetchrow_array;
 
2190   $query = qq|UPDATE business
 
2191               SET customernumberinit = '$var' WHERE id=$business_id|;
 
2192   $dbh->do($query) || $self->dberror($query);
 
2197   $main::lxdebug->leave_sub();
 
2203   $main::lxdebug->enter_sub();
 
2205   my ($self, $myconfig, $salesman) = @_;
 
2207   my $dbh   = $self->dbconnect($myconfig);
 
2209     qq|SELECT id, name FROM customer  WHERE (customernumber ilike '%$salesman%' OR name ilike '%$salesman%') AND business_id in (SELECT id from business WHERE salesman)|;
 
2210   my $sth = $dbh->prepare($query);
 
2211   $sth->execute || $self->dberror($query);
 
2214   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2215     push(@{ $self->{salesman_list} }, $ref);
 
2219   $main::lxdebug->leave_sub();
 
2224 sub get_partsgroup {
 
2225   $main::lxdebug->enter_sub();
 
2227   my ($self, $myconfig, $p) = @_;
 
2229   my $dbh = $self->dbconnect($myconfig);
 
2231   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
2233                  JOIN parts p ON (p.partsgroup_id = pg.id)|;
 
2235   if ($p->{searchitems} eq 'part') {
 
2237                  WHERE p.inventory_accno_id > 0|;
 
2239   if ($p->{searchitems} eq 'service') {
 
2241                  WHERE p.inventory_accno_id IS NULL|;
 
2243   if ($p->{searchitems} eq 'assembly') {
 
2245                  WHERE p.assembly = '1'|;
 
2247   if ($p->{searchitems} eq 'labor') {
 
2249                  WHERE p.inventory_accno_id > 0 AND p.income_accno_id IS NULL|;
 
2253                  ORDER BY partsgroup|;
 
2256     $query = qq|SELECT id, partsgroup FROM partsgroup
 
2257                 ORDER BY partsgroup|;
 
2260   if ($p->{language_code}) {
 
2261     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
2262                 t.description AS translation
 
2264                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
2265                 LEFT JOIN translation t ON (t.trans_id = pg.id AND t.language_code = '$p->{language_code}')
 
2266                 ORDER BY translation|;
 
2269   my $sth = $dbh->prepare($query);
 
2270   $sth->execute || $self->dberror($query);
 
2272   $self->{all_partsgroup} = ();
 
2273   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2274     push @{ $self->{all_partsgroup} }, $ref;
 
2278   $main::lxdebug->leave_sub();
 
2281 sub get_pricegroup {
 
2282   $main::lxdebug->enter_sub();
 
2284   my ($self, $myconfig, $p) = @_;
 
2286   my $dbh = $self->dbconnect($myconfig);
 
2288   my $query = qq|SELECT p.id, p.pricegroup
 
2292                  ORDER BY pricegroup|;
 
2295     $query = qq|SELECT id, pricegroup FROM pricegroup
 
2296                 ORDER BY pricegroup|;
 
2299   my $sth = $dbh->prepare($query);
 
2300   $sth->execute || $self->dberror($query);
 
2302   $self->{all_pricegroup} = ();
 
2303   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2304     push @{ $self->{all_pricegroup} }, $ref;
 
2309   $main::lxdebug->leave_sub();
 
2313   my ($self, $dbh, $myconfig, $audittrail) = @_;
 
2315   # table, $reference, $formname, $action, $id, $transdate) = @_;
 
2322     $dbh        = $self->dbconnect($myconfig);
 
2326   # if we have an id add audittrail, otherwise get a new timestamp
 
2328   if ($audittrail->{id}) {
 
2330     $query = qq|SELECT audittrail FROM defaults|;
 
2332     if ($dbh->selectrow_array($query)) {
 
2333       my ($null, $employee_id) = $self->get_employee($dbh);
 
2335       if ($self->{audittrail} && !$myconfig) {
 
2336         chop $self->{audittrail};
 
2338         my @a = split /\|/, $self->{audittrail};
 
2342         my @flds = qw(tablename reference formname action transdate);
 
2344         # put into hash and remove dups
 
2346           $key = "$a[2]$a[3]";
 
2348           $newtrail{$key} = { map { $_ => $a[$i++] } @flds };
 
2352         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2353                     formname, action, employee_id, transdate)
 
2354                     VALUES ($audittrail->{id}, ?, ?,
 
2355                     ?, ?, $employee_id, ?)|;
 
2356         my $sth = $dbh->prepare($query) || $self->dberror($query);
 
2360             $newtrail{$a}{transdate} cmp $newtrail{$b}{transdate}
 
2364           for (@flds) { $sth->bind_param($i++, $newtrail{$key}{$_}) }
 
2366           $sth->execute || $self->dberror;
 
2371       if ($audittrail->{transdate}) {
 
2372         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2373                     formname, action, employee_id, transdate) VALUES (
 
2374                     $audittrail->{id}, '$audittrail->{tablename}', |
 
2375           . $dbh->quote($audittrail->{reference}) . qq|,
 
2376                     '$audittrail->{formname}', '$audittrail->{action}',
 
2377                     $employee_id, '$audittrail->{transdate}')|;
 
2379         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2380                     formname, action, employee_id) VALUES ($audittrail->{id},
 
2381                     '$audittrail->{tablename}', |
 
2382           . $dbh->quote($audittrail->{reference}) . qq|,
 
2383                     '$audittrail->{formname}', '$audittrail->{action}',
 
2390     $query = qq|SELECT current_timestamp FROM defaults|;
 
2391     my ($timestamp) = $dbh->selectrow_array($query);
 
2394       "$audittrail->{tablename}|$audittrail->{reference}|$audittrail->{formname}|$audittrail->{action}|$timestamp|";
 
2397   $dbh->disconnect if $disconnect;
 
2406   $main::lxdebug->enter_sub();
 
2408   my ($type, $country, $NLS_file) = @_;
 
2411   if ($country && -d "locale/$country") {
 
2413     $self->{countrycode} = $country;
 
2414     if (open(IN, "locale/$country/$NLS_file")) {
 
2415       my $code = join("", <IN>);
 
2421   $self->{NLS_file} = $NLS_file;
 
2423   push @{ $self->{LONG_MONTH} },
 
2424     ("January",   "February", "March",    "April",
 
2425      "May ",      "June",     "July",     "August",
 
2426      "September", "October",  "November", "December");
 
2427   push @{ $self->{SHORT_MONTH} },
 
2428     (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
 
2430   $main::lxdebug->leave_sub();
 
2436   my ($self, $text) = @_;
 
2438   return (exists $self->{texts}{$text}) ? $self->{texts}{$text} : $text;
 
2442   $main::lxdebug->enter_sub();
 
2444   my ($self, $text) = @_;
 
2446   if (exists $self->{subs}{$text}) {
 
2447     $text = $self->{subs}{$text};
 
2449     if ($self->{countrycode} && $self->{NLS_file}) {
 
2451          "$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
 
2455   $main::lxdebug->leave_sub();
 
2461   $main::lxdebug->enter_sub();
 
2463   my ($self, $myconfig, $date, $longformat) = @_;
 
2466   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
 
2471     $spc = $myconfig->{dateformat};
 
2473     $spc = substr($spc, 1, 1);
 
2475     if ($date =~ /\D/) {
 
2476       if ($myconfig->{dateformat} =~ /^yy/) {
 
2477         ($yy, $mm, $dd) = split /\D/, $date;
 
2479       if ($myconfig->{dateformat} =~ /^mm/) {
 
2480         ($mm, $dd, $yy) = split /\D/, $date;
 
2482       if ($myconfig->{dateformat} =~ /^dd/) {
 
2483         ($dd, $mm, $yy) = split /\D/, $date;
 
2486       $date = substr($date, 2);
 
2487       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
2492     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
2493     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
2495     if ($myconfig->{dateformat} =~ /^dd/) {
 
2496       if (defined $longformat && $longformat == 0) {
 
2498         $dd = "0$dd" if ($dd < 10);
 
2499         $mm = "0$mm" if ($mm < 10);
 
2500         $longdate = "$dd$spc$mm$spc$yy";
 
2503         $longdate .= ($spc eq '.') ? ". " : " ";
 
2504         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
2506     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
 
2508       # Use German syntax with the ISO date style "yyyy-mm-dd" because
 
2509       # Lx-Office is mainly used in Germany or German speaking countries.
 
2510       if (defined $longformat && $longformat == 0) {
 
2512         $dd = "0$dd" if ($dd < 10);
 
2513         $mm = "0$mm" if ($mm < 10);
 
2514         $longdate = "$yy-$mm-$dd";
 
2516         $longdate = "$dd. ";
 
2517         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
2520       if (defined $longformat && $longformat == 0) {
 
2522         $dd = "0$dd" if ($dd < 10);
 
2523         $mm = "0$mm" if ($mm < 10);
 
2524         $longdate = "$mm$spc$dd$spc$yy";
 
2526         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
 
2532   $main::lxdebug->leave_sub();
 
2538   $main::lxdebug->enter_sub();
 
2540   my ($self, $myconfig, $date, $longformat) = @_;
 
2543     $main::lxdebug->leave_sub();
 
2548   $spc = $myconfig->{dateformat};
 
2550   $spc = substr($spc, 1, 1);
 
2552   if ($date =~ /\D/) {
 
2553     if ($myconfig->{dateformat} =~ /^yy/) {
 
2554       ($yy, $mm, $dd) = split /\D/, $date;
 
2555     } elsif ($myconfig->{dateformat} =~ /^mm/) {
 
2556       ($mm, $dd, $yy) = split /\D/, $date;
 
2557     } elsif ($myconfig->{dateformat} =~ /^dd/) {
 
2558       ($dd, $mm, $yy) = split /\D/, $date;
 
2561     $date = substr($date, 2);
 
2562     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
2567   $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
2568   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
2570   $main::lxdebug->leave_sub();
 
2571   return ($yy, $mm, $dd);
 
2575   $main::lxdebug->enter_sub();
 
2577   my ($self, $myconfig, $date, $output_format, $longformat) = @_;
 
2579   $main::lxdebug->leave_sub() and return "" unless ($date);
 
2581   my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
 
2583   $output_format =~ /d+/;
 
2584   substr($output_format, $-[0], $+[0] - $-[0]) =
 
2585     sprintf("%0" . (length($&)) . "d", $dd);
 
2587   $output_format =~ /m+/;
 
2588   substr($output_format, $-[0], $+[0] - $-[0]) =
 
2589     sprintf("%0" . (length($&)) . "d", $mm);
 
2591   $output_format =~ /y+/;
 
2592   if (length($&) == 2) {
 
2593     $yy -= $yy >= 2000 ? 2000 : 1900;
 
2595   substr($output_format, $-[0], $+[0] - $-[0]) =
 
2596     sprintf("%0" . (length($&)) . "d", $yy);
 
2598   $main::lxdebug->leave_sub();
 
2600   return $output_format;