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.3.9";
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;
227 print qq|<input type=hidden name="$_" value="|
228 . $self->quote($self->{$_})
232 delete $self->{header};
233 for (sort keys %$self) {
234 print qq|<input type=hidden name="$_" value="|
235 . $self->quote($self->{$_})
243 $main::lxdebug->enter_sub();
245 my ($self, $msg) = @_;
246 if ($ENV{HTTP_USER_AGENT}) {
248 $self->show_generic_error($msg);
252 if ($self->{error_function}) {
253 &{ $self->{error_function} }($msg);
259 $main::lxdebug->leave_sub();
263 $main::lxdebug->enter_sub();
265 my ($self, $msg) = @_;
267 if ($ENV{HTTP_USER_AGENT}) {
270 if (!$self->{header}) {
283 if ($self->{info_function}) {
284 &{ $self->{info_function} }($msg);
290 $main::lxdebug->leave_sub();
294 $main::lxdebug->enter_sub();
296 my ($self, $str, $cols, $maxrows) = @_;
300 map { $rows += int(((length) - 2) / $cols) + 1 } split /\r/, $str;
302 $maxrows = $rows unless defined $maxrows;
304 $main::lxdebug->leave_sub();
306 return ($rows > $maxrows) ? $maxrows : $rows;
310 $main::lxdebug->enter_sub();
312 my ($self, $msg) = @_;
314 $self->error("$msg\n" . $DBI::errstr);
316 $main::lxdebug->leave_sub();
320 $main::lxdebug->enter_sub();
322 my ($self, $name, $msg) = @_;
324 if ($self->{$name} =~ /^\s*$/) {
327 $main::lxdebug->leave_sub();
331 $main::lxdebug->enter_sub();
335 if ($self->{header}) {
336 $main::lxdebug->leave_sub();
340 my ($stylesheet, $favicon, $charset);
342 if ($ENV{HTTP_USER_AGENT}) {
344 if ($self->{stylesheet} && (-f "css/$self->{stylesheet}")) {
346 qq|<LINK REL="stylesheet" HREF="css/$self->{stylesheet}" TYPE="text/css" TITLE="Lx-Office stylesheet">
350 if ($self->{favicon} && (-f "$self->{favicon}")) {
352 qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
356 if ($self->{charset}) {
358 qq|<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=$self->{charset}">
361 if ($self->{landscape}) {
362 $pagelayout = qq|<style type="text/css">
363 \@page { size:landscape; }
366 if ($self->{fokus}) {
367 $fokus = qq|<script type="text/javascript">
369 function fokus(){document.$self->{fokus}.focus();}
376 if ($self->{jsscript} == 1) {
379 <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
380 <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
381 <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
382 <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
389 ? "$self->{title} - $self->{titlebar}"
392 foreach $item (@ { $self->{AJAX} }) {
393 $ajax .= $item->show_javascript();
395 print qq|Content-Type: text/html
399 <title>$self->{titlebar}</title>
407 <script type="text/javascript" src="js/highlight_input.js"></script>
408 <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
410 <script type="text/javascript" src="js/tabcontent.js">
412 /***********************************************
413 * Tab Content script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
414 * This notice MUST stay intact for legal use
415 * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
416 ***********************************************/
426 $main::lxdebug->leave_sub();
429 sub parse_html_template {
430 $main::lxdebug->enter_sub();
432 my ($self, $file, $additional_params) = @_;
435 if (!defined($main::myconfig) || !defined($main::myconfig{"countrycode"})) {
436 $language = $main::language;
438 $language = $main::myconfig{"countrycode"};
441 if (-f "templates/webpages/${file}_${language}.html") {
442 if ((-f ".developer") &&
443 (-f "templates/webpages/${file}_master.html") &&
444 ((stat("templates/webpages/${file}_master.html"))[9] >
445 (stat("templates/webpages/${file}_${language}.html"))[9])) {
446 my $info = "Developper information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
447 "Please re-run 'locales.pl' in 'locale/${language}'.";
448 print(qq|<pre>$info</pre>|);
452 $file = "templates/webpages/${file}_${language}.html";
453 } elsif (-f "templates/webpages/${file}.html") {
454 $file = "templates/webpages/${file}.html";
456 my $info = "Web page template '${file}' not found.\n" .
457 "Please re-run 'locales.pl' in 'locale/${language}'.";
458 print(qq|<pre>$info</pre>|);
462 my $template = HTML::Template->new("filename" => $file,
463 "die_on_bad_params" => 0,
465 "case_sensitive" => 1,
466 "loop_context_vars" => 1,
469 $additional_params = {} unless ($additional_params);
470 if ($self->{"DEBUG"}) {
471 $additional_params->{"DEBUG"} = $self->{"DEBUG"};
474 if ($additional_params->{"DEBUG"}) {
475 $additional_params->{"DEBUG"} =
476 "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
479 if (%main::myconfig) {
480 map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
481 my $jsc_dateformat = $main::myconfig{"dateformat"};
482 $jsc_dateformat =~ s/d+/\%d/gi;
483 $jsc_dateformat =~ s/m+/\%m/gi;
484 $jsc_dateformat =~ s/y+/\%Y/gi;
485 $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
488 $additional_params->{"conf_jscalendar"} = $main::jscalendar;
489 $additional_params->{"conf_lizenzen"} = $main::lizenzen;
490 $additional_params->{"conf_latex_templates"} = $main::latex;
491 $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
493 my @additional_param_names = keys(%{$additional_params});
494 foreach my $key ($template->param()) {
495 my $param = $self->{$key};
496 $param = $additional_params->{$key} if (grep(/^${key}$/, @additional_param_names));
497 $param = [] if (($template->query("name" => $key) eq "LOOP") && (ref($param) ne "ARRAY"));
498 $template->param($key => $param);
501 my $output = $template->output();
503 $main::lxdebug->leave_sub();
508 sub show_generic_error {
509 my ($self, $error, $title, $action) = @_;
512 $add_params->{"title"} = $title if ($title);
513 $self->{"label_error"} = $error;
517 map({ delete($self->{$_}); } qw(action));
518 map({ push(@vars, { "name" => $_, "value" => $self->{$_} })
519 if (!ref($self->{$_})); }
521 $add_params->{"SHOW_BUTTON"} = 1;
522 $add_params->{"BUTTON_LABEL"} = $action;
524 $add_params->{"VARIABLES"} = \@vars;
527 print($self->parse_html_template("generic/error", $add_params));
529 die("Error: $error\n");
532 sub show_generic_information {
533 my ($self, $error, $title) = @_;
536 $add_params->{"title"} = $title if ($title);
537 $self->{"label_information"} = $error;
540 print($self->parse_html_template("generic/information", $add_params));
542 die("Information: $error\n");
545 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
546 # changed it to accept an arbitrary number of triggers - sschoeling
548 $main::lxdebug->enter_sub();
551 my $myconfig = shift;
554 # set dateform for jsscript
556 $ifFormat = "%d.%m.%Y";
557 if ($myconfig->{dateformat} eq "dd.mm.yy") {
558 $ifFormat = "%d.%m.%Y";
560 if ($myconfig->{dateformat} eq "dd-mm-yy") {
561 $ifFormat = "%d-%m-%Y";
563 if ($myconfig->{dateformat} eq "dd/mm/yy") {
564 $ifFormat = "%d/%m/%Y";
566 if ($myconfig->{dateformat} eq "mm/dd/yy") {
567 $ifFormat = "%m/%d/%Y";
569 if ($myconfig->{dateformat} eq "mm-dd-yy") {
570 $ifFormat = "%m-%d-%Y";
572 if ($myconfig->{dateformat} eq "yyyy-mm-dd") {
573 $ifFormat = "%Y-%m-%d";
585 inputField : "| . (shift) . qq|",
586 ifFormat :"$ifFormat",
587 align : "| . (shift) . qq|",
588 button : "| . (shift) . qq|"
594 <script type="text/javascript">
595 <!--| . join("", @triggers) . qq|//-->
599 $main::lxdebug->leave_sub();
602 } #end sub write_trigger
605 $main::lxdebug->enter_sub();
607 my ($self, $msg) = @_;
609 if ($self->{callback}) {
611 ($script, $argv) = split(/\?/, $self->{callback});
612 exec("perl", "$script", $argv);
620 $main::lxdebug->leave_sub();
623 # sort of columns removed - empty sub
625 $main::lxdebug->enter_sub();
627 my ($self, @columns) = @_;
629 $main::lxdebug->leave_sub();
635 $main::lxdebug->enter_sub(2);
637 my ($self, $myconfig, $amount, $places, $dash) = @_;
638 my $neg = ($amount =~ s/-//);
640 $amount = $self->round_amount($amount, $places) if ($places =~ /\d/);
642 my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
643 my @p = split /\./, $amount ; # split amount at decimal point
645 $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
648 $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
651 ($dash =~ /-/) ? ($neg ? "($amount)" : "$amount" ) :
652 ($dash =~ /DRCR/) ? ($neg ? "$amount DR" : "$amount CR" ) :
653 ($neg ? "-$amount" : "$amount" ) ;
656 $main::lxdebug->leave_sub(2);
661 $main::lxdebug->enter_sub(2);
663 my ($self, $myconfig, $amount) = @_;
665 if ($myconfig->{in_numberformat} == 1) {
666 # Extra input number format 1000.00 or 1000,00
668 $amount = scalar reverse $amount;
669 $amount =~ s/\./DOT/;
671 $amount =~ s/DOT/\./;
672 $amount = scalar reverse $amount;
673 $main::lxdebug->leave_sub(2);
674 return ($amount * 1);
677 if ( ($myconfig->{numberformat} eq '1.000,00')
678 || ($myconfig->{numberformat} eq '1000,00')) {
683 if ($myconfig->{numberformat} eq "1'000.00") {
689 $main::lxdebug->leave_sub(2);
691 return ($amount * 1);
695 $main::lxdebug->enter_sub(2);
697 my ($self, $amount, $places) = @_;
700 # Rounding like "Kaufmannsrunden"
701 # Descr. http://de.wikipedia.org/wiki/Rundung
703 # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
706 $amount = $amount * (10**($places));
707 $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
709 $main::lxdebug->leave_sub(2);
711 return $round_amount;
716 $main::lxdebug->enter_sub();
718 my ($self, $myconfig, $userspath) = @_;
721 $self->{"cwd"} = getcwd();
722 $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
724 if ($self->{"format"} =~ /(opendocument|oasis)/i) {
725 $template = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
726 } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
727 $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
728 $template = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
729 } elsif (($self->{"format"} =~ /html/i) ||
730 (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
731 $template = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
734 # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
735 $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
737 map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
738 qw(email tel fax name signature company address businessnumber));
740 $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
742 # OUT is used for the media, screen, printer, email
743 # for postscript we store a copy in a temporary file
745 $self->{tmpfile} = "$userspath/${fileid}.$self->{IN}";
746 if ($template->uses_temp_file() || $self->{media} eq 'email') {
748 $self->{OUT} = ">$self->{tmpfile}";
752 open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
754 open(OUT, ">-") or $self->error("STDOUT : $!");
758 if (!$template->parse(*OUT)) {
760 $self->error("$self->{IN} : " . $template->get_error());
766 #print(STDERR Dumper($self));
768 if ($template->uses_temp_file() || $self->{media} eq 'email') {
770 if ($self->{media} eq 'email') {
774 my $mail = new Mailer;
776 map { $mail->{$_} = $self->{$_} }
777 qw(cc bcc subject message version format charset);
778 $mail->{to} = qq|$self->{email}|;
779 $mail->{from} = qq|"$myconfig->{name}" <$myconfig->{email}>|;
780 $mail->{fileid} = "$fileid.";
781 $myconfig->{signature} =~ s/\\r\\n/\\n/g;
783 # if we send html or plain text inline
784 if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
785 $mail->{contenttype} = "text/html";
787 $mail->{message} =~ s/\r\n/<br>\n/g;
788 $myconfig->{signature} =~ s/\\n/<br>\n/g;
789 $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
791 open(IN, $self->{tmpfile})
792 or $self->error($self->cleanup . "$self->{tmpfile} : $!");
794 $mail->{message} .= $_;
801 @{ $mail->{attachments} } = ($self->{tmpfile}) unless ($form->{do_not_attach});
803 $mail->{message} =~ s/\r\n/\n/g;
804 $myconfig->{signature} =~ s/\\n/\n/g;
805 $mail->{message} .= "\n-- \n$myconfig->{signature}";
809 my $err = $mail->send($out);
810 $self->error($self->cleanup . "$err") if ($err);
816 my $numbytes = (-s $self->{tmpfile});
817 open(IN, $self->{tmpfile})
818 or $self->error($self->cleanup . "$self->{tmpfile} : $!");
820 $self->{copies} = 1 unless $self->{media} eq 'printer';
822 chdir("$self->{cwd}");
823 #print(STDERR "Kopien $self->{copies}\n");
824 #print(STDERR "OUT $self->{OUT}\n");
825 for my $i (1 .. $self->{copies}) {
827 open(OUT, $self->{OUT})
828 or $self->error($self->cleanup . "$self->{OUT} : $!");
832 print qq|Content-Type: | . $template->get_mime_type() . qq|
833 Content-Disposition: attachment; filename="$self->{tmpfile}"
834 Content-Length: $numbytes
838 open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
858 chdir("$self->{cwd}");
859 $main::lxdebug->leave_sub();
863 $main::lxdebug->enter_sub();
867 chdir("$self->{tmpdir}");
870 if (-f "$self->{tmpfile}.err") {
871 open(FH, "$self->{tmpfile}.err");
876 if ($self->{tmpfile}) {
877 $self->{tmpfile} =~ s|.*/||g;
879 $self->{tmpfile} =~ s/\.\w+$//g;
880 my $tmpfile = $self->{tmpfile};
881 unlink(<$tmpfile.*>);
884 chdir("$self->{cwd}");
886 $main::lxdebug->leave_sub();
892 $main::lxdebug->enter_sub();
894 my ($self, $date, $myconfig) = @_;
896 if ($date && $date =~ /\D/) {
898 if ($myconfig->{dateformat} =~ /^yy/) {
899 ($yy, $mm, $dd) = split /\D/, $date;
901 if ($myconfig->{dateformat} =~ /^mm/) {
902 ($mm, $dd, $yy) = split /\D/, $date;
904 if ($myconfig->{dateformat} =~ /^dd/) {
905 ($dd, $mm, $yy) = split /\D/, $date;
910 $yy = ($yy < 70) ? $yy + 2000 : $yy;
911 $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
913 $dd = "0$dd" if ($dd < 10);
914 $mm = "0$mm" if ($mm < 10);
919 $main::lxdebug->leave_sub();
924 # Database routines used throughout
927 $main::lxdebug->enter_sub();
929 my ($self, $myconfig) = @_;
931 # connect to database
933 DBI->connect($myconfig->{dbconnect},
934 $myconfig->{dbuser}, $myconfig->{dbpasswd})
938 if ($myconfig->{dboptions}) {
939 $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
942 $main::lxdebug->leave_sub();
947 sub dbconnect_noauto {
948 $main::lxdebug->enter_sub();
950 my ($self, $myconfig) = @_;
952 # connect to database
954 DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
955 $myconfig->{dbpasswd}, { AutoCommit => 0 })
959 if ($myconfig->{dboptions}) {
960 $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
963 $main::lxdebug->leave_sub();
969 $main::lxdebug->enter_sub();
971 my ($self, $dbh, $table, $field, $where, $value) = @_;
973 # if we have a value, go do it
976 # retrieve balance from table
977 my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
978 my $sth = $dbh->prepare($query);
980 $sth->execute || $self->dberror($query);
981 my ($balance) = $sth->fetchrow_array;
987 $query = "UPDATE $table SET $field = $balance WHERE $where";
988 $dbh->do($query) || $self->dberror($query);
990 $main::lxdebug->leave_sub();
993 sub update_exchangerate {
994 $main::lxdebug->enter_sub();
996 my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
998 # some sanity check for currency
1000 $main::lxdebug->leave_sub();
1004 my $query = qq|SELECT e.curr FROM exchangerate e
1005 WHERE e.curr = '$curr'
1006 AND e.transdate = '$transdate'
1008 my $sth = $dbh->prepare($query);
1009 $sth->execute || $self->dberror($query);
1012 if ($buy != 0 && $sell != 0) {
1013 $set = "buy = $buy, sell = $sell";
1014 } elsif ($buy != 0) {
1015 $set = "buy = $buy";
1016 } elsif ($sell != 0) {
1017 $set = "sell = $sell";
1020 if ($sth->fetchrow_array) {
1021 $query = qq|UPDATE exchangerate
1023 WHERE curr = '$curr'
1024 AND transdate = '$transdate'|;
1026 $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1027 VALUES ('$curr', $buy, $sell, '$transdate')|;
1030 $dbh->do($query) || $self->dberror($query);
1032 $main::lxdebug->leave_sub();
1035 sub save_exchangerate {
1036 $main::lxdebug->enter_sub();
1038 my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1040 my $dbh = $self->dbconnect($myconfig);
1042 my ($buy, $sell) = (0, 0);
1043 $buy = $rate if $fld eq 'buy';
1044 $sell = $rate if $fld eq 'sell';
1046 $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1050 $main::lxdebug->leave_sub();
1053 sub get_exchangerate {
1054 $main::lxdebug->enter_sub();
1056 my ($self, $dbh, $curr, $transdate, $fld) = @_;
1058 unless ($transdate) {
1059 $main::lxdebug->leave_sub();
1063 my $query = qq|SELECT e.$fld FROM exchangerate e
1064 WHERE e.curr = '$curr'
1065 AND e.transdate = '$transdate'|;
1066 my $sth = $dbh->prepare($query);
1067 $sth->execute || $self->dberror($query);
1069 my ($exchangerate) = $sth->fetchrow_array;
1072 if ($exchangerate == 0) {
1076 $main::lxdebug->leave_sub();
1078 return $exchangerate;
1081 sub set_payment_options {
1082 $main::lxdebug->enter_sub();
1084 my ($self, $myconfig, $transdate) = @_;
1086 if ($self->{payment_id}) {
1088 my $dbh = $self->dbconnect($myconfig);
1091 my $query = qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long FROM payment_terms p
1092 WHERE p.id = $self->{payment_id}|;
1093 my $sth = $dbh->prepare($query);
1094 $sth->execute || $self->dberror($query);
1096 ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto}, $self->{payment_terms}) = $sth->fetchrow_array;
1099 my $query = qq|SELECT date '$transdate' + $self->{terms_netto} AS netto_date,date '$transdate' + $self->{terms_skonto} AS skonto_date FROM payment_terms
1101 my $sth = $dbh->prepare($query);
1102 $sth->execute || $self->dberror($query);
1103 ($self->{netto_date}, $self->{skonto_date}) = $sth->fetchrow_array;
1106 $self->{skonto_amount} = $self->format_amount($myconfig, ($self->parse_amount($myconfig, $self->{subtotal}) * $self->{percent_skonto}), 2);
1108 $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1109 $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1110 $self->{payment_terms} =~ s/<%skonto_amount%>/$self->{skonto_amount}/g;
1115 $main::lxdebug->leave_sub();
1119 sub check_exchangerate {
1120 $main::lxdebug->enter_sub();
1122 my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1124 unless ($transdate) {
1125 $main::lxdebug->leave_sub();
1129 my $dbh = $self->dbconnect($myconfig);
1131 my $query = qq|SELECT e.$fld FROM exchangerate e
1132 WHERE e.curr = '$currency'
1133 AND e.transdate = '$transdate'|;
1134 my $sth = $dbh->prepare($query);
1135 $sth->execute || $self->dberror($query);
1137 my ($exchangerate) = $sth->fetchrow_array;
1141 $main::lxdebug->leave_sub();
1143 return $exchangerate;
1146 sub get_template_language {
1147 $main::lxdebug->enter_sub();
1149 my ($self, $myconfig) = @_;
1151 my $template_code = "";
1153 if ($self->{language_id}) {
1155 my $dbh = $self->dbconnect($myconfig);
1158 my $query = qq|SELECT l.template_code FROM language l
1159 WHERE l.id = $self->{language_id}|;
1160 my $sth = $dbh->prepare($query);
1161 $sth->execute || $self->dberror($query);
1163 ($template_code) = $sth->fetchrow_array;
1168 $main::lxdebug->leave_sub();
1170 return $template_code;
1173 sub get_printer_code {
1174 $main::lxdebug->enter_sub();
1176 my ($self, $myconfig) = @_;
1178 my $template_code = "";
1180 if ($self->{printer_id}) {
1182 my $dbh = $self->dbconnect($myconfig);
1185 my $query = qq|SELECT p.template_code,p.printer_command FROM printers p
1186 WHERE p.id = $self->{printer_id}|;
1187 my $sth = $dbh->prepare($query);
1188 $sth->execute || $self->dberror($query);
1190 ($template_code, $self->{printer_command}) = $sth->fetchrow_array;
1195 $main::lxdebug->leave_sub();
1197 return $template_code;
1201 $main::lxdebug->enter_sub();
1203 my ($self, $myconfig) = @_;
1205 my $template_code = "";
1207 if ($self->{shipto_id}) {
1209 my $dbh = $self->dbconnect($myconfig);
1212 my $query = qq|SELECT s.* FROM shipto s
1213 WHERE s.shipto_id = $self->{shipto_id}|;
1214 my $sth = $dbh->prepare($query);
1215 $sth->execute || $self->dberror($query);
1216 $ref = $sth->fetchrow_hashref(NAME_lc);
1217 map { $form->{$_} = $ref->{$_} } keys %$ref;
1222 $main::lxdebug->leave_sub();
1227 $main::lxdebug->enter_sub();
1229 my ($self, $dbh, $id, $module) = @_;
1233 qw(name department_1 department_2 street zipcode city country contact phone fax email)
1235 if ($self->{"shipto$item"}) {
1236 $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1238 $self->{"shipto$item"} =~ s/\'/\'\'/g;
1241 if ($self->{shipto_id}) {
1242 my $query = qq| UPDATE shipto set
1243 shiptoname = '$self->{shiptoname}',
1244 shiptodepartment_1 = '$self->{shiptodepartment_1}',
1245 shiptodepartment_2 = '$self->{shiptodepartment_2}',
1246 shiptostreet = '$self->{shiptostreet}',
1247 shiptozipcode = '$self->{shiptozipcode}',
1248 shiptocity = '$self->{shiptocity}',
1249 shiptocountry = '$self->{shiptocountry}',
1250 shiptocontact = '$self->{shiptocontact}',
1251 shiptophone = '$self->{shiptophone}',
1252 shiptofax = '$self->{shiptofax}',
1253 shiptoemail = '$self->{shiptoemail}'
1254 WHERE shipto_id = $self->{shipto_id}|;
1255 $dbh->do($query) || $self->dberror($query);
1258 qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2, shiptostreet,
1259 shiptozipcode, shiptocity, shiptocountry, shiptocontact,
1260 shiptophone, shiptofax, shiptoemail, module) VALUES ($id,
1261 '$self->{shiptoname}', '$self->{shiptodepartment_1}', '$self->{shiptodepartment_2}', '$self->{shiptostreet}',
1262 '$self->{shiptozipcode}', '$self->{shiptocity}',
1263 '$self->{shiptocountry}', '$self->{shiptocontact}',
1264 '$self->{shiptophone}', '$self->{shiptofax}',
1265 '$self->{shiptoemail}', '$module')|;
1266 $dbh->do($query) || $self->dberror($query);
1270 $main::lxdebug->leave_sub();
1274 $main::lxdebug->enter_sub();
1276 my ($self, $dbh) = @_;
1278 my $query = qq|SELECT e.id, e.name FROM employee e
1279 WHERE e.login = '$self->{login}'|;
1280 my $sth = $dbh->prepare($query);
1281 $sth->execute || $self->dberror($query);
1283 ($self->{employee_id}, $self->{employee}) = $sth->fetchrow_array;
1284 $self->{employee_id} *= 1;
1288 $main::lxdebug->leave_sub();
1291 # get other contact for transaction and form - html/tex
1293 $main::lxdebug->enter_sub();
1295 my ($self, $dbh, $id) = @_;
1297 my $query = qq|SELECT c.*
1300 $sth = $dbh->prepare($query);
1301 $sth->execute || $self->dberror($query);
1303 $ref = $sth->fetchrow_hashref(NAME_lc);
1305 push @{ $self->{$_} }, $ref;
1308 $main::lxdebug->leave_sub();
1311 # get contacts for id, if no contact return {"","","","",""}
1313 $main::lxdebug->enter_sub();
1315 my ($self, $dbh, $id) = @_;
1317 my $query = qq|SELECT c.cp_id, c.cp_cv_id, c.cp_name, c.cp_givenname, c.cp_abteilung
1319 WHERE cp_cv_id=$id|;
1320 my $sth = $dbh->prepare($query);
1321 $sth->execute || $self->dberror($query);
1324 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1325 push @{ $self->{all_contacts} }, $ref;
1330 push @{ $self->{all_contacts} }, { { "", "", "", "", "", "" } };
1333 $main::lxdebug->leave_sub();
1336 # this sub gets the id and name from $table
1338 $main::lxdebug->enter_sub();
1340 my ($self, $myconfig, $table) = @_;
1342 # connect to database
1343 my $dbh = $self->dbconnect($myconfig);
1345 my $name = $self->like(lc $self->{$table});
1346 my $customernumber = $self->like(lc $self->{customernumber});
1348 if ($self->{customernumber} ne "") {
1349 $query = qq~SELECT c.id, c.name,
1350 c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
1352 WHERE (lower(c.customernumber) LIKE '$customernumber') AND (not c.obsolete)
1355 $query = qq~SELECT c.id, c.name,
1356 c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
1358 WHERE (lower(c.name) LIKE '$name') AND (not c.obsolete)
1362 if ($self->{openinvoices}) {
1363 $query = qq~SELECT DISTINCT c.id, c.name,
1364 c.street || ' ' || c.zipcode || ' ' || c.city || ' ' || c.country AS address
1365 FROM $self->{arap} a
1366 JOIN $table c ON (a.${table}_id = c.id)
1367 WHERE NOT a.amount = a.paid
1368 AND lower(c.name) LIKE '$name'
1371 my $sth = $dbh->prepare($query);
1373 $sth->execute || $self->dberror($query);
1376 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1377 push(@{ $self->{name_list} }, $ref);
1383 $main::lxdebug->leave_sub();
1388 # the selection sub is used in the AR, AP, IS, IR and OE module
1391 $main::lxdebug->enter_sub();
1393 my ($self, $myconfig, $table, $module) = @_;
1396 my $dbh = $self->dbconnect($myconfig);
1398 my $query = qq|SELECT count(*) FROM $table|;
1399 my $sth = $dbh->prepare($query);
1400 $sth->execute || $self->dberror($query);
1401 my ($count) = $sth->fetchrow_array;
1404 # build selection list
1405 if ($count < $myconfig->{vclimit}) {
1406 $query = qq|SELECT id, name
1407 FROM $table WHERE not obsolete
1409 $sth = $dbh->prepare($query);
1410 $sth->execute || $self->dberror($query);
1412 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1413 push @{ $self->{"all_$table"} }, $ref;
1421 $self->get_employee($dbh);
1423 # setup sales contacts
1424 $query = qq|SELECT e.id, e.name
1427 AND NOT e.id = $self->{employee_id}|;
1428 $sth = $dbh->prepare($query);
1429 $sth->execute || $self->dberror($query);
1431 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1432 push @{ $self->{all_employees} }, $ref;
1437 push @{ $self->{all_employees} },
1438 { id => $self->{employee_id},
1439 name => $self->{employee} };
1441 # sort the whole thing
1442 @{ $self->{all_employees} } =
1443 sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
1445 if ($module eq 'AR') {
1447 # prepare query for departments
1448 $query = qq|SELECT d.id, d.description
1454 $query = qq|SELECT d.id, d.description
1459 $sth = $dbh->prepare($query);
1460 $sth->execute || $self->dberror($query);
1462 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1463 push @{ $self->{all_departments} }, $ref;
1468 $query = qq|SELECT id, description
1471 $sth = $dbh->prepare($query);
1472 $sth->execute || $form->dberror($query);
1474 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1475 push @{ $self->{languages} }, $ref;
1480 $query = qq|SELECT printer_description, id
1483 $sth = $dbh->prepare($query);
1484 $sth->execute || $form->dberror($query);
1486 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1487 push @{ $self->{printers} }, $ref;
1493 $query = qq|SELECT id, description
1496 $sth = $dbh->prepare($query);
1497 $sth->execute || $form->dberror($query);
1499 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1500 push @{ $self->{payment_terms} }, $ref;
1504 $main::lxdebug->leave_sub();
1508 sub language_payment {
1509 $main::lxdebug->enter_sub();
1511 my ($self, $myconfig) = @_;
1512 undef $self->{languages};
1513 undef $self->{payment_terms};
1514 undef $self->{printers};
1517 my $dbh = $self->dbconnect($myconfig);
1519 my $query = qq|SELECT id, description
1522 my $sth = $dbh->prepare($query);
1523 $sth->execute || $form->dberror($query);
1525 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1526 push @{ $self->{languages} }, $ref;
1531 $query = qq|SELECT printer_description, id
1534 $sth = $dbh->prepare($query);
1535 $sth->execute || $form->dberror($query);
1537 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1538 push @{ $self->{printers} }, $ref;
1543 $query = qq|SELECT id, description
1546 $sth = $dbh->prepare($query);
1547 $sth->execute || $form->dberror($query);
1549 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
1550 push @{ $self->{payment_terms} }, $ref;
1554 # get buchungsgruppen
1555 $query = qq|SELECT id, description
1556 FROM buchungsgruppen|;
1557 $sth = $dbh->prepare($query);
1558 $sth->execute || $form->dberror($query);
1560 $self->{BUCHUNGSGRUPPEN} = [];
1561 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1562 push @{ $self->{BUCHUNGSGRUPPEN} }, $ref;
1567 $main::lxdebug->leave_sub();
1570 # this is only used for reports
1571 sub all_departments {
1572 $main::lxdebug->enter_sub();
1574 my ($self, $myconfig, $table) = @_;
1576 my $dbh = $self->dbconnect($myconfig);
1577 my $where = "1 = 1";
1579 if (defined $table) {
1580 if ($table eq 'customer') {
1581 $where = " d.role = 'P'";
1585 my $query = qq|SELECT d.id, d.description
1589 my $sth = $dbh->prepare($query);
1590 $sth->execute || $self->dberror($query);
1592 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1593 push @{ $self->{all_departments} }, $ref;
1599 $main::lxdebug->leave_sub();
1603 $main::lxdebug->enter_sub();
1605 my ($self, $module, $myconfig, $table) = @_;
1607 $self->all_vc($myconfig, $table, $module);
1609 # get last customers or vendors
1612 my $dbh = $self->dbconnect($myconfig);
1616 # now get the account numbers
1617 $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id
1619 WHERE c.link LIKE '%$module%'
1622 $sth = $dbh->prepare($query);
1623 $sth->execute || $self->dberror($query);
1625 $self->{accounts} = "";
1626 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1628 foreach my $key (split /:/, $ref->{link}) {
1629 if ($key =~ /$module/) {
1631 # cross reference for keys
1632 $xkeyref{ $ref->{accno} } = $key;
1634 push @{ $self->{"${module}_links"}{$key} },
1635 { accno => $ref->{accno},
1636 description => $ref->{description},
1637 taxkey => $ref->{taxkey_id} };
1639 $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
1645 # get taxkeys and description
1646 $query = qq|SELECT taxkey, taxdescription
1648 $sth = $dbh->prepare($query);
1649 $sth->execute || $self->dberror($query);
1651 $ref = $sth->fetchrow_hashref(NAME_lc);
1653 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1654 push @{ $self->{TAXKEY} }, $ref;
1661 $query = qq|SELECT id, description
1663 $sth = $dbh->prepare($query);
1664 $sth->execute || $form->dberror($query);
1667 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1668 push @{ $self->{TAXZONE} }, $ref;
1672 if (($module eq "AP") || ($module eq "AR")) {
1674 # get tax rates and description
1675 $query = qq| SELECT * FROM tax t|;
1676 $sth = $dbh->prepare($query);
1677 $sth->execute || $self->dberror($query);
1679 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1680 push @{ $self->{TAX} }, $ref;
1686 my $arap = ($table eq 'customer') ? 'ar' : 'ap';
1688 $query = qq|SELECT a.cp_id, a.invnumber, a.transdate,
1689 a.${table}_id, a.datepaid, a.duedate, a.ordnumber,
1690 a.taxincluded, a.curr AS currency, a.notes, a.intnotes,
1691 c.name AS $table, a.department_id, d.description AS department,
1692 a.amount AS oldinvtotal, a.paid AS oldtotalpaid,
1693 a.employee_id, e.name AS employee, a.gldate, a.type
1695 JOIN $table c ON (a.${table}_id = c.id)
1696 LEFT JOIN employee e ON (e.id = a.employee_id)
1697 LEFT JOIN department d ON (d.id = a.department_id)
1698 WHERE a.id = $self->{id}|;
1699 $sth = $dbh->prepare($query);
1700 $sth->execute || $self->dberror($query);
1702 $ref = $sth->fetchrow_hashref(NAME_lc);
1703 foreach $key (keys %$ref) {
1704 $self->{$key} = $ref->{$key};
1708 # get amounts from individual entries
1709 $query = qq|SELECT c.accno, c.description, a.source, a.amount, a.memo,
1710 a.transdate, a.cleared, a.project_id, p.projectnumber, a.taxkey, t.rate
1712 JOIN chart c ON (c.id = a.chart_id)
1713 LEFT JOIN project p ON (p.id = a.project_id)
1714 LEFT Join tax t ON (a.taxkey = t.taxkey)
1715 WHERE a.trans_id = $self->{id}
1716 AND a.fx_transaction = '0'
1717 ORDER BY a.oid,a.transdate|;
1718 $sth = $dbh->prepare($query);
1719 $sth->execute || $self->dberror($query);
1721 my $fld = ($table eq 'customer') ? 'buy' : 'sell';
1723 # get exchangerate for currency
1724 $self->{exchangerate} =
1725 $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
1729 # store amounts in {acc_trans}{$key} for multiple accounts
1730 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
1731 $ref->{exchangerate} =
1732 $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate},
1734 if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
1737 if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
1738 $ref->{amount} *= -1;
1740 $ref->{index} = $index;
1742 push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
1746 $query = qq|SELECT d.curr AS currencies, d.closedto, d.revtrans,
1747 (SELECT c.accno FROM chart c
1748 WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
1749 (SELECT c.accno FROM chart c
1750 WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
1752 $sth = $dbh->prepare($query);
1753 $sth->execute || $self->dberror($query);
1755 $ref = $sth->fetchrow_hashref(NAME_lc);
1756 map { $self->{$_} = $ref->{$_} } keys %$ref;
1762 $query = qq|SELECT current_date AS transdate,
1763 d.curr AS currencies, d.closedto, d.revtrans,
1764 (SELECT c.accno FROM chart c
1765 WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
1766 (SELECT c.accno FROM chart c
1767 WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
1769 $sth = $dbh->prepare($query);
1770 $sth->execute || $self->dberror($query);
1772 $ref = $sth->fetchrow_hashref(NAME_lc);
1773 map { $self->{$_} = $ref->{$_} } keys %$ref;
1776 if ($self->{"$self->{vc}_id"}) {
1778 # only setup currency
1779 ($self->{currency}) = split /:/, $self->{currencies};
1783 $self->lastname_used($dbh, $myconfig, $table, $module);
1785 my $fld = ($table eq 'customer') ? 'buy' : 'sell';
1787 # get exchangerate for currency
1788 $self->{exchangerate} =
1789 $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate},
1798 $main::lxdebug->leave_sub();
1802 $main::lxdebug->enter_sub();
1804 my ($self, $dbh, $myconfig, $table, $module) = @_;
1806 my $arap = ($table eq 'customer') ? "ar" : "ap";
1807 my $where = "1 = 1";
1809 if ($self->{type} =~ /_order/) {
1811 $where = "quotation = '0'";
1813 if ($self->{type} =~ /_quotation/) {
1815 $where = "quotation = '1'";
1818 my $query = qq|SELECT MAX(id) FROM $arap
1820 AND ${table}_id > 0|;
1821 my $sth = $dbh->prepare($query);
1822 $sth->execute || $self->dberror($query);
1824 my ($trans_id) = $sth->fetchrow_array;
1828 $query = qq|SELECT ct.name, a.curr, a.${table}_id,
1829 current_date + ct.terms AS duedate, a.department_id,
1830 d.description AS department
1832 JOIN $table ct ON (a.${table}_id = ct.id)
1833 LEFT JOIN department d ON (a.department_id = d.id)
1834 WHERE a.id = $trans_id|;
1835 $sth = $dbh->prepare($query);
1836 $sth->execute || $self->dberror($query);
1838 ($self->{$table}, $self->{currency}, $self->{"${table}_id"},
1839 $self->{duedate}, $self->{department_id}, $self->{department})
1840 = $sth->fetchrow_array;
1843 $main::lxdebug->leave_sub();
1847 $main::lxdebug->enter_sub();
1849 my ($self, $myconfig, $thisdate, $days) = @_;
1851 my $dbh = $self->dbconnect($myconfig);
1856 my $dateformat = $myconfig->{dateformat};
1857 $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
1859 $query = qq|SELECT to_date('$thisdate', '$dateformat') + $days AS thisdate
1861 $sth = $dbh->prepare($query);
1862 $sth->execute || $self->dberror($query);
1864 $query = qq|SELECT current_date AS thisdate
1866 $sth = $dbh->prepare($query);
1867 $sth->execute || $self->dberror($query);
1870 ($thisdate) = $sth->fetchrow_array;
1875 $main::lxdebug->leave_sub();
1881 $main::lxdebug->enter_sub();
1883 my ($self, $string) = @_;
1885 if ($string !~ /%/) {
1886 $string = "%$string%";
1889 $string =~ s/\'/\'\'/g;
1891 $main::lxdebug->leave_sub();
1897 $main::lxdebug->enter_sub();
1899 my ($self, $flds, $new, $count, $numrows) = @_;
1903 map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } }
1909 foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
1911 $j = $item->{ndx} - 1;
1912 map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
1916 for $i ($count + 1 .. $numrows) {
1917 map { delete $self->{"${_}_$i"} } @{$flds};
1920 $main::lxdebug->leave_sub();
1924 $main::lxdebug->enter_sub();
1926 my ($self, $myconfig) = @_;
1930 my $dbh = $self->dbconnect_noauto($myconfig);
1932 my $query = qq|DELETE FROM status
1933 WHERE formname = '$self->{formname}'
1935 my $sth = $dbh->prepare($query) || $self->dberror($query);
1937 if ($self->{formname} =~ /(check|receipt)/) {
1938 for $i (1 .. $self->{rowcount}) {
1939 $sth->execute($self->{"id_$i"} * 1) || $self->dberror($query);
1943 $sth->execute($self->{id}) || $self->dberror($query);
1947 my $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
1948 my $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
1950 my %queued = split / /, $self->{queued};
1952 if ($self->{formname} =~ /(check|receipt)/) {
1954 # this is a check or receipt, add one entry for each lineitem
1955 my ($accno) = split /--/, $self->{account};
1956 $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname,
1957 chart_id) VALUES (?, '$printed',
1958 '$queued{$self->{formname}}', '$self->{prinform}',
1959 (SELECT c.id FROM chart c WHERE c.accno = '$accno'))|;
1960 $sth = $dbh->prepare($query) || $self->dberror($query);
1962 for $i (1 .. $self->{rowcount}) {
1963 if ($self->{"checked_$i"}) {
1964 $sth->execute($self->{"id_$i"}) || $self->dberror($query);
1969 $query = qq|INSERT INTO status (trans_id, printed, emailed,
1970 spoolfile, formname)
1971 VALUES ($self->{id}, '$printed', '$emailed',
1972 '$queued{$self->{formname}}', '$self->{formname}')|;
1973 $dbh->do($query) || $self->dberror($query);
1979 $main::lxdebug->leave_sub();
1983 $main::lxdebug->enter_sub();
1985 my ($self, $dbh) = @_;
1987 my ($query, $printed, $emailed);
1989 my $formnames = $self->{printed};
1990 my $emailforms = $self->{emailed};
1992 my $query = qq|DELETE FROM status
1993 WHERE formname = '$self->{formname}'
1994 AND trans_id = $self->{id}|;
1995 $dbh->do($query) || $self->dberror($query);
1997 # this only applies to the forms
1998 # checks and receipts are posted when printed or queued
2000 if ($self->{queued}) {
2001 my %queued = split / /, $self->{queued};
2003 foreach my $formname (keys %queued) {
2004 $printed = ($self->{printed} =~ /$self->{formname}/) ? "1" : "0";
2005 $emailed = ($self->{emailed} =~ /$self->{formname}/) ? "1" : "0";
2007 $query = qq|INSERT INTO status (trans_id, printed, emailed,
2008 spoolfile, formname)
2009 VALUES ($self->{id}, '$printed', '$emailed',
2010 '$queued{$formname}', '$formname')|;
2011 $dbh->do($query) || $self->dberror($query);
2013 $formnames =~ s/$self->{formname}//;
2014 $emailforms =~ s/$self->{formname}//;
2019 # save printed, emailed info
2020 $formnames =~ s/^ +//g;
2021 $emailforms =~ s/^ +//g;
2024 map { $status{$_}{printed} = 1 } split / +/, $formnames;
2025 map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
2027 foreach my $formname (keys %status) {
2028 $printed = ($formnames =~ /$self->{formname}/) ? "1" : "0";
2029 $emailed = ($emailforms =~ /$self->{formname}/) ? "1" : "0";
2031 $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
2032 VALUES ($self->{id}, '$printed', '$emailed', '$formname')|;
2033 $dbh->do($query) || $self->dberror($query);
2036 $main::lxdebug->leave_sub();
2039 sub update_defaults {
2040 $main::lxdebug->enter_sub();
2042 my ($self, $myconfig, $fld) = @_;
2044 my $dbh = $self->dbconnect_noauto($myconfig);
2045 my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
2046 my $sth = $dbh->prepare($query);
2048 $sth->execute || $self->dberror($query);
2049 my ($var) = $sth->fetchrow_array;
2054 $query = qq|UPDATE defaults
2056 $dbh->do($query) || $self->dberror($query);
2061 $main::lxdebug->leave_sub();
2066 sub update_business {
2067 $main::lxdebug->enter_sub();
2069 my ($self, $myconfig, $business_id) = @_;
2071 my $dbh = $self->dbconnect_noauto($myconfig);
2073 qq|SELECT customernumberinit FROM business WHERE id=$business_id FOR UPDATE|;
2074 my $sth = $dbh->prepare($query);
2076 $sth->execute || $self->dberror($query);
2077 my ($var) = $sth->fetchrow_array;
2082 $query = qq|UPDATE business
2083 SET customernumberinit = '$var' WHERE id=$business_id|;
2084 $dbh->do($query) || $self->dberror($query);
2089 $main::lxdebug->leave_sub();
2095 $main::lxdebug->enter_sub();
2097 my ($self, $myconfig, $salesman) = @_;
2099 my $dbh = $self->dbconnect($myconfig);
2101 qq|SELECT id, name FROM customer WHERE (customernumber ilike '%$salesman%' OR name ilike '%$salesman%') AND business_id in (SELECT id from business WHERE salesman)|;
2102 my $sth = $dbh->prepare($query);
2103 $sth->execute || $self->dberror($query);
2106 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2107 push(@{ $self->{salesman_list} }, $ref);
2111 $main::lxdebug->leave_sub();
2116 sub get_partsgroup {
2117 $main::lxdebug->enter_sub();
2119 my ($self, $myconfig, $p) = @_;
2121 my $dbh = $self->dbconnect($myconfig);
2123 my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
2125 JOIN parts p ON (p.partsgroup_id = pg.id)|;
2127 if ($p->{searchitems} eq 'part') {
2129 WHERE p.inventory_accno_id > 0|;
2131 if ($p->{searchitems} eq 'service') {
2133 WHERE p.inventory_accno_id IS NULL|;
2135 if ($p->{searchitems} eq 'assembly') {
2137 WHERE p.assembly = '1'|;
2139 if ($p->{searchitems} eq 'labor') {
2141 WHERE p.inventory_accno_id > 0 AND p.income_accno_id IS NULL|;
2145 ORDER BY partsgroup|;
2148 $query = qq|SELECT id, partsgroup FROM partsgroup
2149 ORDER BY partsgroup|;
2152 if ($p->{language_code}) {
2153 $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
2154 t.description AS translation
2156 JOIN parts p ON (p.partsgroup_id = pg.id)
2157 LEFT JOIN translation t ON (t.trans_id = pg.id AND t.language_code = '$p->{language_code}')
2158 ORDER BY translation|;
2161 my $sth = $dbh->prepare($query);
2162 $sth->execute || $self->dberror($query);
2164 $self->{all_partsgroup} = ();
2165 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2166 push @{ $self->{all_partsgroup} }, $ref;
2170 $main::lxdebug->leave_sub();
2173 sub get_pricegroup {
2174 $main::lxdebug->enter_sub();
2176 my ($self, $myconfig, $p) = @_;
2178 my $dbh = $self->dbconnect($myconfig);
2180 my $query = qq|SELECT p.id, p.pricegroup
2184 ORDER BY pricegroup|;
2187 $query = qq|SELECT id, pricegroup FROM pricegroup
2188 ORDER BY pricegroup|;
2191 my $sth = $dbh->prepare($query);
2192 $sth->execute || $self->dberror($query);
2194 $self->{all_pricegroup} = ();
2195 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2196 push @{ $self->{all_pricegroup} }, $ref;
2201 $main::lxdebug->leave_sub();
2205 my ($self, $dbh, $myconfig, $audittrail) = @_;
2207 # table, $reference, $formname, $action, $id, $transdate) = @_;
2214 $dbh = $self->dbconnect($myconfig);
2218 # if we have an id add audittrail, otherwise get a new timestamp
2220 if ($audittrail->{id}) {
2222 $query = qq|SELECT audittrail FROM defaults|;
2224 if ($dbh->selectrow_array($query)) {
2225 my ($null, $employee_id) = $self->get_employee($dbh);
2227 if ($self->{audittrail} && !$myconfig) {
2228 chop $self->{audittrail};
2230 my @a = split /\|/, $self->{audittrail};
2234 my @flds = qw(tablename reference formname action transdate);
2236 # put into hash and remove dups
2238 $key = "$a[2]$a[3]";
2240 $newtrail{$key} = { map { $_ => $a[$i++] } @flds };
2244 $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
2245 formname, action, employee_id, transdate)
2246 VALUES ($audittrail->{id}, ?, ?,
2247 ?, ?, $employee_id, ?)|;
2248 my $sth = $dbh->prepare($query) || $self->dberror($query);
2252 $newtrail{$a}{transdate} cmp $newtrail{$b}{transdate}
2256 for (@flds) { $sth->bind_param($i++, $newtrail{$key}{$_}) }
2258 $sth->execute || $self->dberror;
2263 if ($audittrail->{transdate}) {
2264 $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
2265 formname, action, employee_id, transdate) VALUES (
2266 $audittrail->{id}, '$audittrail->{tablename}', |
2267 . $dbh->quote($audittrail->{reference}) . qq|,
2268 '$audittrail->{formname}', '$audittrail->{action}',
2269 $employee_id, '$audittrail->{transdate}')|;
2271 $query = qq|INSERT INTO audittrail (trans_id, tablename, reference,
2272 formname, action, employee_id) VALUES ($audittrail->{id},
2273 '$audittrail->{tablename}', |
2274 . $dbh->quote($audittrail->{reference}) . qq|,
2275 '$audittrail->{formname}', '$audittrail->{action}',
2282 $query = qq|SELECT current_timestamp FROM defaults|;
2283 my ($timestamp) = $dbh->selectrow_array($query);
2286 "$audittrail->{tablename}|$audittrail->{reference}|$audittrail->{formname}|$audittrail->{action}|$timestamp|";
2289 $dbh->disconnect if $disconnect;
2298 $main::lxdebug->enter_sub();
2300 my ($type, $country, $NLS_file) = @_;
2304 if ($country && -d "locale/$country") {
2305 $self->{countrycode} = $country;
2306 eval { require "locale/$country/$NLS_file"; };
2309 $self->{NLS_file} = $NLS_file;
2311 push @{ $self->{LONG_MONTH} },
2312 ("January", "February", "March", "April",
2313 "May ", "June", "July", "August",
2314 "September", "October", "November", "December");
2315 push @{ $self->{SHORT_MONTH} },
2316 (qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec));
2318 $main::lxdebug->leave_sub();
2324 my ($self, $text) = @_;
2326 return (exists $self{texts}{$text}) ? $self{texts}{$text} : $text;
2330 $main::lxdebug->enter_sub();
2332 my ($self, $text) = @_;
2334 if (exists $self{subs}{$text}) {
2335 $text = $self{subs}{$text};
2337 if ($self->{countrycode} && $self->{NLS_file}) {
2339 "$text not defined in locale/$self->{countrycode}/$self->{NLS_file}");
2343 $main::lxdebug->leave_sub();
2349 $main::lxdebug->enter_sub();
2351 my ($self, $myconfig, $date, $longformat) = @_;
2354 my $longmonth = ($longformat) ? 'LONG_MONTH' : 'SHORT_MONTH';
2359 $spc = $myconfig->{dateformat};
2361 $spc = substr($spc, 1, 1);
2363 if ($date =~ /\D/) {
2364 if ($myconfig->{dateformat} =~ /^yy/) {
2365 ($yy, $mm, $dd) = split /\D/, $date;
2367 if ($myconfig->{dateformat} =~ /^mm/) {
2368 ($mm, $dd, $yy) = split /\D/, $date;
2370 if ($myconfig->{dateformat} =~ /^dd/) {
2371 ($dd, $mm, $yy) = split /\D/, $date;
2374 $date = substr($date, 2);
2375 ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
2380 $yy = ($yy < 70) ? $yy + 2000 : $yy;
2381 $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
2383 if ($myconfig->{dateformat} =~ /^dd/) {
2384 if (defined $longformat && $longformat == 0) {
2386 $dd = "0$dd" if ($dd < 10);
2387 $mm = "0$mm" if ($mm < 10);
2388 $longdate = "$dd$spc$mm$spc$yy";
2391 $longdate .= ($spc eq '.') ? ". " : " ";
2392 $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
2394 } elsif ($myconfig->{dateformat} eq "yyyy-mm-dd") {
2396 # Use German syntax with the ISO date style "yyyy-mm-dd" because
2397 # Lx-Office is mainly used in Germany or German speaking countries.
2398 if (defined $longformat && $longformat == 0) {
2400 $dd = "0$dd" if ($dd < 10);
2401 $mm = "0$mm" if ($mm < 10);
2402 $longdate = "$yy-$mm-$dd";
2404 $longdate = "$dd. ";
2405 $longdate .= &text($self, $self->{$longmonth}[$mm]) . " $yy";
2408 if (defined $longformat && $longformat == 0) {
2410 $dd = "0$dd" if ($dd < 10);
2411 $mm = "0$mm" if ($mm < 10);
2412 $longdate = "$mm$spc$dd$spc$yy";
2414 $longdate = &text($self, $self->{$longmonth}[$mm]) . " $dd, $yy";
2420 $main::lxdebug->leave_sub();
2426 $main::lxdebug->enter_sub();
2428 my ($self, $myconfig, $date, $longformat) = @_;
2431 $main::lxdebug->leave_sub();
2436 $spc = $myconfig->{dateformat};
2438 $spc = substr($spc, 1, 1);
2440 if ($date =~ /\D/) {
2441 if ($myconfig->{dateformat} =~ /^yy/) {
2442 ($yy, $mm, $dd) = split /\D/, $date;
2443 } elsif ($myconfig->{dateformat} =~ /^mm/) {
2444 ($mm, $dd, $yy) = split /\D/, $date;
2445 } elsif ($myconfig->{dateformat} =~ /^dd/) {
2446 ($dd, $mm, $yy) = split /\D/, $date;
2449 $date = substr($date, 2);
2450 ($yy, $mm, $dd) = ($date =~ /(..)(..)(..)/);
2455 $yy = ($yy < 70) ? $yy + 2000 : $yy;
2456 $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
2458 $main::lxdebug->leave_sub();
2459 return ($yy, $mm, $dd);