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 #======================================================================
 
  41   $main::lxdebug->enter_sub();
 
  45   my @pairs = split(/&/, $input);
 
  48     my ($name, $value) = split(/=/, $_, 2);
 
  49     $in{$name} = unescape(undef, $value);
 
  52   $main::lxdebug->leave_sub();
 
  57 sub _request_to_hash {
 
  58   $main::lxdebug->enter_sub();
 
  61   my ($i,        $loc,  $key,    $val);
 
  62   my (%ATTACH,   $f,    $header, $header_body, $len, $buf);
 
  63   my ($boundary, @list, $size,   $body, $x, $blah, $name);
 
  65   if ($ENV{'CONTENT_TYPE'}
 
  66       && ($ENV{'CONTENT_TYPE'} =~ /multipart\/form-data; boundary=(.+)$/)) {
 
  67     $boundary = quotemeta('--' . $1);
 
  68     @list     = split(/$boundary/, $input);
 
  70     # For some reason there are always 2 extra, that are empty
 
  73     for ($x = 1; $x <= $size; $x++) {
 
  74       $header_body = $list[$x];
 
  75       $header_body =~ /\r\n\r\n|\n\n/;
 
  77       # Here we split the header and body
 
  82       # Now we try to get the file name
 
  84       $name =~ /name=\"(.+)\"/;
 
  85       ($name, $blah) = split(/\"/, $1);
 
  87       # If the form name is not attach, then we need to parse this like
 
  89       if ($name ne "attach") {
 
  90         $body =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
  91         $ATTACH{$name} = $body;
 
  93         # Otherwise it is an attachment and we need to finish it up
 
  94       } elsif ($name eq "attach") {
 
  95         $header =~ /filename=\"(.+)\"/;
 
  96         $ATTACH{'FILE_NAME'} = $1;
 
  97         $ATTACH{'FILE_NAME'} =~ s/\"//g;
 
  98         $ATTACH{'FILE_NAME'} =~ s/\s//g;
 
  99         $ATTACH{'FILE_CONTENT'} = $body;
 
 101         for ($i = $x; $list[$i]; $i++) {
 
 102           $list[$i] =~ s/^.+name=$//;
 
 103           $list[$i] =~ /\"(\w+)\"/;
 
 109     $main::lxdebug->leave_sub();
 
 113     $main::lxdebug->leave_sub();
 
 114     return _input_to_hash($input);
 
 119   $main::lxdebug->enter_sub();
 
 125   read(STDIN, $_, $ENV{CONTENT_LENGTH});
 
 127   if ($ENV{QUERY_STRING}) {
 
 128     $_ = $ENV{QUERY_STRING};
 
 135   my %parameters = _request_to_hash($_);
 
 136   map({ $self->{$_} = $parameters{$_}; } keys(%parameters));
 
 138   $self->{menubar} = 1 if $self->{path} =~ /lynx/i;
 
 140   $self->{action} = lc $self->{action};
 
 141   $self->{action} =~ s/( |-|,|#)/_/g;
 
 143   $self->{version}   = "2.1.2";
 
 144   $self->{dbversion} = "2.1.2";
 
 146   $main::lxdebug->leave_sub();
 
 152   $main::lxdebug->enter_sub();
 
 158   map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
 
 160   $main::lxdebug->leave_sub();
 
 164   $main::lxdebug->enter_sub();
 
 166   my ($self, $str, $beenthere) = @_;
 
 168   # for Apache 2 we escape strings twice
 
 169   #if (($ENV{SERVER_SOFTWARE} =~ /Apache\/2/) && !$beenthere) {
 
 170   #  $str = $self->escape($str, 1);
 
 173   $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
 
 175   $main::lxdebug->leave_sub();
 
 181   $main::lxdebug->enter_sub();
 
 183   my ($self, $str) = @_;
 
 188   $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
 
 190   $main::lxdebug->leave_sub();
 
 196   my ($self, $str) = @_;
 
 198   if ($str && ! ref($str)) {
 
 199     $str =~ s/"/"/g;
 
 208   my ($self, $str) = @_;
 
 210   if ($str && ! ref($str)) {
 
 211     $str =~ s/"/"/g;
 
 223     for (@_) { print qq|<input type=hidden name="$_" value="|.$self->quote($self->{$_}).qq|">\n| }
 
 225     delete $self->{header};
 
 226     for (sort keys %$self) { print qq|<input type=hidden name="$_" value="|.$self->quote($self->{$_}).qq|">\n| }
 
 232   $main::lxdebug->enter_sub();
 
 234   my ($self, $msg) = @_;
 
 236   if ($ENV{HTTP_USER_AGENT}) {
 
 244     <h2 class=error>Error!</h2>
 
 256     if ($self->{error_function}) {
 
 257       &{ $self->{error_function} }($msg);
 
 263   $main::lxdebug->leave_sub();
 
 267   $main::lxdebug->enter_sub();
 
 269   my ($self, $msg) = @_;
 
 271   if ($ENV{HTTP_USER_AGENT}) {
 
 274     if (!$self->{header}) {
 
 287     if ($self->{info_function}) {
 
 288       &{ $self->{info_function} }($msg);
 
 294   $main::lxdebug->leave_sub();
 
 298   $main::lxdebug->enter_sub();
 
 300   my ($self, $str, $cols, $maxrows) = @_;
 
 304   map { $rows += int(((length) - 2) / $cols) + 1 } split /\r/, $str;
 
 306   $maxrows = $rows unless defined $maxrows;
 
 308   $main::lxdebug->leave_sub();
 
 310   return ($rows > $maxrows) ? $maxrows : $rows;
 
 314   $main::lxdebug->enter_sub();
 
 316   my ($self, $msg) = @_;
 
 318   $self->error("$msg\n" . $DBI::errstr);
 
 320   $main::lxdebug->leave_sub();
 
 324   $main::lxdebug->enter_sub();
 
 326   my ($self, $name, $msg) = @_;
 
 328   if ($self->{$name} =~ /^\s*$/) {
 
 331   $main::lxdebug->leave_sub();
 
 335   $main::lxdebug->enter_sub();
 
 339   if ($self->{header}) {
 
 340     $main::lxdebug->leave_sub();
 
 344   my ($stylesheet, $favicon, $charset);
 
 346   if ($ENV{HTTP_USER_AGENT}) {
 
 348     if ($self->{stylesheet} && (-f "css/$self->{stylesheet}")) {
 
 350         qq|<LINK REL="stylesheet" HREF="css/$self->{stylesheet}" TYPE="text/css" TITLE="Lx-Office stylesheet">
 
 354     if ($self->{favicon} && (-f "$self->{favicon}")) {
 
 356         qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
 
 360     if ($self->{charset}) {
 
 362         qq|<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=$self->{charset}">
 
 365     if ($self->{landscape}) {
 
 366       $pagelayout = qq|<style type="text/css">
 
 367                         \@page { size:landscape; }
 
 370     if ($self->{fokus}) {
 
 371       $fokus = qq|<script type="text/javascript">
 
 373 function fokus(){document.$self->{fokus}.focus();}
 
 380     if ($self->{jsscript} == 1) {
 
 383         <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
 
 384         <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
 
 385         <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
 
 386         <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
 
 393       ? "$self->{title} - $self->{titlebar}"
 
 396     print qq|Content-Type: text/html
 
 399   <title>$self->{titlebar}</title>
 
 412   $main::lxdebug->leave_sub();
 
 415 # write Trigger JavaScript-Code ($qty = 1 - only one Trigger)
 
 417   $main::lxdebug->enter_sub();
 
 419   my ($self,         $myconfig, $qty,
 
 420       $inputField_1, $align_1,  $button_1,
 
 421       $inputField_2, $align_2,  $button_2)
 
 424   # set dateform for jsscript
 
 426   $ifFormat = "%d.%m.%Y";
 
 427   if ($myconfig->{dateformat} eq "dd.mm.yy") {
 
 428     $ifFormat = "%d.%m.%Y";
 
 430     if ($myconfig->{dateformat} eq "dd-mm-yy") {
 
 431       $ifFormat = "%d-%m-%Y";
 
 433       if ($myconfig->{dateformat} eq "dd/mm/yy") {
 
 434         $ifFormat = "%d/%m/%Y";
 
 436         if ($myconfig->{dateformat} eq "mm/dd/yy") {
 
 437           $ifFormat = "%m/%d/%Y";
 
 439           if ($myconfig->{dateformat} eq "mm-dd-yy") {
 
 440             $ifFormat = "%m-%d-%Y";
 
 442             if ($myconfig->{dateformat} eq "yyyy-mm-dd") {
 
 443               $ifFormat = "%Y-%m-%d";
 
 454       inputField : "$inputField_1",
 
 455       ifFormat :"$ifFormat",
 
 466       inputField : "$inputField_2",
 
 467       ifFormat :"$ifFormat",
 
 475        <script type="text/javascript">
 
 483   $main::lxdebug->leave_sub();
 
 486 }    #end sub write_trigger
 
 489   $main::lxdebug->enter_sub();
 
 491   my ($self, $msg) = @_;
 
 493   if ($self->{callback}) {
 
 495     ($script, $argv) = split(/\?/, $self->{callback});
 
 496     exec("perl", "$script", $argv);
 
 504   $main::lxdebug->leave_sub();
 
 507 # sort of columns removed - empty sub
 
 509   $main::lxdebug->enter_sub();
 
 511   my ($self, @columns) = @_;
 
 513   $main::lxdebug->leave_sub();
 
 519   $main::lxdebug->enter_sub();
 
 521   my ($self, $myconfig, $amount, $places, $dash) = @_;
 
 523   if ($places =~ /\d/) {
 
 524     $amount = $self->round_amount($amount, $places);
 
 527   # is the amount negative
 
 528   my $negative = ($amount < 0);
 
 532     if ($myconfig->{numberformat} && ($myconfig->{numberformat} ne '1000.00'))
 
 534       my ($whole, $dec) = split /\./, "$amount";
 
 536       $amount = join '', reverse split //, $whole;
 
 537       $fillup = "0" x ($places - length($dec));
 
 539       if ($myconfig->{numberformat} eq '1,000.00') {
 
 540         $amount =~ s/\d{3,}?/$&,/g;
 
 542         $amount = join '', reverse split //, $amount;
 
 543         $amount .= "\.$dec".$fillup if ($places ne '' && $places*1 != 0);
 
 546       if ($myconfig->{numberformat} eq '1.000,00') {
 
 547         $amount =~ s/\d{3,}?/$&./g;
 
 549         $amount = join '', reverse split //, $amount;
 
 550         $amount .= ",$dec".$fillup if ($places ne '' && $places*1 != 0);
 
 553       if ($myconfig->{numberformat} eq '1000,00') {
 
 555         $amount .= ",$dec" .$fillup if ($places ne '' && $places*1 != 0);
 
 559         $amount = ($negative) ? "($amount)" : "$amount";
 
 560       } elsif ($dash =~ /DRCR/) {
 
 561         $amount = ($negative) ? "$amount DR" : "$amount CR";
 
 563         $amount = ($negative) ? "-$amount" : "$amount";
 
 567     if ($dash eq "0" && $places) {
 
 568       if ($myconfig->{numberformat} eq '1.000,00') {
 
 569         $amount = "0" . "," . "0" x $places;
 
 571         $amount = "0" . "." . "0" x $places;
 
 574       $amount = ($dash ne "") ? "$dash" : "0";
 
 578   $main::lxdebug->leave_sub();
 
 584   $main::lxdebug->enter_sub();
 
 586   my ($self, $myconfig, $amount) = @_;
 
 588   if (!(substr($amount, -3, 1) eq ".")) {
 
 589     if (   ($myconfig->{numberformat} eq '1.000,00')
 
 590         || ($myconfig->{numberformat} eq '1000,00')) {
 
 598   $main::lxdebug->leave_sub();
 
 600   return ($amount * 1);
 
 604   $main::lxdebug->enter_sub();
 
 606   my ($self, $amount, $places) = @_;
 
 609   # Rounding like "Kaufmannsrunden"
 
 610   # Descr. http://de.wikipedia.org/wiki/Rundung
 
 612   # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
 
 615   $amount       = $amount * (10 ** ($places));
 
 616   $round_amount = int($amount + .5 * ($amount <=> 0))/(10**($places));
 
 618   $main::lxdebug->leave_sub();
 
 620   return $round_amount;
 
 627   $main::lxdebug->enter_sub();
 
 629   my ($self, $myconfig, $userspath) = @_;
 
 632   # Some variables used for page breaks
 
 633   my ($chars_per_line, $lines_on_first_page, $lines_on_second_page) =
 
 635   my ($current_page, $current_line, $current_row) = (1, 1, 0);
 
 641   # Make sure that all *notes* (intnotes, partnotes_*, notes etc) are converted to markup correctly.
 
 642   $self->format_string(grep(/notes/, keys(%{$self})));
 
 644   # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
 
 645   $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
 
 647   map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
 
 648       qw(email tel fax name signature));
 
 650   open(IN, "$self->{templates}/$self->{IN}")
 
 651     or $self->error("$self->{IN} : $!");
 
 656   $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
 
 658   # OUT is used for the media, screen, printer, email
 
 659   # for postscript we store a copy in a temporary file
 
 661   $self->{tmpfile} = "$userspath/${fileid}.$self->{IN}";
 
 662   if ($self->{format} =~ /(postscript|pdf)/ || $self->{media} eq 'email') {
 
 664     $self->{OUT} = ">$self->{tmpfile}";
 
 668     open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
 
 670     open(OUT, ">-") or $self->error("STDOUT : $!");
 
 674   # Do we have to run LaTeX two times? This is needed if
 
 675   # the template contains page references.
 
 678   # first we generate a tmpfile
 
 679   # read file and replace <%variable%>
 
 685     $two_passes = 1 if (/\\pageref/);
 
 688     # detect pagebreak block and its parameters
 
 689     if (/\s*<%pagebreak ([0-9]+) ([0-9]+) ([0-9]+)%>/) {
 
 690       $chars_per_line       = $1;
 
 691       $lines_on_first_page  = $2;
 
 692       $lines_on_second_page = $3;
 
 695         last if (/\s*<%end pagebreak%>/);
 
 702     if (/\s*<%foreach /) {
 
 704       # this one we need for the count
 
 706       $var =~ s/\s*<%foreach (.+?)%>/$1/;
 
 708         last if (/\s*<%end /);
 
 714       # display contents of $self->{number}[] array
 
 715       for $i (0 .. $#{ $self->{$var} }) {
 
 718         # Try to detect whether a manual page break is necessary
 
 719         # but only if there was a <%pagebreak ...%> block before
 
 721         if ($chars_per_line) {
 
 723             int(length($self->{"description"}[$i]) / $chars_per_line + 0.95);
 
 726           my $_description = $self->{"description"}[$i];
 
 727           while ($_description =~ /\\newline/) {
 
 729             $_description =~ s/\\newline//;
 
 731           $self->{"description"}[$i] =~ s/(\\newline\s?)*$//;
 
 733           if ($current_page == 1) {
 
 734             $lpp = $lines_on_first_page;
 
 736             $lpp = $lines_on_second_page;
 
 739           # Yes we need a manual page break -- or the user has forced one
 
 740           if ((($current_line + $lines) > $lpp) ||
 
 741               ($self->{"_forced_pagebreaks"} && grep(/^${current_row}$/, @{$self->{"_forced_pagebreaks"}}))) {
 
 744             # replace the special variables <%sumcarriedforward%>
 
 747             my $psum = $self->format_amount($myconfig, $sum, 2);
 
 748             $pb =~ s/<%sumcarriedforward%>/$psum/g;
 
 749             $pb =~ s/<%lastpage%>/$current_page/g;
 
 751             # only "normal" variables are supported here
 
 752             # (no <%if, no <%foreach, no <%include)
 
 754             $pb =~ s/<%(.+?)%>/$self->{$1}/g;
 
 756             # page break block is ready to rock
 
 761           $current_line += $lines;
 
 764         $sum += $self->parse_amount($myconfig, $self->{"linetotal"}[$i]);
 
 768         # don't parse par, we need it for each line
 
 770         s/<%(.+?)%>/$self->{$1}[$i]/mg;
 
 776     # if not comes before if!
 
 777     if (/\s*<%if not /) {
 
 779       # check if it is not set and display
 
 781       s/\s*<%if not (.+?)%>/$1/;
 
 783       unless ($self->{$_}) {
 
 785           last if (/\s*<%end /);
 
 795           last if (/\s*<%end /);
 
 803       # check if it is set and display
 
 805       s/\s*<%if (.+?)%>/$1/;
 
 809           last if (/\s*<%end /);
 
 819           last if (/\s*<%end /);
 
 825     # check for <%include filename%>
 
 826     if (/\s*<%include /) {
 
 830       $var =~ s/\s*<%include (.+?)%>/$1/;
 
 833       $var =~ s/(\/|\.\.)//g;
 
 835       # prevent the infinite loop!
 
 836       next if ($self->{"$var"});
 
 838       open(INC, "$self->{templates}/$var")
 
 839         or $self->error($self->cleanup . "$self->{templates}/$var : $!");
 
 848     s/<%(.+?)%>/$self->{$1}/g;
 
 855   # Convert the tex file to postscript
 
 856   if ($self->{format} =~ /(postscript|pdf)/) {
 
 859     $self->{cwd}    = cwd();
 
 860     $self->{tmpdir} = "$self->{cwd}/$userspath";
 
 862     chdir("$userspath") or $self->error($self->cleanup . "chdir : $!");
 
 864     $self->{tmpfile} =~ s/$userspath\///g;
 
 866     if ($self->{format} eq 'postscript') {
 
 868         "latex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
 
 870       $self->error($self->cleanup) if ($?);
 
 873           "latex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
 
 875         $self->error($self->cleanup) if ($?);
 
 878       $self->{tmpfile} =~ s/tex$/dvi/;
 
 880       system("dvips $self->{tmpfile} -o -q > /dev/null");
 
 881       $self->error($self->cleanup . "dvips : $!") if ($?);
 
 882       $self->{tmpfile} =~ s/dvi$/ps/;
 
 884     if ($self->{format} eq 'pdf') {
 
 886         "pdflatex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
 
 888       $self->error($self->cleanup) if ($?);
 
 891           "pdflatex --interaction=nonstopmode $self->{tmpfile} > $self->{tmpfile}.err"
 
 893         $self->error($self->cleanup) if ($?);
 
 895       $self->{tmpfile} =~ s/tex$/pdf/;
 
 900   if ($self->{format} =~ /(postscript|pdf)/ || $self->{media} eq 'email') {
 
 902     if ($self->{media} eq 'email') {
 
 906       my $mail = new Mailer;
 
 908       map { $mail->{$_} = $self->{$_} }
 
 909         qw(cc bcc subject message version format charset);
 
 910       $mail->{to}     = qq|$self->{email}|;
 
 911       $mail->{from}   = qq|"$myconfig->{name}" <$myconfig->{email}>|;
 
 912       $mail->{fileid} = "$fileid.";
 
 914       # if we send html or plain text inline
 
 915       if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
 
 916         $mail->{contenttype} = "text/html";
 
 918         $mail->{message}       =~ s/\r\n/<br>\n/g;
 
 919         $myconfig->{signature} =~ s/\\n/<br>\n/g;
 
 920         $mail->{message} .= "<br>\n--<br>\n$myconfig->{signature}\n<br>";
 
 922         open(IN, $self->{tmpfile})
 
 923           or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
 925           $mail->{message} .= $_;
 
 932         @{ $mail->{attachments} } = ($self->{tmpfile});
 
 934         $myconfig->{signature} =~ s/\\n/\r\n/g;
 
 935         $mail->{message} .= "\r\n--\r\n$myconfig->{signature}";
 
 939       my $err = $mail->send($out);
 
 940       $self->error($self->cleanup . "$err") if ($err);
 
 946       my $numbytes = (-s $self->{tmpfile});
 
 947       open(IN, $self->{tmpfile})
 
 948         or $self->error($self->cleanup . "$self->{tmpfile} : $!");
 
 950       $self->{copies} = 1 unless $self->{media} eq 'printer';
 
 952       chdir("$self->{cwd}");
 
 954       for my $i (1 .. $self->{copies}) {
 
 956           open(OUT, $self->{OUT})
 
 957             or $self->error($self->cleanup . "$self->{OUT} : $!");
 
 961           print qq|Content-Type: application/$self->{format}
 
 962 Content-Disposition: attachment; filename="$self->{tmpfile}"
 
 963 Content-Length: $numbytes
 
 967           open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
 
 987   chdir("$self->{cwd}");
 
 988   $main::lxdebug->leave_sub();
 
 992   $main::lxdebug->enter_sub();
 
 996   chdir("$self->{tmpdir}");
 
 999   if (-f "$self->{tmpfile}.err") {
 
1000     open(FH, "$self->{tmpfile}.err");
 
1005   if ($self->{tmpfile}) {
 
1008     $self->{tmpfile} =~ s/\.\w+$//g;
 
1009     my $tmpfile = $self->{tmpfile};
 
1010     unlink(<$tmpfile.*>);
 
1013   chdir("$self->{cwd}");
 
1015   $main::lxdebug->leave_sub();
 
1021   $main::lxdebug->enter_sub();
 
1023   my ($self, @fields) = @_;
 
1026   %unique_fields = map({ $_ => 1 } @fields);
 
1027   @fields = keys(%unique_fields);
 
1029   foreach my $field (@fields) {
 
1030     next unless ($self->{$field} =~ /\<pagebreak\>/);
 
1031     $self->{$field} =~ s/\<pagebreak\>//g;
 
1032     if ($field =~ /.*_(\d+)$/) {
 
1033       if (!$self->{"_forced_pagebreaks"}) {
 
1034         $self->{"_forced_pagebreaks"} = [];
 
1036       push(@{ $self->{"_forced_pagebreaks"} }, "$1");
 
1040   my $format = $self->{format};
 
1041   if ($self->{format} =~ /(postscript|pdf)/) {
 
1048         '<', '>', quotemeta('\n'), '
 
1052         '&', quotemeta('\n'), '
 
1054         '"', '\$', '%', '_', '#', quotemeta('^'),
 
1055         '{', '}',  '<', '>', '£', "\r"
 
1061       quotemeta('\n') => '<br>',
 
1072       quotemeta('^')  => '\^\\',
 
1077       quotemeta('\n') => '\newline ',
 
1084   foreach my $key (@{ $replace{order}{$format} }) {
 
1085     map { $self->{$_} =~ s/$key/$replace{$format}{$key}/g; } @fields;
 
1088   # Allow some HTML markup to be converted into the output format's
 
1089   # corresponding markup code, e.g. bold or italic.
 
1090   if ('html' eq $format) {
 
1091     my @markup_replace = ('b', 'i', 's', 'u');
 
1093     foreach my $key (@markup_replace) {
 
1094       map({ $self->{$_} =~ s/\<(\/?)${key}\>/<$1${key}>/g } @fields);
 
1097   } elsif ('tex' eq $format) {
 
1098     my %markup_replace = ('b' => 'textbf',
 
1100                           'u' => 'underline');
 
1102     foreach my $field (@fields) {
 
1103       foreach my $key (keys(%markup_replace)) {
 
1104         my $new = $markup_replace{$key};
 
1106           s/\$\<\$${key}\$\>\$(.*?)\$<\$\/${key}\$>\$/\\${new}\{$1\}/gi;
 
1111   $main::lxdebug->leave_sub();
 
1115   $main::lxdebug->enter_sub();
 
1117   my ($self, $date, $myconfig) = @_;
 
1119   if ($date && $date =~ /\D/) {
 
1121     if ($myconfig->{dateformat} =~ /^yy/) {
 
1122       ($yy, $mm, $dd) = split /\D/, $date;
 
1124     if ($myconfig->{dateformat} =~ /^mm/) {
 
1125       ($mm, $dd, $yy) = split /\D/, $date;
 
1127     if ($myconfig->{dateformat} =~ /^dd/) {
 
1128       ($dd, $mm, $yy) = split /\D/, $date;
 
1133     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
1134     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
1136     $dd = "0$dd" if ($dd < 10);
 
1137     $mm = "0$mm" if ($mm < 10);
 
1139     $date = "$yy$mm$dd";
 
1142   $main::lxdebug->leave_sub();
 
1147 # Database routines used throughout
 
1150   $main::lxdebug->enter_sub();
 
1152   my ($self, $myconfig) = @_;
 
1154   # connect to database
 
1156     DBI->connect($myconfig->{dbconnect},
 
1157                  $myconfig->{dbuser}, $myconfig->{dbpasswd})
 
1161   if ($myconfig->{dboptions}) {
 
1162     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1165   $main::lxdebug->leave_sub();
 
1170 sub dbconnect_noauto {
 
1171   $main::lxdebug->enter_sub();
 
1173   my ($self, $myconfig) = @_;
 
1175   # connect to database
 
1177     DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
 
1178                  $myconfig->{dbpasswd}, { AutoCommit => 0 })
 
1182   if ($myconfig->{dboptions}) {
 
1183     $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
 
1186   $main::lxdebug->leave_sub();
 
1191 sub update_balance {
 
1192   $main::lxdebug->enter_sub();
 
1194   my ($self, $dbh, $table, $field, $where, $value) = @_;
 
1196   # if we have a value, go do it
 
1199     # retrieve balance from table
 
1200     my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
 
1201     my $sth   = $dbh->prepare($query);
 
1203     $sth->execute || $self->dberror($query);
 
1204     my ($balance) = $sth->fetchrow_array;
 
1210     $query = "UPDATE $table SET $field = $balance WHERE $where";
 
1211     $dbh->do($query) || $self->dberror($query);
 
1213   $main::lxdebug->leave_sub();
 
1216 sub update_exchangerate {
 
1217   $main::lxdebug->enter_sub();
 
1219   my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
 
1221   # some sanity check for currency
 
1223     $main::lxdebug->leave_sub();
 
1227   my $query = qq|SELECT e.curr FROM exchangerate e
 
1228                  WHERE e.curr = '$curr'
 
1229                  AND e.transdate = '$transdate'
 
1231   my $sth = $dbh->prepare($query);
 
1232   $sth->execute || $self->dberror($query);
 
1235   if ($buy != 0 && $sell != 0) {
 
1236     $set = "buy = $buy, sell = $sell";
 
1237   } elsif ($buy != 0) {
 
1238     $set = "buy = $buy";
 
1239   } elsif ($sell != 0) {
 
1240     $set = "sell = $sell";
 
1243   if ($sth->fetchrow_array) {
 
1244     $query = qq|UPDATE exchangerate
 
1246                 WHERE curr = '$curr'
 
1247                 AND transdate = '$transdate'|;
 
1249     $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
 
1250                 VALUES ('$curr', $buy, $sell, '$transdate')|;
 
1253   $dbh->do($query) || $self->dberror($query);
 
1255   $main::lxdebug->leave_sub();
 
1258 sub save_exchangerate {
 
1259   $main::lxdebug->enter_sub();
 
1261   my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
 
1263   my $dbh = $self->dbconnect($myconfig);
 
1265   my ($buy, $sell) = (0, 0);
 
1266   $buy  = $rate if $fld eq 'buy';
 
1267   $sell = $rate if $fld eq 'sell';
 
1269   $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
 
1273   $main::lxdebug->leave_sub();
 
1276 sub get_exchangerate {
 
1277   $main::lxdebug->enter_sub();
 
1279   my ($self, $dbh, $curr, $transdate, $fld) = @_;
 
1281   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1282                  WHERE e.curr = '$curr'
 
1283                  AND e.transdate = '$transdate'|;
 
1284   my $sth = $dbh->prepare($query);
 
1285   $sth->execute || $self->dberror($query);
 
1287   my ($exchangerate) = $sth->fetchrow_array;
 
1290   $main::lxdebug->leave_sub();
 
1292   return $exchangerate;
 
1295 sub check_exchangerate {
 
1296   $main::lxdebug->enter_sub();
 
1298   my ($self, $myconfig, $currency, $transdate, $fld) = @_;
 
1300   unless ($transdate) {
 
1301     $main::lxdebug->leave_sub();
 
1305   my $dbh = $self->dbconnect($myconfig);
 
1307   my $query = qq|SELECT e.$fld FROM exchangerate e
 
1308                  WHERE e.curr = '$currency'
 
1309                  AND e.transdate = '$transdate'|;
 
1310   my $sth = $dbh->prepare($query);
 
1311   $sth->execute || $self->dberror($query);
 
1313   my ($exchangerate) = $sth->fetchrow_array;
 
1317   $main::lxdebug->leave_sub();
 
1319   return $exchangerate;
 
1323   $main::lxdebug->enter_sub();
 
1325   my ($self, $dbh, $id) = @_;
 
1329     my $item (qw(name department_1 department_2 street zipcode city country contact phone fax email)) {
 
1330     if ($self->{"shipto$item"}) {
 
1331       $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
 
1333     $self->{"shipto$item"} =~ s/\'/\'\'/g;
 
1337     my $query = qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2, shiptostreet,
 
1338                    shiptozipcode, shiptocity, shiptocountry, shiptocontact,
 
1339                    shiptophone, shiptofax, shiptoemail) VALUES ($id,
 
1340                    '$self->{shiptoname}', '$self->{shiptodepartment_1}', '$self->{shiptodepartment_2}', '$self->{shiptostreet}',
 
1341                    '$self->{shiptozipcode}', '$self->{shiptocity}',
 
1342                    '$self->{shiptocountry}', '$self->{shiptocontact}',
 
1343                    '$self->{shiptophone}', '$self->{shiptofax}',
 
1344                    '$self->{shiptoemail}')|;
 
1345     $dbh->do($query) || $self->dberror($query);
 
1348   $main::lxdebug->leave_sub();
 
1352   $main::lxdebug->enter_sub();
 
1354   my ($self, $dbh) = @_;
 
1356   my $query = qq|SELECT e.id, e.name FROM employee e
 
1357                  WHERE e.login = '$self->{login}'|;
 
1358   my $sth = $dbh->prepare($query);
 
1359   $sth->execute || $self->dberror($query);
 
1361   ($self->{employee_id}, $self->{employee}) = $sth->fetchrow_array;
 
1362   $self->{employee_id} *= 1;
 
1366   $main::lxdebug->leave_sub();
 
1369 # get other contact for transaction and form - html/tex
 
1371   $main::lxdebug->enter_sub();
 
1373   my ($self, $dbh, $id) = @_;
 
1375   my $query = qq|SELECT c.*
 
1378   $sth = $dbh->prepare($query);
 
1379   $sth->execute || $self->dberror($query);
 
1381   $ref = $sth->fetchrow_hashref(NAME_lc);
 
1383   push @{ $self->{$_} }, $ref;
 
1386   $main::lxdebug->leave_sub();
 
1389 # get contacts for id, if no contact return {"","","","",""}
 
1391   $main::lxdebug->enter_sub();
 
1393   my ($self, $dbh, $id) = @_;
 
1395   my $query = qq|SELECT c.cp_id, c.cp_cv_id, c.cp_name, c.cp_givenname
 
1397               WHERE cp_cv_id=$id|;
 
1398   my $sth = $dbh->prepare($query);
 
1399   $sth->execute || $self->dberror($query);
 
1402   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1403     push @{ $self->{all_contacts} }, $ref;
 
1408     push @{ $self->{all_contacts} }, { { "", "", "", "", "" } };
 
1411   $main::lxdebug->leave_sub();
 
1414 # this sub gets the id and name from $table
 
1416   $main::lxdebug->enter_sub();
 
1418   my ($self, $myconfig, $table) = @_;
 
1420   # connect to database
 
1421   my $dbh = $self->dbconnect($myconfig);
 
1423   my $name           = $self->like(lc $self->{$table});
 
1424   my $customernumber = $self->like(lc $self->{customernumber});
 
1426   if ($self->{customernumber} ne "") {
 
1427     $query = qq~SELECT c.id, c.name,
 
1428                   c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1430                   WHERE (lower(c.customernumber) LIKE '$customernumber') AND (not c.obsolete)
 
1433     $query = qq~SELECT c.id, c.name,
 
1434                  c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1436                  WHERE (lower(c.name) LIKE '$name') AND (not c.obsolete)
 
1440   if ($self->{openinvoices}) {
 
1441     $query = qq~SELECT DISTINCT c.id, c.name,
 
1442                 c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
 
1443                 FROM $self->{arap} a
 
1444                 JOIN $table c ON (a.${table}_id = c.id)
 
1445                 WHERE NOT a.amount = a.paid
 
1446                 AND lower(c.name) LIKE '$name'
 
1449   my $sth = $dbh->prepare($query);
 
1451   $sth->execute || $self->dberror($query);
 
1454   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1455     push(@{ $self->{name_list} }, $ref);
 
1461   $main::lxdebug->leave_sub();
 
1466 # the selection sub is used in the AR, AP, IS, IR and OE module
 
1469   $main::lxdebug->enter_sub();
 
1471   my ($self, $myconfig, $table, $module) = @_;
 
1474   my $dbh = $self->dbconnect($myconfig);
 
1476   my $query = qq|SELECT count(*) FROM $table|;
 
1477   my $sth   = $dbh->prepare($query);
 
1478   $sth->execute || $self->dberror($query);
 
1479   my ($count) = $sth->fetchrow_array;
 
1482   # build selection list
 
1483   if ($count < $myconfig->{vclimit}) {
 
1484     $query = qq|SELECT id, name
 
1485                 FROM $table WHERE not obsolete
 
1487     $sth = $dbh->prepare($query);
 
1488     $sth->execute || $self->dberror($query);
 
1490     while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1491       push @{ $self->{"all_$table"} }, $ref;
 
1499   $self->get_employee($dbh);
 
1501   # setup sales contacts
 
1502   $query = qq|SELECT e.id, e.name
 
1505               AND NOT e.id = $self->{employee_id}|;
 
1506   $sth = $dbh->prepare($query);
 
1507   $sth->execute || $self->dberror($query);
 
1509   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1510     push @{ $self->{all_employees} }, $ref;
 
1515   push @{ $self->{all_employees} },
 
1516     { id   => $self->{employee_id},
 
1517       name => $self->{employee} };
 
1519   # sort the whole thing
 
1520   @{ $self->{all_employees} } =
 
1521     sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
 
1523   if ($module eq 'AR') {
 
1525     # prepare query for departments
 
1526     $query = qq|SELECT d.id, d.description
 
1532     $query = qq|SELECT d.id, d.description
 
1537   $sth = $dbh->prepare($query);
 
1538   $sth->execute || $self->dberror($query);
 
1540   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1541     push @{ $self->{all_departments} }, $ref;
 
1546   $main::lxdebug->leave_sub();
 
1549 # this is only used for reports
 
1550 sub all_departments {
 
1551   $main::lxdebug->enter_sub();
 
1553   my ($self, $myconfig, $table) = @_;
 
1555   my $dbh   = $self->dbconnect($myconfig);
 
1556   my $where = "1 = 1";
 
1558   if (defined $table) {
 
1559     if ($table eq 'customer') {
 
1560       $where = " d.role = 'P'";
 
1564   my $query = qq|SELECT d.id, d.description
 
1568   my $sth = $dbh->prepare($query);
 
1569   $sth->execute || $self->dberror($query);
 
1571   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1572     push @{ $self->{all_departments} }, $ref;
 
1578   $main::lxdebug->leave_sub();
 
1582   $main::lxdebug->enter_sub();
 
1584   my ($self, $module, $myconfig, $table) = @_;
 
1586   $self->all_vc($myconfig, $table, $module);
 
1588   # get last customers or vendors
 
1591   my $dbh = $self->dbconnect($myconfig);
 
1595   # now get the account numbers
 
1597     qq|SELECT c.accno, SUBSTRING(c.description,1,50) as description, c.link, c.taxkey_id
 
1599               WHERE c.link LIKE '%$module%'
 
1602   $sth = $dbh->prepare($query);
 
1603   $sth->execute || $self->dberror($query);
 
1605   $self->{accounts} = "";
 
1606   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1608     foreach my $key (split /:/, $ref->{link}) {
 
1609       if ($key =~ /$module/) {
 
1611         # cross reference for keys
 
1612         $xkeyref{ $ref->{accno} } = $key;
 
1614         push @{ $self->{"${module}_links"}{$key} },
 
1615           { accno       => $ref->{accno},
 
1616             description => $ref->{description},
 
1617             taxkey      => $ref->{taxkey_id} };
 
1619         $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
 
1625   if (($module eq "AP") || ($module eq "AR")) {
 
1627     # get tax rates and description
 
1628     $query = qq| SELECT * FROM tax t|;
 
1629     $sth   = $dbh->prepare($query);
 
1630     $sth->execute || $self->dberror($query);
 
1632     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1633       push @{ $self->{TAX} }, $ref;
 
1639     my $arap = ($table eq 'customer') ? 'ar' : 'ap';
 
1641     $query = qq|SELECT a.cp_id, a.invnumber, a.transdate,
 
1642                 a.${table}_id, a.datepaid, a.duedate, a.ordnumber,
 
1643                 a.taxincluded, a.curr AS currency, a.notes, a.intnotes,
 
1644                 c.name AS $table, a.department_id, d.description AS department,
 
1645                 a.amount AS oldinvtotal, a.paid AS oldtotalpaid,
 
1646                 a.employee_id, e.name AS employee, a.gldate
 
1648                 JOIN $table c ON (a.${table}_id = c.id)
 
1649                 LEFT JOIN employee e ON (e.id = a.employee_id)
 
1650                 LEFT JOIN department d ON (d.id = a.department_id)
 
1651                 WHERE a.id = $self->{id}|;
 
1652     $sth = $dbh->prepare($query);
 
1653     $sth->execute || $self->dberror($query);
 
1655     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1656     foreach $key (keys %$ref) {
 
1657       $self->{$key} = $ref->{$key};
 
1661     # get amounts from individual entries
 
1662     $query = qq|SELECT c.accno, c.description, a.source, a.amount, a.memo,
 
1663                 a.transdate, a.cleared, a.project_id, p.projectnumber, a.taxkey, t.rate
 
1665                 JOIN chart c ON (c.id = a.chart_id)
 
1666                 LEFT JOIN project p ON (p.id = a.project_id)
 
1667                 LEFT Join tax t ON (a.taxkey = t.taxkey)
 
1668                 WHERE a.trans_id = $self->{id}
 
1669                 AND a.fx_transaction = '0'
 
1670                 ORDER BY a.transdate|;
 
1671     $sth = $dbh->prepare($query);
 
1672     $sth->execute || $self->dberror($query);
 
1674     my $fld = ($table eq 'customer') ? 'buy' : 'sell';
 
1676     # get exchangerate for currency
 
1677     $self->{exchangerate} =
 
1678       $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
 
1681     # store amounts in {acc_trans}{$key} for multiple accounts
 
1682     while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
1683       $ref->{exchangerate} =
 
1684         $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate},
 
1687       push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
 
1691     $query = qq|SELECT d.curr AS currencies, d.closedto, d.revtrans,
 
1692                   (SELECT c.accno FROM chart c
 
1693                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
1694                   (SELECT c.accno FROM chart c
 
1695                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
1697     $sth = $dbh->prepare($query);
 
1698     $sth->execute || $self->dberror($query);
 
1700     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1701     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
1707     $query = qq|SELECT current_date AS transdate,
 
1708                 d.curr AS currencies, d.closedto, d.revtrans,
 
1709                   (SELECT c.accno FROM chart c
 
1710                    WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
 
1711                   (SELECT c.accno FROM chart c
 
1712                    WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
 
1714     $sth = $dbh->prepare($query);
 
1715     $sth->execute || $self->dberror($query);
 
1717     $ref = $sth->fetchrow_hashref(NAME_lc);
 
1718     map { $self->{$_} = $ref->{$_} } keys %$ref;
 
1721     if ($self->{"$self->{vc}_id"}) {
 
1723       # only setup currency
 
1724       ($self->{currency}) = split /:/, $self->{currencies};
 
1728       $self->lastname_used($dbh, $myconfig, $table, $module);
 
1730       my $fld = ($table eq 'customer') ? 'buy' : 'sell';
 
1732       # get exchangerate for currency
 
1733       $self->{exchangerate} =
 
1734         $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
 
1743   $main::lxdebug->leave_sub();
 
1747   $main::lxdebug->enter_sub();
 
1749   my ($self, $dbh, $myconfig, $table, $module) = @_;
 
1751   my $arap  = ($table eq 'customer') ? "ar" : "ap";
 
1752   my $where = "1 = 1";
 
1754   if ($self->{type} =~ /_order/) {
 
1756     $where = "quotation = '0'";
 
1758   if ($self->{type} =~ /_quotation/) {
 
1760     $where = "quotation = '1'";
 
1763   my $query = qq|SELECT id FROM $arap
 
1764                  WHERE id IN (SELECT MAX(id) FROM $arap
 
1766                               AND ${table}_id > 0)|;
 
1767   my $sth = $dbh->prepare($query);
 
1768   $sth->execute || $self->dberror($query);
 
1770   my ($trans_id) = $sth->fetchrow_array;
 
1774   $query = qq|SELECT ct.name, a.curr, a.${table}_id,
 
1775               current_date + ct.terms AS duedate, a.department_id,
 
1776               d.description AS department
 
1778               JOIN $table ct ON (a.${table}_id = ct.id)
 
1779               LEFT JOIN department d ON (a.department_id = d.id)
 
1780               WHERE a.id = $trans_id|;
 
1781   $sth = $dbh->prepare($query);
 
1782   $sth->execute || $self->dberror($query);
 
1784   ($self->{$table},  $self->{currency},      $self->{"${table}_id"},
 
1785    $self->{duedate}, $self->{department_id}, $self->{department})
 
1786     = $sth->fetchrow_array;
 
1789   $main::lxdebug->leave_sub();
 
1793   $main::lxdebug->enter_sub();
 
1795   my ($self, $myconfig, $thisdate, $days) = @_;
 
1797   my $dbh = $self->dbconnect($myconfig);
 
1802     my $dateformat = $myconfig->{dateformat};
 
1803     $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
 
1805     $query = qq|SELECT to_date('$thisdate', '$dateformat') + $days AS thisdate
 
1807     $sth = $dbh->prepare($query);
 
1808     $sth->execute || $self->dberror($query);
 
1810     $query = qq|SELECT current_date AS thisdate
 
1812     $sth = $dbh->prepare($query);
 
1813     $sth->execute || $self->dberror($query);
 
1816   ($thisdate) = $sth->fetchrow_array;
 
1821   $main::lxdebug->leave_sub();
 
1827   $main::lxdebug->enter_sub();
 
1829   my ($self, $string) = @_;
 
1831   if ($string !~ /%/) {
 
1832     $string = "%$string%";
 
1835   $string =~ s/\'/\'\'/g;
 
1837   $main::lxdebug->leave_sub();
 
1843   $main::lxdebug->enter_sub();
 
1845   my ($self, $flds, $new, $count, $numrows) = @_;
 
1849   map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } }
 
1855   foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
 
1857     $j = $item->{ndx} - 1;
 
1858     map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
 
1862   for $i ($count + 1 .. $numrows) {
 
1863     map { delete $self->{"${_}_$i"} } @{$flds};
 
1866   $main::lxdebug->leave_sub();
 
1870   $main::lxdebug->enter_sub();
 
1872   my ($self, $myconfig) = @_;
 
1876   my $dbh = $self->dbconnect_noauto($myconfig);
 
1878   my $query = qq|DELETE FROM status
 
1879                  WHERE formname = '$self->{formname}'
 
1881   my $sth = $dbh->prepare($query) || $self->dberror($query);
 
1883   if ($self->{formname} =~ /(check|receipt)/) {
 
1884     for $i (1 .. $self->{rowcount}) {
 
1885       $sth->execute($self->{"id_$i"} * 1) || $self->dberror($query);
 
1889     $sth->execute($self->{id}) || $self->dberror($query);
 
1893   my $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
 
1894   my $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
 
1896   my %queued = split / /, $self->{queued};
 
1898   if ($self->{formname} =~ /(check|receipt)/) {
 
1900     # this is a check or receipt, add one entry for each lineitem
 
1901     my ($accno) = split /--/, $self->{account};
 
1902     $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname,
 
1903                 chart_id) VALUES (?, '$printed',
 
1904                 '$queued{$self->{formname}}', '$self->{prinform}',
 
1905                 (SELECT c.id FROM chart c WHERE c.accno = '$accno'))|;
 
1906     $sth = $dbh->prepare($query) || $self->dberror($query);
 
1908     for $i (1 .. $self->{rowcount}) {
 
1909       if ($self->{"checked_$i"}) {
 
1910         $sth->execute($self->{"id_$i"}) || $self->dberror($query);
 
1915     $query = qq|INSERT INTO status (trans_id, printed, emailed,
 
1916                 spoolfile, formname)
 
1917                 VALUES ($self->{id}, '$printed', '$emailed',
 
1918                 '$queued{$self->{formname}}', '$self->{formname}')|;
 
1919     $dbh->do($query) || $self->dberror($query);
 
1925   $main::lxdebug->leave_sub();
 
1929   $main::lxdebug->enter_sub();
 
1931   my ($self, $dbh) = @_;
 
1933   my ($query, $printed, $emailed);
 
1935   my $formnames  = $self->{printed};
 
1936   my $emailforms = $self->{emailed};
 
1938   my $query = qq|DELETE FROM status
 
1939                  WHERE formname = '$self->{formname}'
 
1940                  AND trans_id = $self->{id}|;
 
1941   $dbh->do($query) || $self->dberror($query);
 
1943   # this only applies to the forms
 
1944   # checks and receipts are posted when printed or queued
 
1946   if ($self->{queued}) {
 
1947     my %queued = split / /, $self->{queued};
 
1949     foreach my $formname (keys %queued) {
 
1950       $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
 
1951       $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
 
1953       $query = qq|INSERT INTO status (trans_id, printed, emailed,
 
1954                   spoolfile, formname)
 
1955                   VALUES ($self->{id}, '$printed', '$emailed',
 
1956                   '$queued{$formname}', '$formname')|;
 
1957       $dbh->do($query) || $self->dberror($query);
 
1959       $formnames  =~ s/$self->{formname}//;
 
1960       $emailforms =~ s/$self->{formname}//;
 
1965   # save printed, emailed info
 
1966   $formnames  =~ s/^ +//g;
 
1967   $emailforms =~ s/^ +//g;
 
1970   map { $status{$_}{printed} = 1 } split / +/, $formnames;
 
1971   map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
 
1973   foreach my $formname (keys %status) {
 
1974     $printed = ($formnames  =~ /$self->{formname}/) ? "1" : "0";
 
1975     $emailed = ($emailforms =~ /$self->{formname}/) ? "1" : "0";
 
1977     $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
 
1978                 VALUES ($self->{id}, '$printed', '$emailed', '$formname')|;
 
1979     $dbh->do($query) || $self->dberror($query);
 
1982   $main::lxdebug->leave_sub();
 
1985 sub update_defaults {
 
1986   $main::lxdebug->enter_sub();
 
1988   my ($self, $myconfig, $fld) = @_;
 
1990   my $dbh   = $self->dbconnect_noauto($myconfig);
 
1991   my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
 
1992   my $sth   = $dbh->prepare($query);
 
1994   $sth->execute || $self->dberror($query);
 
1995   my ($var) = $sth->fetchrow_array;
 
2000   $query = qq|UPDATE defaults
 
2002   $dbh->do($query) || $form->dberror($query);
 
2007   $main::lxdebug->leave_sub();
 
2012 sub update_business {
 
2013   $main::lxdebug->enter_sub();
 
2015   my ($self, $myconfig, $business_id) = @_;
 
2017   my $dbh   = $self->dbconnect_noauto($myconfig);
 
2019     qq|SELECT customernumberinit FROM business  WHERE id=$business_id FOR UPDATE|;
 
2020   my $sth = $dbh->prepare($query);
 
2022   $sth->execute || $self->dberror($query);
 
2023   my ($var) = $sth->fetchrow_array;
 
2028   $query = qq|UPDATE business
 
2029               SET customernumberinit = '$var' WHERE id=$business_id|;
 
2030   $dbh->do($query) || $form->dberror($query);
 
2035   $main::lxdebug->leave_sub();
 
2041   $main::lxdebug->enter_sub();
 
2043   my ($self, $myconfig, $salesman) = @_;
 
2045   my $dbh   = $self->dbconnect($myconfig);
 
2047     qq|SELECT id, name FROM customer  WHERE (customernumber ilike '%$salesman%' OR name ilike '%$salesman%') AND business_id in (SELECT id from business WHERE salesman)|;
 
2048   my $sth = $dbh->prepare($query);
 
2049   $sth->execute || $self->dberror($query);
 
2052   while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2053     push(@{ $self->{salesman_list} }, $ref);
 
2057   $main::lxdebug->leave_sub();
 
2062 sub get_partsgroup {
 
2063   $main::lxdebug->enter_sub();
 
2065   my ($self, $myconfig, $p) = @_;
 
2067   my $dbh = $self->dbconnect($myconfig);
 
2069   my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
 
2071                  JOIN parts p ON (p.partsgroup_id = pg.id)|;
 
2073   if ($p->{searchitems} eq 'part') {
 
2075                  WHERE p.inventory_accno_id > 0|;
 
2077   if ($p->{searchitems} eq 'service') {
 
2079                  WHERE p.inventory_accno_id IS NULL|;
 
2081   if ($p->{searchitems} eq 'assembly') {
 
2083                  WHERE p.assembly = '1'|;
 
2085   if ($p->{searchitems} eq 'labor') {
 
2087                  WHERE p.inventory_accno_id > 0 AND p.income_accno_id IS NULL|;
 
2091                  ORDER BY partsgroup|;
 
2094     $query = qq|SELECT id, partsgroup FROM partsgroup
 
2095                 ORDER BY partsgroup|;
 
2098   if ($p->{language_code}) {
 
2099     $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
 
2100                 t.description AS translation
 
2102                 JOIN parts p ON (p.partsgroup_id = pg.id)
 
2103                 LEFT JOIN translation t ON (t.trans_id = pg.id AND t.language_code = '$p->{language_code}')
 
2104                 ORDER BY translation|;
 
2107   my $sth = $dbh->prepare($query);
 
2108   $sth->execute || $self->dberror($query);
 
2110   $self->{all_partsgroup} = ();
 
2111   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2112     push @{ $self->{all_partsgroup} }, $ref;
 
2116   $main::lxdebug->leave_sub();
 
2120 sub get_pricegroup {
 
2121   $main::lxdebug->enter_sub();
 
2123   my ($self, $myconfig, $p) = @_;
 
2125   my $dbh = $self->dbconnect($myconfig);
 
2127   my $query = qq|SELECT p.id, p.pricegroup
 
2131                  ORDER BY pricegroup|;
 
2134     $query = qq|SELECT id, pricegroup FROM pricegroup
 
2135                 ORDER BY pricegroup|;
 
2138   my $sth = $dbh->prepare($query);
 
2139   $sth->execute || $self->dberror($query);
 
2141   $self->{all_pricegroup} = ();
 
2142   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
2143     push @{ $self->{all_pricegroup} }, $ref;
 
2148   $main::lxdebug->leave_sub();
 
2153   my ($self, $dbh, $myconfig, $audittrail) = @_;
 
2155 # table, $reference, $formname, $action, $id, $transdate) = @_;
 
2162     $dbh = $self->dbconnect($myconfig);
 
2166   # if we have an id add audittrail, otherwise get a new timestamp
 
2168   if ($audittrail->{id}) {
 
2170     $query = qq|SELECT audittrail FROM defaults|;
 
2172     if ($dbh->selectrow_array($query)) {
 
2173       my ($null, $employee_id) = $self->get_employee($dbh);
 
2175       if ($self->{audittrail} && !$myconfig) {
 
2176         chop $self->{audittrail};
 
2178         my @a = split /\|/, $self->{audittrail};
 
2182         my @flds = qw(tablename reference formname action transdate);
 
2184         # put into hash and remove dups
 
2186           $key = "$a[2]$a[3]";
 
2188           $newtrail{$key} = { map { $_ => $a[$i++] } @flds };
 
2192         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2193                     formname, action, employee_id, transdate)
 
2194                     VALUES ($audittrail->{id}, ?, ?,
 
2195                     ?, ?, $employee_id, ?)|;
 
2196         my $sth = $dbh->prepare($query) || $self->dberror($query);
 
2198         foreach $key (sort { $newtrail{$a}{transdate} cmp $newtrail{$b}{transdate} } keys %newtrail) {
 
2200           for (@flds) { $sth->bind_param($i++, $newtrail{$key}{$_}) }
 
2202           $sth->execute || $self->dberror;
 
2208       if ($audittrail->{transdate}) {
 
2209         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2210                     formname, action, employee_id, transdate) VALUES (
 
2211                     $audittrail->{id}, '$audittrail->{tablename}', |
 
2212                     .$dbh->quote($audittrail->{reference}).qq|,
 
2213                     '$audittrail->{formname}', '$audittrail->{action}',
 
2214                     $employee_id, '$audittrail->{transdate}')|;
 
2216         $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
 
2217                     formname, action, employee_id) VALUES ($audittrail->{id},
 
2218                     '$audittrail->{tablename}', |
 
2219                     .$dbh->quote($audittrail->{reference}).qq|,
 
2220                     '$audittrail->{formname}', '$audittrail->{action}',
 
2227     $query = qq|SELECT current_timestamp FROM defaults|;
 
2228     my ($timestamp) = $dbh->selectrow_array($query);
 
2230     $rv = "$audittrail->{tablename}|$audittrail->{reference}|$audittrail->{formname}|$audittrail->{action}|$timestamp|";
 
2233   $dbh->disconnect if $disconnect;
 
2242   $main::lxdebug->enter_sub();
 
2244   my ($type, $country, $NLS_file) = @_;
 
2248   if ($country && -d "locale/$country") {
 
2249     $self->{countrycode} = $country;
 
2250     eval { require "locale/$country/$NLS_file"; };
 
2253   $self->{NLS_file} = $NLS_file;
 
2255   push @{ $self->{LONG_MONTH} },
 
2256     ("January",   "February", "March",    "April",
 
2257      "May ",      "June",     "July",     "August",
 
2258      "September", "October",  "November", "December");
 
2259   push @{ $self->{SHORT_MONTH} },
 
2260     (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
 
2262   $main::lxdebug->leave_sub();
 
2268   my ($self, $text) = @_;
 
2270   return (exists $self{texts}{$text}) ? $self{texts}{$text} : $text;
 
2274   $main::lxdebug->enter_sub();
 
2276   my ($self, $text) = @_;
 
2278   if (exists $self{subs}{$text}) {
 
2279     $text = $self{subs}{$text};
 
2281     if ($self->{countrycode} && $self->{NLS_file}) {
 
2283          "$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
 
2287   $main::lxdebug->leave_sub();
 
2293   $main::lxdebug->enter_sub();
 
2295   my ($self, $myconfig, $date, $longformat) = @_;
 
2298   my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
 
2303     $spc = $myconfig->{dateformat};
 
2305     $spc = substr($spc, 1, 1);
 
2307     if ($date =~ /\D/) {
 
2308       if ($myconfig->{dateformat} =~ /^yy/) {
 
2309         ($yy, $mm, $dd) = split /\D/, $date;
 
2311       if ($myconfig->{dateformat} =~ /^mm/) {
 
2312         ($mm, $dd, $yy) = split /\D/, $date;
 
2314       if ($myconfig->{dateformat} =~ /^dd/) {
 
2315         ($dd, $mm, $yy) = split /\D/, $date;
 
2318       $date = substr($date, 2);
 
2319       ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
2324     $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
2325     $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
2327     if ($myconfig->{dateformat} =~ /^dd/) {
 
2328       if (defined $longformat && $longformat == 0) {
 
2330         $dd = "0$dd" if ($dd < 10);
 
2331         $mm = "0$mm" if ($mm < 10);
 
2332         $longdate = "$dd$spc$mm$spc$yy";
 
2335         $longdate .= ($spc eq '.') ? ". " : " ";
 
2336         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
2338     } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
 
2340       # Use German syntax with the ISO date style "yyyy-mm-dd" because
 
2341       # Lx-Office is mainly used in Germany or German speaking countries.
 
2342       if (defined $longformat && $longformat == 0) {
 
2344         $dd = "0$dd" if ($dd < 10);
 
2345         $mm = "0$mm" if ($mm < 10);
 
2346         $longdate = "$yy-$mm-$dd";
 
2348         $longdate = "$dd. ";
 
2349         $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
 
2352       if (defined $longformat && $longformat == 0) {
 
2354         $dd = "0$dd" if ($dd < 10);
 
2355         $mm = "0$mm" if ($mm < 10);
 
2356         $longdate = "$mm$spc$dd$spc$yy";
 
2358         $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
 
2364   $main::lxdebug->leave_sub();
 
2370   $main::lxdebug->enter_sub();
 
2372   my ($self, $myconfig, $date, $longformat) = @_;
 
2375     $main::lxdebug->leave_sub();
 
2380   $spc = $myconfig->{dateformat};
 
2382   $spc = substr($spc, 1, 1);
 
2384   if ($date =~ /\D/) {
 
2385     if ($myconfig->{dateformat} =~ /^yy/) {
 
2386       ($yy, $mm, $dd) = split /\D/, $date;
 
2387     } elsif ($myconfig->{dateformat} =~ /^mm/) {
 
2388       ($mm, $dd, $yy) = split /\D/, $date;
 
2389     } elsif ($myconfig->{dateformat} =~ /^dd/) {
 
2390       ($dd, $mm, $yy) = split /\D/, $date;
 
2393     $date = substr($date, 2);
 
2394     ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
 
2399   $yy = ($yy < 70) ? $yy + 2000 : $yy;
 
2400   $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
 
2402   $main::lxdebug->leave_sub();
 
2403   return ($yy, $mm, $dd);