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));
 
 778   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
 780   # OUT is used for the media, screen, printer, email
 
 781   # for postscript we store a copy in a temporary file
 
 783   $self->{tmpfile} = "$userspath/${fileid}.$self->{IN}" if ( $self->{tmpfile} eq '' );
 
 784   if ($template->uses_temp_file() || $self->{media} eq 'email') {
 
 786     $self->{OUT} = ">$self->{tmpfile}";
 
 790     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
 
 792     open(OUT, ">-") or $self->error("STDOUT : $!");
 
 796   if (!$template->parse(*OUT)) {
 
 798     $self->error("$self->{IN} : " . $template->get_error());
 
 804   #print(STDERR Dumper($self));
 
 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;
 
1153   $main::lxdebug->leave_sub();
 
1157 sub check_exchangerate {
 
1158   $main::lxdebug->enter_sub();
 
1160   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1162   unless ($transdate) {
 
1163     $main::lxdebug->leave_sub();
 
1167   my $dbh = $self->dbconnect($myconfig);
 
1169   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1170                  WHERE e.curr = '$currency'
 
1171                  AND e.transdate = '$transdate'|;
 
1172   my $sth = $dbh->prepare($query);
 
1173   $sth->execute || $self->dberror($query);
 
1175   my ($exchangerate) = $sth->fetchrow_array;
 
1179   $main::lxdebug->leave_sub();
 
1181   return $exchangerate;
 
1184 sub get_template_language {
 
1185   $main::lxdebug->enter_sub();
 
1187   my ($self, $myconfig) = @_;
 
1189   my $template_code = "";
 
1191   if ($self->{language_id}) {
 
1193     my $dbh = $self->dbconnect($myconfig);
 
1196     my $query = qq|SELECT l.template_code FROM language l
 
1197                   WHERE l.id = $self->{language_id}|;
 
1198     my $sth = $dbh->prepare($query);
 
1199     $sth->execute || $self->dberror($query);
 
1201     ($template_code) = $sth->fetchrow_array;
 
1206   $main::lxdebug->leave_sub();
 
1208   return $template_code;
 
1211 sub get_printer_code {
 
1212   $main::lxdebug->enter_sub();
 
1214   my ($self, $myconfig) = @_;
 
1216   my $template_code = "";
 
1218   if ($self->{printer_id}) {
 
1220     my $dbh = $self->dbconnect($myconfig);
 
1223     my $query = qq|SELECT p.template_code,p.printer_command FROM printers p
 
1224                   WHERE p.id = $self->{printer_id}|;
 
1225     my $sth = $dbh->prepare($query);
 
1226     $sth->execute || $self->dberror($query);
 
1228     ($template_code, $self->{printer_command}) = $sth->fetchrow_array;
 
1233   $main::lxdebug->leave_sub();
 
1235   return $template_code;
 
1239   $main::lxdebug->enter_sub();
 
1241   my ($self, $myconfig) = @_;
 
1243   my $template_code = "";
 
1245   if ($self->{shipto_id}) {
 
1247     my $dbh = $self->dbconnect($myconfig);
 
1250     my $query = qq|SELECT s.* FROM shipto s
 
1251                   WHERE s.shipto_id = $self->{shipto_id}|;
 
1252     my $sth = $dbh->prepare($query);
 
1253     $sth->execute || $self->dberror($query);
 
1254     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1255     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
1260   $main::lxdebug->leave_sub();
 
1265   $main::lxdebug->enter_sub();
 
1267   my ($self, $dbh, $id, $module) = @_;
 
1271     qw(name department_1 department_2 street zipcode city country contact phone fax email)
 
1273     if ($self->{"shipto$item"}) {
 
1274       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1276     $self->{"shipto$item"} =~ s/\'/\'\'/g;
 
1279     if ($self->{shipto_id}) {
 
1280       my $query = qq| UPDATE shipto set
 
1281                       shiptoname = '$self->{shiptoname}',
 
1282                       shiptodepartment_1 = '$self->{shiptodepartment_1}',
 
1283                       shiptodepartment_2 = '$self->{shiptodepartment_2}',
 
1284                       shiptostreet = '$self->{shiptostreet}',
 
1285                       shiptozipcode = '$self->{shiptozipcode}',
 
1286                       shiptocity = '$self->{shiptocity}',
 
1287                       shiptocountry = '$self->{shiptocountry}',
 
1288                       shiptocontact = '$self->{shiptocontact}',
 
1289                       shiptophone = '$self->{shiptophone}',
 
1290                       shiptofax = '$self->{shiptofax}',
 
1291                       shiptoemail = '$self->{shiptoemail}'
 
1292                       WHERE shipto_id = $self->{shipto_id}|;
 
1293       $dbh->do($query) || $self->dberror($query);
 
1296       qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2, shiptostreet,
 
1297                    shiptozipcode, shiptocity, shiptocountry, shiptocontact,
 
1298                    shiptophone, shiptofax, shiptoemail, module) VALUES ($id,
 
1299                    '$self->{shiptoname}', '$self->{shiptodepartment_1}', '$self->{shiptodepartment_2}', '$self->{shiptostreet}',
 
1300                    '$self->{shiptozipcode}', '$self->{shiptocity}',
 
1301                    '$self->{shiptocountry}', '$self->{shiptocontact}',
 
1302                    '$self->{shiptophone}', '$self->{shiptofax}',
 
1303                    '$self->{shiptoemail}', '$module')|;
 
1304       $dbh->do($query) || $self->dberror($query);
 
1308   $main::lxdebug->leave_sub();
 
1312   $main::lxdebug->enter_sub();
 
1314   my ($self, $dbh) = @_;
 
1316   my $query = qq|SELECT e.id, e.name FROM employee e
 
1317                  WHERE e.login = '$self->{login}'|;
 
1318   my $sth = $dbh->prepare($query);
 
1319   $sth->execute || $self->dberror($query);
 
1321   ($self->{employee_id}, $self->{employee}) = $sth->fetchrow_array;
 
1322   $self->{employee_id} *= 1;
 
1326   $main::lxdebug->leave_sub();
 
1329 # get other contact for transaction and form - html/tex
 
1331   $main::lxdebug->enter_sub();
 
1333   my ($self, $dbh, $id) = @_;
 
1335   my $query = qq|SELECT c.*
 
1338   $sth = $dbh->prepare($query);
 
1339   $sth->execute || $self->dberror($query);
 
1341   $ref = $sth->fetchrow_hashref(NAME_lc);
 
1343   push @{ $self->{$_} }, $ref;
 
1346   $main::lxdebug->leave_sub();
 
1349 # get contacts for id, if no contact return {"","","","",""}
 
1351   $main::lxdebug->enter_sub();
 
1353   my ($self, $dbh, $id) = @_;
 
1355   my $query = qq|SELECT c.cp_id, c.cp_cv_id, c.cp_name, c.cp_givenname, c.cp_abteilung
 
1357               WHERE cp_cv_id=$id|;
 
1358   my $sth = $dbh->prepare($query);
 
1359   $sth->execute || $self->dberror($query);
 
1362   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1363     push @{ $self->{all_contacts} }, $ref;
 
1368     push @{ $self->{all_contacts} }, { { "", "", "", "", "", "" } };
 
1371   $main::lxdebug->leave_sub();
 
1374 # this sub gets the id and name from $table
 
1376   $main::lxdebug->enter_sub();
 
1378   my ($self, $myconfig, $table) = @_;
 
1380   # connect to database
 
1381   my $dbh = $self->dbconnect($myconfig);
 
1383   my $name           = $self->like(lc $self->{$table});
 
1384   my $customernumber = $self->like(lc $self->{customernumber});
 
1386   if ($self->{customernumber} ne "") {
 
1387     $query = qq~SELECT c.id, c.name,
 
1388                   c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1390                   WHERE (lower(c.customernumber) LIKE '$customernumber') AND (not c.obsolete)
 
1393     $query = qq~SELECT c.id, c.name,
 
1394                  c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1396                  WHERE (lower(c.name) LIKE '$name') AND (not c.obsolete)
 
1400   if ($self->{openinvoices}) {
 
1401     $query = qq~SELECT DISTINCT c.id, c.name,
 
1402                 c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1403                 FROM $self->{arap} a
 
1404                 JOIN $table c ON (a.${table}_id = c.id)
 
1405                 WHERE NOT a.amount = a.paid
 
1406                 AND lower(c.name) LIKE '$name'
 
1409   my $sth = $dbh->prepare($query);
 
1411   $sth->execute || $self->dberror($query);
 
1414   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1415     push(@{ $self->{name_list} }, $ref);
 
1421   $main::lxdebug->leave_sub();
 
1426 # the selection sub is used in the AR, AP, IS, IR and OE module
 
1429   $main::lxdebug->enter_sub();
 
1431   my ($self, $myconfig, $table, $module) = @_;
 
1434   my $dbh = $self->dbconnect($myconfig);
 
1436   my $query = qq|SELECT count(*) FROM $table|;
 
1437   my $sth   = $dbh->prepare($query);
 
1438   $sth->execute || $self->dberror($query);
 
1439   my ($count) = $sth->fetchrow_array;
 
1442   # build selection list
 
1443   if ($count < $myconfig->{vclimit}) {
 
1444     $query = qq|SELECT id, name
 
1445                 FROM $table WHERE not obsolete
 
1447     $sth = $dbh->prepare($query);
 
1448     $sth->execute || $self->dberror($query);
 
1450     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1451       push @{ $self->{"all_$table"} }, $ref;
 
1459   $self->get_employee($dbh);
 
1461   # setup sales contacts
 
1462   $query = qq|SELECT e.id, e.name
 
1465               AND NOT e.id = $self->{employee_id}|;
 
1466   $sth = $dbh->prepare($query);
 
1467   $sth->execute || $self->dberror($query);
 
1469   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1470     push @{ $self->{all_employees} }, $ref;
 
1475   push @{ $self->{all_employees} },
 
1476     { id   => $self->{employee_id},
 
1477       name => $self->{employee} };
 
1479   # sort the whole thing
 
1480   @{ $self->{all_employees} } =
 
1481     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
1483   if ($module eq 'AR') {
 
1485     # prepare query for departments
 
1486     $query = qq|SELECT d.id, d.description
 
1492     $query = qq|SELECT d.id, d.description
 
1497   $sth = $dbh->prepare($query);
 
1498   $sth->execute || $self->dberror($query);
 
1500   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1501     push @{ $self->{all_departments} }, $ref;
 
1506   $query = qq|SELECT id, description
 
1509   $sth = $dbh->prepare($query);
 
1510   $sth->execute || $form->dberror($query);
 
1512   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1513     push @{ $self->{languages} }, $ref;
 
1518   $query = qq|SELECT printer_description, id
 
1521   $sth = $dbh->prepare($query);
 
1522   $sth->execute || $form->dberror($query);
 
1524   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1525     push @{ $self->{printers} }, $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->{payment_terms} }, $ref;
 
1542   $main::lxdebug->leave_sub();
 
1546 sub language_payment {
 
1547   $main::lxdebug->enter_sub();
 
1549   my ($self, $myconfig) = @_;
 
1550   undef $self->{languages};
 
1551   undef $self->{payment_terms};
 
1552   undef $self->{printers};
 
1555   my $dbh = $self->dbconnect($myconfig);
 
1557   my $query = qq|SELECT id, description
 
1560   my $sth = $dbh->prepare($query);
 
1561   $sth->execute || $form->dberror($query);
 
1563   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1564     push @{ $self->{languages} }, $ref;
 
1569   $query = qq|SELECT printer_description, id
 
1572   $sth = $dbh->prepare($query);
 
1573   $sth->execute || $form->dberror($query);
 
1575   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1576     push @{ $self->{printers} }, $ref;
 
1581   $query = qq|SELECT id, description
 
1584   $sth = $dbh->prepare($query);
 
1585   $sth->execute || $form->dberror($query);
 
1587   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1588     push @{ $self->{payment_terms} }, $ref;
 
1592   # get buchungsgruppen
 
1593   $query = qq|SELECT id, description
 
1594               FROM buchungsgruppen|;
 
1595   $sth = $dbh->prepare($query);
 
1596   $sth->execute || $form->dberror($query);
 
1598   $self->{BUCHUNGSGRUPPEN} = [];
 
1599   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1600     push @{ $self->{BUCHUNGSGRUPPEN} }, $ref;
 
1605   $main::lxdebug->leave_sub();
 
1608 # this is only used for reports
 
1609 sub all_departments {
 
1610   $main::lxdebug->enter_sub();
 
1612   my ($self, $myconfig, $table) = @_;
 
1614   my $dbh   = $self->dbconnect($myconfig);
 
1615   my $where = "1 = 1";
 
1617   if (defined $table) {
 
1618     if ($table eq 'customer') {
 
1619       $where = " d.role = 'P'";
 
1623   my $query = qq|SELECT d.id, d.description
 
1627   my $sth = $dbh->prepare($query);
 
1628   $sth->execute || $self->dberror($query);
 
1630   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1631     push @{ $self->{all_departments} }, $ref;
 
1637   $main::lxdebug->leave_sub();
 
1641   $main::lxdebug->enter_sub();
 
1643   my ($self, $module, $myconfig, $table) = @_;
 
1645   $self->all_vc($myconfig, $table, $module);
 
1647   # get last customers or vendors
 
1650   my $dbh = $self->dbconnect($myconfig);
 
1655     my $transdate = "current_date";
 
1656     if ($self->{transdate}) {
 
1657       $transdate = qq|'$self->{transdate}'|;
 
1660     # now get the account numbers
 
1661     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
1662                 FROM chart c, taxkeys tk
 
1663                 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)
 
1666     $sth = $dbh->prepare($query);
 
1667     $sth->execute || $self->dberror($query);
 
1669     $self->{accounts} = "";
 
1670     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1672       foreach my $key (split(/:/, $ref->{link})) {
 
1673         if ($key =~ /$module/) {
 
1675           # cross reference for keys
 
1676           $xkeyref{ $ref->{accno} } = $key;
 
1678           push @{ $self->{"${module}_links"}{$key} },
 
1679             { accno       => $ref->{accno},
 
1680               description => $ref->{description},
 
1681               taxkey      => $ref->{taxkey_id},
 
1682               tax_id      => $ref->{tax_id} };
 
1684           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
1690   # get taxkeys and description
 
1691   $query = qq|SELECT id, taxkey, taxdescription
 
1693   $sth = $dbh->prepare($query);
 
1694   $sth->execute || $self->dberror($query);
 
1696   $ref = $sth->fetchrow_hashref(NAME_lc);
 
1698   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1699     push @{ $self->{TAXKEY} }, $ref;
 
1706   $query = qq|SELECT id, description
 
1708   $sth = $dbh->prepare($query);
 
1709   $sth->execute || $form->dberror($query);
 
1712   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1713     push @{ $self->{TAXZONE} }, $ref;
 
1717   if (($module eq "AP") || ($module eq "AR")) {
 
1719     # get tax rates and description
 
1720     $query = qq| SELECT * FROM tax t|;
 
1721     $sth   = $dbh->prepare($query);
 
1722     $sth->execute || $self->dberror($query);
 
1724     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1725       push @{ $self->{TAX} }, $ref;
 
1731     my $arap = ($table eq 'customer') ? 'ar' : 'ap';
 
1733     $query = qq|SELECT a.cp_id, a.invnumber, a.transdate,
 
1734                 a.${table}_id, a.datepaid, a.duedate, a.ordnumber,
 
1735                 a.taxincluded, a.curr AS currency, a.notes, a.intnotes,
 
1736                 c.name AS $table, a.department_id, d.description AS department,
 
1737                 a.amount AS oldinvtotal, a.paid AS oldtotalpaid,
 
1738                 a.employee_id, e.name AS employee, a.gldate, a.type
 
1740                 JOIN $table c ON (a.${table}_id = c.id)
 
1741                 LEFT JOIN employee e ON (e.id = a.employee_id)
 
1742                 LEFT JOIN department d ON (d.id = a.department_id)
 
1743                 WHERE a.id = $self->{id}|;
 
1744     $sth = $dbh->prepare($query);
 
1745     $sth->execute || $self->dberror($query);
 
1747     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1748     foreach $key (keys %$ref) {
 
1749       $self->{$key} = $ref->{$key};
 
1754     my $transdate = "current_date";
 
1755     if ($self->{transdate}) {
 
1756       $transdate = qq|'$self->{transdate}'|;
 
1759     # now get the account numbers
 
1760     $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
 
1761                 FROM chart c, taxkeys tk
 
1762                 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%'))
 
1765     $sth = $dbh->prepare($query);
 
1766     $sth->execute || $self->dberror($query);
 
1768     $self->{accounts} = "";
 
1769     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1771       foreach my $key (split(/:/, $ref->{link})) {
 
1772         if ($key =~ /$module/) {
 
1774           # cross reference for keys
 
1775           $xkeyref{ $ref->{accno} } = $key;
 
1777           push @{ $self->{"${module}_links"}{$key} },
 
1778             { accno       => $ref->{accno},
 
1779               description => $ref->{description},
 
1780               taxkey      => $ref->{taxkey_id},
 
1781               tax_id      => $ref->{tax_id} };
 
1783           $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
1789     # get amounts from individual entries
 
1790     $query = qq|SELECT c.accno, c.description, a.source, a.amount, a.memo,
 
1791                 a.transdate, a.cleared, a.project_id, p.projectnumber, a.taxkey, t.rate, t.id
 
1793                 JOIN chart c ON (c.id = a.chart_id)
 
1794                 LEFT JOIN project p ON (p.id = a.project_id)
 
1795                 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)) 
 
1796                 WHERE a.trans_id = $self->{id}
 
1797                 AND a.fx_transaction = '0'
 
1798                 ORDER BY a.oid,a.transdate|;
 
1799     $sth = $dbh->prepare($query);
 
1800     $sth->execute || $self->dberror($query);
 
1802     my $fld = ($table eq 'customer') ? 'buy' : 'sell';
 
1804     # get exchangerate for currency
 
1805     $self->{exchangerate} =
 
1806       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
 
1810     # store amounts in {acc_trans}{$key} for multiple accounts
 
1811     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1812       $ref->{exchangerate} =
 
1813         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate},
 
1815       if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
 
1818       if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
 
1819         $ref->{amount} *= -1;
 
1821       $ref->{index} = $index;
 
1823       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
1827     $query = qq|SELECT d.curr AS currencies, d.closedto, d.revtrans,
 
1828                   (SELECT c.accno FROM chart c
 
1829                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
1830                   (SELECT c.accno FROM chart c
 
1831                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
1833     $sth = $dbh->prepare($query);
 
1834     $sth->execute || $self->dberror($query);
 
1836     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1837     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
1843     $query = qq|SELECT current_date AS transdate,
 
1844                 d.curr AS currencies, d.closedto, d.revtrans,
 
1845                   (SELECT c.accno FROM chart c
 
1846                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
1847                   (SELECT c.accno FROM chart c
 
1848                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
1850     $sth = $dbh->prepare($query);
 
1851     $sth->execute || $self->dberror($query);
 
1853     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1854     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
1857     if ($self->{"$self->{vc}_id"}) {
 
1859       # only setup currency
 
1860       ($self->{currency}) = split(/:/, $self->{currencies});
 
1864       $self->lastname_used($dbh, $myconfig, $table, $module);
 
1866       my $fld = ($table eq 'customer') ? 'buy' : 'sell';
 
1868       # get exchangerate for currency
 
1869       $self->{exchangerate} =
 
1870         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
 
1881   $main::lxdebug->leave_sub();
 
1885   $main::lxdebug->enter_sub();
 
1887   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
1889   my $arap  = ($table eq 'customer') ? "ar" : "ap";
 
1890   my $where = "1 = 1";
 
1892   if ($self->{type} =~ /_order/) {
 
1894     $where = "quotation = '0'";
 
1896   if ($self->{type} =~ /_quotation/) {
 
1898     $where = "quotation = '1'";
 
1901   my $query = qq|SELECT MAX(id) FROM $arap
 
1903                               AND ${table}_id > 0|;
 
1904   my $sth = $dbh->prepare($query);
 
1905   $sth->execute || $self->dberror($query);
 
1907   my ($trans_id) = $sth->fetchrow_array;
 
1911   $query = qq|SELECT ct.name, a.curr, a.${table}_id,
 
1912               current_date + ct.terms AS duedate, a.department_id,
 
1913               d.description AS department
 
1915               JOIN $table ct ON (a.${table}_id = ct.id)
 
1916               LEFT JOIN department d ON (a.department_id = d.id)
 
1917               WHERE a.id = $trans_id|;
 
1918   $sth = $dbh->prepare($query);
 
1919   $sth->execute || $self->dberror($query);
 
1921   ($self->{$table},  $self->{currency},      $self->{"${table}_id"},
 
1922    $self->{duedate}, $self->{department_id}, $self->{department})
 
1923     = $sth->fetchrow_array;
 
1926   $main::lxdebug->leave_sub();
 
1930   $main::lxdebug->enter_sub();
 
1932   my ($self, $myconfig, $thisdate, $days) = @_;
 
1934   my $dbh = $self->dbconnect($myconfig);
 
1939     my $dateformat = $myconfig->{dateformat};
 
1940     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
1942     $query = qq|SELECT to_date('$thisdate', '$dateformat') + $days AS thisdate
 
1944     $sth = $dbh->prepare($query);
 
1945     $sth->execute || $self->dberror($query);
 
1947     $query = qq|SELECT current_date AS thisdate
 
1949     $sth = $dbh->prepare($query);
 
1950     $sth->execute || $self->dberror($query);
 
1953   ($thisdate) = $sth->fetchrow_array;
 
1958   $main::lxdebug->leave_sub();
 
1964   $main::lxdebug->enter_sub();
 
1966   my ($self, $string) = @_;
 
1968   if ($string !~ /%/) {
 
1969     $string = "%$string%";
 
1972   $string =~ s/\'/\'\'/g;
 
1974   $main::lxdebug->leave_sub();
 
1980   $main::lxdebug->enter_sub();
 
1982   my ($self, $flds, $new, $count, $numrows) = @_;
 
1986   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } }
 
1992   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
1994     $j = $item->{ndx} - 1;
 
1995     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
1999   for $i ($count + 1 .. $numrows) {
 
2000     map { delete $self->{"${_}_$i"} } @{$flds};
 
2003   $main::lxdebug->leave_sub();
 
2007   $main::lxdebug->enter_sub();
 
2009   my ($self, $myconfig) = @_;
 
2013   my $dbh = $self->dbconnect_noauto($myconfig);
 
2015   my $query = qq|DELETE FROM status
 
2016                  WHERE formname = '$self->{formname}'
 
2018   my $sth = $dbh->prepare($query) || $self->dberror($query);
 
2020   if ($self->{formname} =~ /(check|receipt)/) {
 
2021     for $i (1 .. $self->{rowcount}) {
 
2022       $sth->execute($self->{"id_$i"} * 1) || $self->dberror($query);
 
2026     $sth->execute($self->{id}) || $self->dberror($query);
 
2030   my $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
 
2031   my $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
 
2033   my %queued = split / /, $self->{queued};
 
2035   if ($self->{formname} =~ /(check|receipt)/) {
 
2037     # this is a check or receipt, add one entry for each lineitem
 
2038     my ($accno) = split /--/, $self->{account};
 
2039     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname,
 
2040                 chart_id) VALUES (?, '$printed',
 
2041                 '$queued{$self->{formname}}', '$self->{prinform}',
 
2042                 (SELECT c.id FROM chart c WHERE c.accno = '$accno'))|;
 
2043     $sth = $dbh->prepare($query) || $self->dberror($query);
 
2045     for $i (1 .. $self->{rowcount}) {
 
2046       if ($self->{"checked_$i"}) {
 
2047         $sth->execute($self->{"id_$i"}) || $self->dberror($query);
 
2052     $query = qq|INSERT INTO status (trans_id, printed, emailed,
 
2053                 spoolfile, formname)
 
2054                 VALUES ($self->{id}, '$printed', '$emailed',
 
2055                 '$queued{$self->{formname}}', '$self->{formname}')|;
 
2056     $dbh->do($query) || $self->dberror($query);
 
2062   $main::lxdebug->leave_sub();
 
2066   $main::lxdebug->enter_sub();
 
2068   my ($self, $dbh) = @_;
 
2070   my ($query, $printed, $emailed);
 
2072   my $formnames  = $self->{printed};
 
2073   my $emailforms = $self->{emailed};
 
2075   my $query = qq|DELETE FROM status
 
2076                  WHERE formname = '$self->{formname}'
 
2077                  AND trans_id = $self->{id}|;
 
2078   $dbh->do($query) || $self->dberror($query);
 
2080   # this only applies to the forms
 
2081   # checks and receipts are posted when printed or queued
 
2083   if ($self->{queued}) {
 
2084     my %queued = split / /, $self->{queued};
 
2086     foreach my $formname (keys %queued) {
 
2087       $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
 
2088       $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
 
2090       $query = qq|INSERT INTO status (trans_id, printed, emailed,
 
2091                   spoolfile, formname)
 
2092                   VALUES ($self->{id}, '$printed', '$emailed',
 
2093                   '$queued{$formname}', '$formname')|;
 
2094       $dbh->do($query) || $self->dberror($query);
 
2096       $formnames  =~ s/$self->{formname}//;
 
2097       $emailforms =~ s/$self->{formname}//;
 
2102   # save printed, emailed info
 
2103   $formnames  =~ s/^ +//g;
 
2104   $emailforms =~ s/^ +//g;
 
2107   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
2108   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
2110   foreach my $formname (keys %status) {
 
2111     $printed = ($formnames  =~ /$self->{formname}/) ? "1" : "0";
 
2112     $emailed = ($emailforms =~ /$self->{formname}/) ? "1" : "0";
 
2114     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
2115                 VALUES ($self->{id}, '$printed', '$emailed', '$formname')|;
 
2116     $dbh->do($query) || $self->dberror($query);
 
2119   $main::lxdebug->leave_sub();
 
2122 sub update_defaults {
 
2123   $main::lxdebug->enter_sub();
 
2125   my ($self, $myconfig, $fld) = @_;
 
2127   my $dbh   = $self->dbconnect_noauto($myconfig);
 
2128   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
2129   my $sth   = $dbh->prepare($query);
 
2131   $sth->execute || $self->dberror($query);
 
2132   my ($var) = $sth->fetchrow_array;
 
2137   $query = qq|UPDATE defaults
 
2139   $dbh->do($query) || $self->dberror($query);
 
2144   $main::lxdebug->leave_sub();
 
2149 sub update_business {
 
2150   $main::lxdebug->enter_sub();
 
2152   my ($self, $myconfig, $business_id) = @_;
 
2154   my $dbh   = $self->dbconnect_noauto($myconfig);
 
2156     qq|SELECT customernumberinit FROM business  WHERE id=$business_id FOR UPDATE|;
 
2157   my $sth = $dbh->prepare($query);
 
2159   $sth->execute || $self->dberror($query);
 
2160   my ($var) = $sth->fetchrow_array;
 
2165   $query = qq|UPDATE business
 
2166               SET customernumberinit = '$var' WHERE id=$business_id|;
 
2167   $dbh->do($query) || $self->dberror($query);
 
2172   $main::lxdebug->leave_sub();
 
2178   $main::lxdebug->enter_sub();
 
2180   my ($self, $myconfig, $salesman) = @_;
 
2182   my $dbh   = $self->dbconnect($myconfig);
 
2184     qq|SELECT id, name FROM customer  WHERE (customernumber ilike '%$salesman%' OR name ilike '%$salesman%') AND business_id in (SELECT id from business WHERE salesman)|;
 
2185   my $sth = $dbh->prepare($query);
 
2186   $sth->execute || $self->dberror($query);
 
2189   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2190     push(@{ $self->{salesman_list} }, $ref);
 
2194   $main::lxdebug->leave_sub();
 
2199 sub get_partsgroup {
 
2200   $main::lxdebug->enter_sub();
 
2202   my ($self, $myconfig, $p) = @_;
 
2204   my $dbh = $self->dbconnect($myconfig);
 
2206   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
2208                  JOIN parts p ON (p.partsgroup_id = pg.id)|;
 
2210   if ($p->{searchitems} eq 'part') {
 
2212                  WHERE p.inventory_accno_id > 0|;
 
2214   if ($p->{searchitems} eq 'service') {
 
2216                  WHERE p.inventory_accno_id IS NULL|;
 
2218   if ($p->{searchitems} eq 'assembly') {
 
2220                  WHERE p.assembly = '1'|;
 
2222   if ($p->{searchitems} eq 'labor') {
 
2224                  WHERE p.inventory_accno_id > 0 AND p.income_accno_id IS NULL|;
 
2228                  ORDER BY partsgroup|;
 
2231     $query = qq|SELECT id, partsgroup FROM partsgroup
 
2232                 ORDER BY partsgroup|;
 
2235   if ($p->{language_code}) {
 
2236     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
2237                 t.description AS translation
 
2239                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
2240                 LEFT JOIN translation t ON (t.trans_id = pg.id AND t.language_code = '$p->{language_code}')
 
2241                 ORDER BY translation|;
 
2244   my $sth = $dbh->prepare($query);
 
2245   $sth->execute || $self->dberror($query);
 
2247   $self->{all_partsgroup} = ();
 
2248   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2249     push @{ $self->{all_partsgroup} }, $ref;
 
2253   $main::lxdebug->leave_sub();
 
2256 sub get_pricegroup {
 
2257   $main::lxdebug->enter_sub();
 
2259   my ($self, $myconfig, $p) = @_;
 
2261   my $dbh = $self->dbconnect($myconfig);
 
2263   my $query = qq|SELECT p.id, p.pricegroup
 
2267                  ORDER BY pricegroup|;
 
2270     $query = qq|SELECT id, pricegroup FROM pricegroup
 
2271                 ORDER BY pricegroup|;
 
2274   my $sth = $dbh->prepare($query);
 
2275   $sth->execute || $self->dberror($query);
 
2277   $self->{all_pricegroup} = ();
 
2278   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2279     push @{ $self->{all_pricegroup} }, $ref;
 
2284   $main::lxdebug->leave_sub();
 
2288   my ($self, $dbh, $myconfig, $audittrail) = @_;
 
2290   # table, $reference, $formname, $action, $id, $transdate) = @_;
 
2297     $dbh        = $self->dbconnect($myconfig);
 
2301   # if we have an id add audittrail, otherwise get a new timestamp
 
2303   if ($audittrail->{id}) {
 
2305     $query = qq|SELECT audittrail FROM defaults|;
 
2307     if ($dbh->selectrow_array($query)) {
 
2308       my ($null, $employee_id) = $self->get_employee($dbh);
 
2310       if ($self->{audittrail} && !$myconfig) {
 
2311         chop $self->{audittrail};
 
2313         my @a = split /\|/, $self->{audittrail};
 
2317         my @flds = qw(tablename reference formname action transdate);
 
2319         # put into hash and remove dups
 
2321           $key = "$a[2]$a[3]";
 
2323           $newtrail{$key} = { map { $_ => $a[$i++] } @flds };
 
2327         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2328                     formname, action, employee_id, transdate)
 
2329                     VALUES ($audittrail->{id}, ?, ?,
 
2330                     ?, ?, $employee_id, ?)|;
 
2331         my $sth = $dbh->prepare($query) || $self->dberror($query);
 
2335             $newtrail{$a}{transdate} cmp $newtrail{$b}{transdate}
 
2339           for (@flds) { $sth->bind_param($i++, $newtrail{$key}{$_}) }
 
2341           $sth->execute || $self->dberror;
 
2346       if ($audittrail->{transdate}) {
 
2347         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2348                     formname, action, employee_id, transdate) VALUES (
 
2349                     $audittrail->{id}, '$audittrail->{tablename}', |
 
2350           . $dbh->quote($audittrail->{reference}) . qq|,
 
2351                     '$audittrail->{formname}', '$audittrail->{action}',
 
2352                     $employee_id, '$audittrail->{transdate}')|;
 
2354         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2355                     formname, action, employee_id) VALUES ($audittrail->{id},
 
2356                     '$audittrail->{tablename}', |
 
2357           . $dbh->quote($audittrail->{reference}) . qq|,
 
2358                     '$audittrail->{formname}', '$audittrail->{action}',
 
2365     $query = qq|SELECT current_timestamp FROM defaults|;
 
2366     my ($timestamp) = $dbh->selectrow_array($query);
 
2369       "$audittrail->{tablename}|$audittrail->{reference}|$audittrail->{formname}|$audittrail->{action}|$timestamp|";
 
2372   $dbh->disconnect if $disconnect;
 
2381   $main::lxdebug->enter_sub();
 
2383   my ($type, $country, $NLS_file) = @_;
 
2386   if ($country && -d "locale/$country") {
 
2388     $self->{countrycode} = $country;
 
2389     if (open(IN, "locale/$country/$NLS_file")) {
 
2390       my $code = join("", <IN>);
 
2396   $self->{NLS_file} = $NLS_file;
 
2398   push @{ $self->{LONG_MONTH} },
 
2399     ("January",   "February", "March",    "April",
 
2400      "May ",      "June",     "July",     "August",
 
2401      "September", "October",  "November", "December");
 
2402   push @{ $self->{SHORT_MONTH} },
 
2403     (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
 
2405   $main::lxdebug->leave_sub();
 
2411   my ($self, $text) = @_;
 
2413   return (exists $self->{texts}{$text}) ? $self->{texts}{$text} : $text;
 
2417   $main::lxdebug->enter_sub();
 
2419   my ($self, $text) = @_;
 
2421   if (exists $self->{subs}{$text}) {
 
2422     $text = $self->{subs}{$text};
 
2424     if ($self->{countrycode} && $self->{NLS_file}) {
 
2426          "$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
 
2430   $main::lxdebug->leave_sub();
 
2436   $main::lxdebug->enter_sub();
 
2438   my ($self, $myconfig, $date, $longformat) = @_;
 
2441   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
 
2446     $spc = $myconfig->{dateformat};
 
2448     $spc = substr($spc, 1, 1);
 
2450     if ($date =~ /\D/) {
 
2451       if ($myconfig->{dateformat} =~ /^yy/) {
 
2452         ($yy, $mm, $dd) = split /\D/, $date;
 
2454       if ($myconfig->{dateformat} =~ /^mm/) {
 
2455         ($mm, $dd, $yy) = split /\D/, $date;
 
2457       if ($myconfig->{dateformat} =~ /^dd/) {
 
2458         ($dd, $mm, $yy) = split /\D/, $date;
 
2461       $date = substr($date, 2);
 
2462       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
2467     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
2468     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
2470     if ($myconfig->{dateformat} =~ /^dd/) {
 
2471       if (defined $longformat && $longformat == 0) {
 
2473         $dd = "0$dd" if ($dd < 10);
 
2474         $mm = "0$mm" if ($mm < 10);
 
2475         $longdate = "$dd$spc$mm$spc$yy";
 
2478         $longdate .= ($spc eq '.') ? ". " : " ";
 
2479         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
2481     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
 
2483       # Use German syntax with the ISO date style "yyyy-mm-dd" because
 
2484       # Lx-Office is mainly used in Germany or German speaking countries.
 
2485       if (defined $longformat && $longformat == 0) {
 
2487         $dd = "0$dd" if ($dd < 10);
 
2488         $mm = "0$mm" if ($mm < 10);
 
2489         $longdate = "$yy-$mm-$dd";
 
2491         $longdate = "$dd. ";
 
2492         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
2495       if (defined $longformat && $longformat == 0) {
 
2497         $dd = "0$dd" if ($dd < 10);
 
2498         $mm = "0$mm" if ($mm < 10);
 
2499         $longdate = "$mm$spc$dd$spc$yy";
 
2501         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
 
2507   $main::lxdebug->leave_sub();
 
2513   $main::lxdebug->enter_sub();
 
2515   my ($self, $myconfig, $date, $longformat) = @_;
 
2518     $main::lxdebug->leave_sub();
 
2523   $spc = $myconfig->{dateformat};
 
2525   $spc = substr($spc, 1, 1);
 
2527   if ($date =~ /\D/) {
 
2528     if ($myconfig->{dateformat} =~ /^yy/) {
 
2529       ($yy, $mm, $dd) = split /\D/, $date;
 
2530     } elsif ($myconfig->{dateformat} =~ /^mm/) {
 
2531       ($mm, $dd, $yy) = split /\D/, $date;
 
2532     } elsif ($myconfig->{dateformat} =~ /^dd/) {
 
2533       ($dd, $mm, $yy) = split /\D/, $date;
 
2536     $date = substr($date, 2);
 
2537     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
2542   $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
2543   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
2545   $main::lxdebug->leave_sub();
 
2546   return ($yy, $mm, $dd);
 
2550   $main::lxdebug->enter_sub();
 
2552   my ($self, $myconfig, $date, $output_format, $longformat) = @_;
 
2554   $main::lxdebug->leave_sub() and return "" unless ($date);
 
2556   my ($yy, $mm, $dd) = $self->parse_date($myconfig, $date);
 
2558   $output_format =~ /d+/;
 
2559   substr($output_format, $-[0], $+[0] - $-[0]) =
 
2560     sprintf("%0" . (length($&)) . "d", $dd);
 
2562   $output_format =~ /m+/;
 
2563   substr($output_format, $-[0], $+[0] - $-[0]) =
 
2564     sprintf("%0" . (length($&)) . "d", $mm);
 
2566   $output_format =~ /y+/;
 
2567   if (length($&) == 2) {
 
2568     $yy -= $yy >= 2000 ? 2000 : 1900;
 
2570   substr($output_format, $-[0], $+[0] - $-[0]) =
 
2571     sprintf("%0" . (length($&)) . "d", $yy);
 
2573   $main::lxdebug->leave_sub();
 
2575   return $output_format;