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 #======================================================================
56 use List::Util qw(first max min sum);
62 $standard_dbh->disconnect();
68 $main::lxdebug->enter_sub(2);
76 while ($key =~ /\[\+?\]\.|\./) {
77 substr($key, 0, $+[0]) = '';
85 if (!scalar @{ $curr->{$`} } || $& eq '[+].') {
86 push @{ $curr->{$`} }, { };
89 $curr = $curr->{$`}->[-1];
93 $curr->{$key} = $value;
95 $main::lxdebug->leave_sub(2);
97 return \$curr->{$key};
101 $main::lxdebug->enter_sub(2);
106 my @pairs = split(/&/, $input);
109 my ($key, $value) = split(/=/, $_, 2);
110 $self->_store_value($self->unescape($key), $self->unescape($value));
113 $main::lxdebug->leave_sub(2);
116 sub _request_to_hash {
117 $main::lxdebug->enter_sub(2);
122 if (!$ENV{'CONTENT_TYPE'}
123 || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
125 $self->_input_to_hash($input);
127 $main::lxdebug->leave_sub(2);
131 my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
133 my $boundary = '--' . $1;
135 foreach my $line (split m/\n/, $input) {
136 last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
138 if (($line eq $boundary) || ($line eq "$boundary\r")) {
139 ${ $previous } =~ s|\r?\n$|| if $previous;
145 $content_type = "text/plain";
152 next unless $boundary_found;
154 if (!$headers_done) {
155 $line =~ s/[\r\n]*$//;
162 if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
163 if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
165 substr $line, $-[0], $+[0] - $-[0], "";
168 if ($line =~ m|name\s*=\s*"(.*?)"|i) {
170 substr $line, $-[0], $+[0] - $-[0], "";
173 $previous = $self->_store_value($name, '');
174 $self->{FILENAME} = $filename if ($filename);
179 if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
186 next unless $previous;
188 ${ $previous } .= "${line}\n";
191 ${ $previous } =~ s|\r?\n$|| if $previous;
193 $main::lxdebug->leave_sub(2);
197 $main::lxdebug->enter_sub();
203 if ($LXDebug::watch_form) {
204 require SL::Watchdog;
205 tie %{ $self }, 'SL::Watchdog';
208 read(STDIN, $_, $ENV{CONTENT_LENGTH});
210 if ($ENV{QUERY_STRING}) {
211 $_ = $ENV{QUERY_STRING};
220 $self->_request_to_hash($_);
222 $self->{action} = lc $self->{action};
223 $self->{action} =~ s/( |-|,|\#)/_/g;
225 $self->{version} = "2.4.3";
227 $main::lxdebug->leave_sub();
232 sub _flatten_variables_rec {
233 $main::lxdebug->enter_sub(2);
242 if ('' eq ref $curr->{$key}) {
243 @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
245 } elsif ('HASH' eq ref $curr->{$key}) {
246 foreach my $hash_key (sort keys %{ $curr->{$key} }) {
247 push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
251 foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
252 my $first_array_entry = 1;
254 foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
255 push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
256 $first_array_entry = 0;
261 $main::lxdebug->leave_sub(2);
266 sub flatten_variables {
267 $main::lxdebug->enter_sub(2);
275 push @variables, $self->_flatten_variables_rec($self, '', $_);
278 $main::lxdebug->leave_sub(2);
283 sub flatten_standard_variables {
284 $main::lxdebug->enter_sub(2);
287 my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
291 foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
292 push @variables, $self->_flatten_variables_rec($self, '', $_);
295 $main::lxdebug->leave_sub(2);
301 $main::lxdebug->enter_sub();
307 map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
309 $main::lxdebug->leave_sub();
313 $main::lxdebug->enter_sub(2);
316 my $password = $self->{password};
318 $self->{password} = 'X' x 8;
320 local $Data::Dumper::Sortkeys = 1;
321 my $output = Dumper($self);
323 $self->{password} = $password;
325 $main::lxdebug->leave_sub(2);
331 $main::lxdebug->enter_sub(2);
333 my ($self, $str) = @_;
335 $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
337 $main::lxdebug->leave_sub(2);
343 $main::lxdebug->enter_sub(2);
345 my ($self, $str) = @_;
350 $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
352 $main::lxdebug->leave_sub(2);
358 my ($self, $str) = @_;
360 if ($str && !ref($str)) {
361 $str =~ s/\"/"/g;
369 my ($self, $str) = @_;
371 if ($str && !ref($str)) {
372 $str =~ s/"/\"/g;
383 map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
385 for (sort keys %$self) {
386 next if (($_ eq "header") || (ref($self->{$_}) ne ""));
387 print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
394 $main::lxdebug->enter_sub();
396 $main::lxdebug->show_backtrace();
398 my ($self, $msg) = @_;
399 if ($ENV{HTTP_USER_AGENT}) {
401 $self->show_generic_error($msg);
408 $main::lxdebug->leave_sub();
412 $main::lxdebug->enter_sub();
414 my ($self, $msg) = @_;
416 if ($ENV{HTTP_USER_AGENT}) {
419 if (!$self->{header}) {
432 if ($self->{info_function}) {
433 &{ $self->{info_function} }($msg);
439 $main::lxdebug->leave_sub();
442 # calculates the number of rows in a textarea based on the content and column number
443 # can be capped with maxrows
445 $main::lxdebug->enter_sub();
446 my ($self, $str, $cols, $maxrows, $minrows) = @_;
450 my $rows = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
453 $main::lxdebug->leave_sub();
455 return max(min($rows, $maxrows), $minrows);
459 $main::lxdebug->enter_sub();
461 my ($self, $msg) = @_;
463 $self->error("$msg\n" . $DBI::errstr);
465 $main::lxdebug->leave_sub();
469 $main::lxdebug->enter_sub();
471 my ($self, $name, $msg) = @_;
474 foreach my $part (split m/\./, $name) {
475 if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
478 $curr = $curr->{$part};
481 $main::lxdebug->leave_sub();
484 sub create_http_response {
485 $main::lxdebug->enter_sub();
490 my $cgi = $main::cgi;
491 $cgi ||= CGI->new('');
495 if ($ENV{HTTP_X_FORWARDED_FOR}) {
496 $base_path = $ENV{HTTP_REFERER};
497 $base_path =~ s|^.*?://.*?/|/|;
499 $base_path = $ENV{REQUEST_URI};
501 $base_path =~ s|[^/]+$||;
502 $base_path =~ s|/$||;
505 if (defined $main::auth) {
506 my $session_cookie_value = $main::auth->get_session_id();
507 $session_cookie_value ||= 'NO_SESSION';
509 $session_cookie = $cgi->cookie('-name' => $main::auth->get_session_cookie_name(),
510 '-value' => $session_cookie_value,
511 '-path' => $base_path);
514 my %cgi_params = ('-type' => $params{content_type});
515 $cgi_params{'-charset'} = $params{charset} if ($params{charset});
517 my $output = $cgi->header('-cookie' => $session_cookie,
520 $main::lxdebug->leave_sub();
527 $main::lxdebug->enter_sub();
529 my ($self, $extra_code) = @_;
531 if ($self->{header}) {
532 $main::lxdebug->leave_sub();
536 my ($stylesheet, $favicon);
538 if ($ENV{HTTP_USER_AGENT}) {
541 if ($ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/) {
542 # Only set the DOCTYPE for Internet Explorer. Other browsers have problems displaying the menu otherwise.
543 $doctype = qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n|;
546 my $stylesheets = "$self->{stylesheet} $self->{stylesheets}";
548 $stylesheets =~ s|^\s*||;
549 $stylesheets =~ s|\s*$||;
550 foreach my $file (split m/\s+/, $stylesheets) {
552 next if (! -f "css/$file");
554 $stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|;
557 $self->{favicon} = "favicon.ico" unless $self->{favicon};
559 if ($self->{favicon} && (-f "$self->{favicon}")) {
561 qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
565 my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
567 if ($self->{landscape}) {
568 $pagelayout = qq|<style type="text/css">
569 \@page { size:landscape; }
573 my $fokus = qq| document.$self->{fokus}.focus();| if ($self->{"fokus"});
577 if ($self->{jsscript} == 1) {
580 <script type="text/javascript" src="js/common.js"></script>
581 <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
582 <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
583 <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
584 <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
591 ? "$self->{title} - $self->{titlebar}"
594 foreach $item (@ { $self->{AJAX} }) {
595 $ajax .= $item->show_javascript();
598 print $self->create_http_response('content_type' => 'text/html',
599 'charset' => $db_charset,);
600 print qq|${doctype}<html>
602 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
603 <title>$self->{titlebar}</title>
610 <script type="text/javascript">
618 <meta name="robots" content="noindex,nofollow" />
619 <script type="text/javascript" src="js/highlight_input.js"></script>
620 <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
622 <script type="text/javascript" src="js/tabcontent.js">
624 /***********************************************
625 * Tab Content script- Dynamic Drive DHTML code library (www.dynamicdrive.com)
626 * This notice MUST stay intact for legal use
627 * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
628 ***********************************************/
639 $main::lxdebug->leave_sub();
642 sub _prepare_html_template {
643 $main::lxdebug->enter_sub();
645 my ($self, $file, $additional_params) = @_;
648 if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
649 $language = $main::language;
651 $language = $main::myconfig{"countrycode"};
653 $language = "de" unless ($language);
655 if (-f "templates/webpages/${file}_${language}.html") {
656 if ((-f ".developer") &&
657 (-f "templates/webpages/${file}_master.html") &&
658 ((stat("templates/webpages/${file}_master.html"))[9] >
659 (stat("templates/webpages/${file}_${language}.html"))[9])) {
660 my $info = "Developer information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
661 "Please re-run 'locales.pl' in 'locale/${language}'.";
662 print(qq|<pre>$info</pre>|);
666 $file = "templates/webpages/${file}_${language}.html";
667 } elsif (-f "templates/webpages/${file}.html") {
668 $file = "templates/webpages/${file}.html";
670 my $info = "Web page template '${file}' not found.\n" .
671 "Please re-run 'locales.pl' in 'locale/${language}'.";
672 print(qq|<pre>$info</pre>|);
676 if ($self->{"DEBUG"}) {
677 $additional_params->{"DEBUG"} = $self->{"DEBUG"};
680 if ($additional_params->{"DEBUG"}) {
681 $additional_params->{"DEBUG"} =
682 "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
685 if (%main::myconfig) {
686 map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
687 my $jsc_dateformat = $main::myconfig{"dateformat"};
688 $jsc_dateformat =~ s/d+/\%d/gi;
689 $jsc_dateformat =~ s/m+/\%m/gi;
690 $jsc_dateformat =~ s/y+/\%Y/gi;
691 $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
694 $additional_params->{"conf_dbcharset"} = $main::dbcharset;
695 $additional_params->{"conf_webdav"} = $main::webdav;
696 $additional_params->{"conf_lizenzen"} = $main::lizenzen;
697 $additional_params->{"conf_latex_templates"} = $main::latex;
698 $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
700 if (%main::debug_options) {
701 map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
704 if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
705 while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
706 $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
710 $main::lxdebug->leave_sub();
715 sub parse_html_template {
716 $main::lxdebug->enter_sub();
718 my ($self, $file, $additional_params) = @_;
720 $additional_params ||= { };
722 $file = $self->_prepare_html_template($file, $additional_params);
724 my $template = Template->new({ 'INTERPOLATE' => 0,
728 'PLUGIN_BASE' => 'SL::Template::Plugin',
729 'INCLUDE_PATH' => '.:templates/webpages',
732 map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
734 my $in = IO::File->new($file, 'r');
737 print STDERR "Error opening template file: $!";
738 $main::lxdebug->leave_sub();
742 my $input = join('', <$in>);
746 $input = $main::locale->{iconv}->convert($input);
750 if (!$template->process(\$input, $additional_params, \$output)) {
751 print STDERR $template->error();
754 $main::lxdebug->leave_sub();
759 sub show_generic_error {
760 my ($self, $error, %params) = @_;
763 'title_error' => $params{title},
764 'label_error' => $error,
767 if ($params{action}) {
770 map { delete($self->{$_}); } qw(action);
771 map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
773 $add_params->{SHOW_BUTTON} = 1;
774 $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
775 $add_params->{VARIABLES} = \@vars;
777 } elsif ($params{back_button}) {
778 $add_params->{SHOW_BACK_BUTTON} = 1;
781 $self->{title} = $title if ($title);
784 print $self->parse_html_template("generic/error", $add_params);
786 die("Error: $error\n");
789 sub show_generic_information {
790 my ($self, $text, $title) = @_;
793 'title_information' => $title,
794 'label_information' => $text,
797 $self->{title} = $title if ($title);
800 print $self->parse_html_template("generic/information", $add_params);
802 die("Information: $error\n");
805 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
806 # changed it to accept an arbitrary number of triggers - sschoeling
808 $main::lxdebug->enter_sub();
811 my $myconfig = shift;
814 # set dateform for jsscript
817 "dd.mm.yy" => "%d.%m.%Y",
818 "dd-mm-yy" => "%d-%m-%Y",
819 "dd/mm/yy" => "%d/%m/%Y",
820 "mm/dd/yy" => "%m/%d/%Y",
821 "mm-dd-yy" => "%m-%d-%Y",
822 "yyyy-mm-dd" => "%Y-%m-%d",
825 my $ifFormat = defined($dateformats{$myconfig{"dateformat"}}) ?
826 $dateformats{$myconfig{"dateformat"}} : "%d.%m.%Y";
833 inputField : "| . (shift) . qq|",
834 ifFormat :"$ifFormat",
835 align : "| . (shift) . qq|",
836 button : "| . (shift) . qq|"
842 <script type="text/javascript">
843 <!--| . join("", @triggers) . qq|//-->
847 $main::lxdebug->leave_sub();
850 } #end sub write_trigger
853 $main::lxdebug->enter_sub();
855 my ($self, $msg) = @_;
857 if ($self->{callback}) {
859 ($script, $argv) = split(/\?/, $self->{callback}, 2);
861 $script =~ s|[^a-zA-Z0-9_\.]||g;
862 exec("perl", "$script", $argv);
870 $main::lxdebug->leave_sub();
873 # sort of columns removed - empty sub
875 $main::lxdebug->enter_sub();
877 my ($self, @columns) = @_;
879 $main::lxdebug->leave_sub();
885 $main::lxdebug->enter_sub(2);
887 my ($self, $myconfig, $amount, $places, $dash) = @_;
893 # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
895 my $neg = ($amount =~ s/^-//);
896 my $exp = ($amount =~ m/[e]/) ? 1 : 0;
898 if (defined($places) && ($places ne '')) {
904 my ($actual_places) = ($amount =~ /\.(\d+)/);
905 $actual_places = length($actual_places);
906 $places = $actual_places > $places ? $actual_places : $places;
909 $amount = $self->round_amount($amount, $places);
912 my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
913 my @p = split(/\./, $amount); # split amount at decimal point
915 $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
918 $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
921 ($dash =~ /-/) ? ($neg ? "($amount)" : "$amount" ) :
922 ($dash =~ /DRCR/) ? ($neg ? "$amount DR" : "$amount CR" ) :
923 ($neg ? "-$amount" : "$amount" ) ;
927 $main::lxdebug->leave_sub(2);
931 sub format_amount_units {
932 $main::lxdebug->enter_sub();
937 my $myconfig = \%main::myconfig;
938 my $amount = $params{amount} * 1;
939 my $places = $params{places};
940 my $part_unit_name = $params{part_unit};
941 my $amount_unit_name = $params{amount_unit};
942 my $conv_units = $params{conv_units};
943 my $max_places = $params{max_places};
945 if (!$part_unit_name) {
946 $main::lxdebug->leave_sub();
950 AM->retrieve_all_units();
951 my $all_units = $main::all_units;
953 if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
954 $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
957 if (!scalar @{ $conv_units }) {
958 my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
959 $main::lxdebug->leave_sub();
963 my $part_unit = $all_units->{$part_unit_name};
964 my $conv_unit = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
966 $amount *= $conv_unit->{factor};
970 foreach my $unit (@$conv_units) {
971 my $last = $unit->{name} eq $part_unit->{name};
973 $num = int($amount / $unit->{factor});
974 $amount -= $num * $unit->{factor};
977 if ($last ? $amount : $num) {
978 push @values, { "unit" => $unit->{name},
979 "amount" => $last ? $amount / $unit->{factor} : $num,
980 "places" => $last ? $places : 0 };
987 push @values, { "unit" => $part_unit_name,
992 my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
994 $main::lxdebug->leave_sub();
1000 $main::lxdebug->enter_sub(2);
1005 $input =~ s/(^|[^\#]) \# (\d+) /$1$_[$2 - 1]/gx;
1006 $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
1007 $input =~ s/\#\#/\#/g;
1009 $main::lxdebug->leave_sub(2);
1017 $main::lxdebug->enter_sub(2);
1019 my ($self, $myconfig, $amount) = @_;
1021 if ( ($myconfig->{numberformat} eq '1.000,00')
1022 || ($myconfig->{numberformat} eq '1000,00')) {
1027 if ($myconfig->{numberformat} eq "1'000.00") {
1033 $main::lxdebug->leave_sub(2);
1035 return ($amount * 1);
1039 $main::lxdebug->enter_sub(2);
1041 my ($self, $amount, $places) = @_;
1044 # Rounding like "Kaufmannsrunden"
1045 # Descr. http://de.wikipedia.org/wiki/Rundung
1047 # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
1050 $amount = $amount * (10**($places));
1051 $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
1053 $main::lxdebug->leave_sub(2);
1055 return $round_amount;
1059 sub parse_template {
1060 $main::lxdebug->enter_sub();
1062 my ($self, $myconfig, $userspath) = @_;
1063 my ($template, $out);
1067 $self->{"cwd"} = getcwd();
1068 $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
1070 if ($self->{"format"} =~ /(opendocument|oasis)/i) {
1071 $template = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1072 } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
1073 $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
1074 $template = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1075 } elsif (($self->{"format"} =~ /html/i) ||
1076 (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
1077 $template = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1078 } elsif (($self->{"format"} =~ /xml/i) ||
1079 (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
1080 $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1081 } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
1082 $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1083 } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
1084 $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1085 } elsif ( defined $self->{'format'}) {
1086 $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
1087 } elsif ( $self->{'format'} eq '' ) {
1088 $self->error("No Outputformat given: $self->{'format'}");
1089 } else { #Catch the rest
1090 $self->error("Outputformat not defined: $self->{'format'}");
1093 # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
1094 $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
1096 map({ $self->{"employee_${_}"} = $myconfig->{$_}; }
1097 qw(email tel fax name signature company address businessnumber
1098 co_ustid taxnumber duns));
1100 map({ $self->{"${_}"} = $myconfig->{$_}; }
1104 $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
1106 # OUT is used for the media, screen, printer, email
1107 # for postscript we store a copy in a temporary file
1109 my $prepend_userspath;
1111 if (!$self->{tmpfile}) {
1112 $self->{tmpfile} = "${fileid}.$self->{IN}";
1113 $prepend_userspath = 1;
1116 $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
1118 $self->{tmpfile} =~ s|.*/||;
1119 $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
1120 $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
1122 if ($template->uses_temp_file() || $self->{media} eq 'email') {
1123 $out = $self->{OUT};
1124 $self->{OUT} = ">$self->{tmpfile}";
1128 open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
1130 open(OUT, ">-") or $self->error("STDOUT : $!");
1134 if (!$template->parse(*OUT)) {
1136 $self->error("$self->{IN} : " . $template->get_error());
1141 if ($template->uses_temp_file() || $self->{media} eq 'email') {
1143 if ($self->{media} eq 'email') {
1145 my $mail = new Mailer;
1147 map { $mail->{$_} = $self->{$_} }
1148 qw(cc bcc subject message version format);
1149 $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
1150 $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
1151 $mail->{from} = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1152 $mail->{fileid} = "$fileid.";
1153 $myconfig->{signature} =~ s/\r//g;
1155 # if we send html or plain text inline
1156 if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
1157 $mail->{contenttype} = "text/html";
1159 $mail->{message} =~ s/\r//g;
1160 $mail->{message} =~ s/\n/<br>\n/g;
1161 $myconfig->{signature} =~ s/\n/<br>\n/g;
1162 $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
1164 open(IN, $self->{tmpfile})
1165 or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1167 $mail->{message} .= $_;
1174 if (!$self->{"do_not_attach"}) {
1175 @{ $mail->{attachments} } =
1176 ({ "filename" => $self->{"tmpfile"},
1177 "name" => $self->{"attachment_filename"} ?
1178 $self->{"attachment_filename"} : $self->{"tmpfile"} });
1181 $mail->{message} =~ s/\r//g;
1182 $mail->{message} .= "\n-- \n$myconfig->{signature}";
1186 my $err = $mail->send();
1187 $self->error($self->cleanup . "$err") if ($err);
1191 $self->{OUT} = $out;
1193 my $numbytes = (-s $self->{tmpfile});
1194 open(IN, $self->{tmpfile})
1195 or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1197 $self->{copies} = 1 unless $self->{media} eq 'printer';
1199 chdir("$self->{cwd}");
1200 #print(STDERR "Kopien $self->{copies}\n");
1201 #print(STDERR "OUT $self->{OUT}\n");
1202 for my $i (1 .. $self->{copies}) {
1204 open(OUT, $self->{OUT})
1205 or $self->error($self->cleanup . "$self->{OUT} : $!");
1207 $self->{attachment_filename} = ($self->{attachment_filename})
1208 ? $self->{attachment_filename}
1209 : $self->generate_attachment_filename();
1211 # launch application
1212 print qq|Content-Type: | . $template->get_mime_type() . qq|
1213 Content-Disposition: attachment; filename="$self->{attachment_filename}"
1214 Content-Length: $numbytes
1218 open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
1238 chdir("$self->{cwd}");
1239 $main::lxdebug->leave_sub();
1242 sub get_formname_translation {
1243 my ($self, $formname) = @_;
1245 $formname ||= $self->{formname};
1247 my %formname_translations = (
1248 bin_list => $main::locale->text('Bin List'),
1249 credit_note => $main::locale->text('Credit Note'),
1250 invoice => $main::locale->text('Invoice'),
1251 packing_list => $main::locale->text('Packing List'),
1252 pick_list => $main::locale->text('Pick List'),
1253 proforma => $main::locale->text('Proforma Invoice'),
1254 purchase_order => $main::locale->text('Purchase Order'),
1255 request_quotation => $main::locale->text('RFQ'),
1256 sales_order => $main::locale->text('Confirmation'),
1257 sales_quotation => $main::locale->text('Quotation'),
1258 storno_invoice => $main::locale->text('Storno Invoice'),
1259 storno_packing_list => $main::locale->text('Storno Packing List'),
1260 sales_delivery_order => $main::locale->text('Delivery Order'),
1261 purchase_delivery_order => $main::locale->text('Delivery Order'),
1264 return $formname_translations{$formname}
1267 sub get_number_prefix_for_type {
1271 (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
1272 : ($self->{type} =~ /_quotation$/) ? 'quo'
1273 : ($self->{type} =~ /_delivery_order$/) ? 'do'
1279 sub get_extension_for_format {
1282 my $extension = $self->{format} =~ /pdf/i ? ".pdf"
1283 : $self->{format} =~ /postscript/i ? ".ps"
1284 : $self->{format} =~ /opendocument/i ? ".odt"
1285 : $self->{format} =~ /html/i ? ".html"
1291 sub generate_attachment_filename {
1294 my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1295 my $prefix = $self->get_number_prefix_for_type();
1297 if ($attachment_filename && $self->{"${prefix}number"}) {
1298 $attachment_filename .= "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
1299 $attachment_filename = $main::locale->quote_special_chars('filenames', $attachment_filename);
1300 $attachment_filename =~ s|[\s/\\]+|_|g;
1302 $attachment_filename = "";
1305 return $attachment_filename;
1308 sub generate_email_subject {
1311 my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1312 my $prefix = $self->get_number_prefix_for_type();
1314 if ($subject && $self->{"${prefix}number"}) {
1315 $subject .= " " . $self->{"${prefix}number"}
1322 $main::lxdebug->enter_sub();
1326 chdir("$self->{tmpdir}");
1329 if (-f "$self->{tmpfile}.err") {
1330 open(FH, "$self->{tmpfile}.err");
1335 if ($self->{tmpfile}) {
1336 $self->{tmpfile} =~ s|.*/||g;
1338 $self->{tmpfile} =~ s/\.\w+$//g;
1339 my $tmpfile = $self->{tmpfile};
1340 unlink(<$tmpfile.*>);
1343 chdir("$self->{cwd}");
1345 $main::lxdebug->leave_sub();
1351 $main::lxdebug->enter_sub();
1353 my ($self, $date, $myconfig) = @_;
1355 if ($date && $date =~ /\D/) {
1357 if ($myconfig->{dateformat} =~ /^yy/) {
1358 ($yy, $mm, $dd) = split /\D/, $date;
1360 if ($myconfig->{dateformat} =~ /^mm/) {
1361 ($mm, $dd, $yy) = split /\D/, $date;
1363 if ($myconfig->{dateformat} =~ /^dd/) {
1364 ($dd, $mm, $yy) = split /\D/, $date;
1369 $yy = ($yy < 70) ? $yy + 2000 : $yy;
1370 $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1372 $dd = "0$dd" if ($dd < 10);
1373 $mm = "0$mm" if ($mm < 10);
1375 $date = "$yy$mm$dd";
1378 $main::lxdebug->leave_sub();
1383 # Database routines used throughout
1386 $main::lxdebug->enter_sub(2);
1388 my ($self, $myconfig) = @_;
1390 # connect to database
1392 DBI->connect($myconfig->{dbconnect},
1393 $myconfig->{dbuser}, $myconfig->{dbpasswd})
1397 if ($myconfig->{dboptions}) {
1398 $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1401 $main::lxdebug->leave_sub(2);
1406 sub dbconnect_noauto {
1407 $main::lxdebug->enter_sub();
1409 my ($self, $myconfig) = @_;
1411 # connect to database
1413 DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
1414 $myconfig->{dbpasswd}, { AutoCommit => 0 })
1418 if ($myconfig->{dboptions}) {
1419 $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1422 $main::lxdebug->leave_sub();
1427 sub get_standard_dbh {
1428 $main::lxdebug->enter_sub(2);
1430 my ($self, $myconfig) = @_;
1432 if ($standard_dbh && !$standard_dbh->{Active}) {
1433 $main::lxdebug->message(LXDebug::INFO, "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
1434 undef $standard_dbh;
1437 $standard_dbh ||= $self->dbconnect_noauto($myconfig);
1439 $main::lxdebug->leave_sub(2);
1441 return $standard_dbh;
1445 $main::lxdebug->enter_sub();
1447 my ($self, $date, $myconfig) = @_;
1448 my $dbh = $self->dbconnect($myconfig);
1450 my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
1451 my $sth = prepare_execute_query($self, $dbh, $query, $date);
1452 my ($closed) = $sth->fetchrow_array;
1454 $main::lxdebug->leave_sub();
1459 sub update_balance {
1460 $main::lxdebug->enter_sub();
1462 my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1464 # if we have a value, go do it
1467 # retrieve balance from table
1468 my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1469 my $sth = prepare_execute_query($self, $dbh, $query, @values);
1470 my ($balance) = $sth->fetchrow_array;
1476 $query = "UPDATE $table SET $field = $balance WHERE $where";
1477 do_query($self, $dbh, $query, @values);
1479 $main::lxdebug->leave_sub();
1482 sub update_exchangerate {
1483 $main::lxdebug->enter_sub();
1485 my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1487 # some sanity check for currency
1489 $main::lxdebug->leave_sub();
1492 $query = qq|SELECT curr FROM defaults|;
1494 my ($currency) = selectrow_query($self, $dbh, $query);
1495 my ($defaultcurrency) = split m/:/, $currency;
1498 if ($curr eq $defaultcurrency) {
1499 $main::lxdebug->leave_sub();
1503 $query = qq|SELECT e.curr FROM exchangerate e
1504 WHERE e.curr = ? AND e.transdate = ?
1506 my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1515 $buy = conv_i($buy, "NULL");
1516 $sell = conv_i($sell, "NULL");
1519 if ($buy != 0 && $sell != 0) {
1520 $set = "buy = $buy, sell = $sell";
1521 } elsif ($buy != 0) {
1522 $set = "buy = $buy";
1523 } elsif ($sell != 0) {
1524 $set = "sell = $sell";
1527 if ($sth->fetchrow_array) {
1528 $query = qq|UPDATE exchangerate
1534 $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1535 VALUES (?, $buy, $sell, ?)|;
1538 do_query($self, $dbh, $query, $curr, $transdate);
1540 $main::lxdebug->leave_sub();
1543 sub save_exchangerate {
1544 $main::lxdebug->enter_sub();
1546 my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1548 my $dbh = $self->dbconnect($myconfig);
1552 $buy = $rate if $fld eq 'buy';
1553 $sell = $rate if $fld eq 'sell';
1556 $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1561 $main::lxdebug->leave_sub();
1564 sub get_exchangerate {
1565 $main::lxdebug->enter_sub();
1567 my ($self, $dbh, $curr, $transdate, $fld) = @_;
1570 unless ($transdate) {
1571 $main::lxdebug->leave_sub();
1575 $query = qq|SELECT curr FROM defaults|;
1577 my ($currency) = selectrow_query($self, $dbh, $query);
1578 my ($defaultcurrency) = split m/:/, $currency;
1580 if ($currency eq $defaultcurrency) {
1581 $main::lxdebug->leave_sub();
1585 $query = qq|SELECT e.$fld FROM exchangerate e
1586 WHERE e.curr = ? AND e.transdate = ?|;
1587 my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1591 $main::lxdebug->leave_sub();
1593 return $exchangerate;
1596 sub check_exchangerate {
1597 $main::lxdebug->enter_sub();
1599 my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1601 unless ($transdate) {
1602 $main::lxdebug->leave_sub();
1606 my ($defaultcurrency) = $self->get_default_currency($myconfig);
1608 if ($currency eq $defaultcurrency) {
1609 $main::lxdebug->leave_sub();
1613 my $dbh = $self->get_standard_dbh($myconfig);
1614 my $query = qq|SELECT e.$fld FROM exchangerate e
1615 WHERE e.curr = ? AND e.transdate = ?|;
1617 my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1619 $main::lxdebug->leave_sub();
1621 return $exchangerate;
1624 sub get_default_currency {
1625 $main::lxdebug->enter_sub();
1627 my ($self, $myconfig) = @_;
1628 my $dbh = $self->get_standard_dbh($myconfig);
1630 my $query = qq|SELECT curr FROM defaults|;
1632 my ($curr) = selectrow_query($self, $dbh, $query);
1633 my ($defaultcurrency) = split m/:/, $curr;
1635 $main::lxdebug->leave_sub();
1637 return $defaultcurrency;
1641 sub set_payment_options {
1642 $main::lxdebug->enter_sub();
1644 my ($self, $myconfig, $transdate) = @_;
1646 return $main::lxdebug->leave_sub() unless ($self->{payment_id});
1648 my $dbh = $self->get_standard_dbh($myconfig);
1651 qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
1652 qq|FROM payment_terms p | .
1655 ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
1656 $self->{payment_terms}) =
1657 selectrow_query($self, $dbh, $query, $self->{payment_id});
1659 if ($transdate eq "") {
1660 if ($self->{invdate}) {
1661 $transdate = $self->{invdate};
1663 $transdate = $self->{transdate};
1668 qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
1669 qq|FROM payment_terms|;
1670 ($self->{netto_date}, $self->{skonto_date}) =
1671 selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
1673 my ($invtotal, $total);
1674 my (%amounts, %formatted_amounts);
1676 if ($self->{type} =~ /_order$/) {
1677 $amounts{invtotal} = $self->{ordtotal};
1678 $amounts{total} = $self->{ordtotal};
1680 } elsif ($self->{type} =~ /_quotation$/) {
1681 $amounts{invtotal} = $self->{quototal};
1682 $amounts{total} = $self->{quototal};
1685 $amounts{invtotal} = $self->{invtotal};
1686 $amounts{total} = $self->{total};
1689 map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
1691 $amounts{skonto_amount} = $amounts{invtotal} * $self->{percent_skonto};
1692 $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
1693 $amounts{total_wo_skonto} = $amounts{total} * (1 - $self->{percent_skonto});
1695 foreach (keys %amounts) {
1696 $amounts{$_} = $self->round_amount($amounts{$_}, 2);
1697 $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
1700 if ($self->{"language_id"}) {
1702 qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1703 qq|FROM translation_payment_terms t | .
1704 qq|LEFT JOIN language l ON t.language_id = l.id | .
1705 qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
1706 my ($description_long, $output_numberformat, $output_dateformat,
1707 $output_longdates) =
1708 selectrow_query($self, $dbh, $query,
1709 $self->{"language_id"}, $self->{"payment_id"});
1711 $self->{payment_terms} = $description_long if ($description_long);
1713 if ($output_dateformat) {
1714 foreach my $key (qw(netto_date skonto_date)) {
1716 $main::locale->reformat_date($myconfig, $self->{$key},
1722 if ($output_numberformat &&
1723 ($output_numberformat ne $myconfig->{"numberformat"})) {
1724 my $saved_numberformat = $myconfig->{"numberformat"};
1725 $myconfig->{"numberformat"} = $output_numberformat;
1726 map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
1727 $myconfig->{"numberformat"} = $saved_numberformat;
1731 $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1732 $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1733 $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1734 $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1735 $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1736 $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1737 $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1739 map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
1741 $main::lxdebug->leave_sub();
1745 sub get_template_language {
1746 $main::lxdebug->enter_sub();
1748 my ($self, $myconfig) = @_;
1750 my $template_code = "";
1752 if ($self->{language_id}) {
1753 my $dbh = $self->get_standard_dbh($myconfig);
1754 my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1755 ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1758 $main::lxdebug->leave_sub();
1760 return $template_code;
1763 sub get_printer_code {
1764 $main::lxdebug->enter_sub();
1766 my ($self, $myconfig) = @_;
1768 my $template_code = "";
1770 if ($self->{printer_id}) {
1771 my $dbh = $self->get_standard_dbh($myconfig);
1772 my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1773 ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1776 $main::lxdebug->leave_sub();
1778 return $template_code;
1782 $main::lxdebug->enter_sub();
1784 my ($self, $myconfig) = @_;
1786 my $template_code = "";
1788 if ($self->{shipto_id}) {
1789 my $dbh = $self->get_standard_dbh($myconfig);
1790 my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1791 my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1792 map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1795 $main::lxdebug->leave_sub();
1799 $main::lxdebug->enter_sub();
1801 my ($self, $dbh, $id, $module) = @_;
1806 foreach my $item (qw(name department_1 department_2 street zipcode city country
1807 contact phone fax email)) {
1808 if ($self->{"shipto$item"}) {
1809 $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1811 push(@values, $self->{"shipto${item}"});
1815 if ($self->{shipto_id}) {
1816 my $query = qq|UPDATE shipto set
1818 shiptodepartment_1 = ?,
1819 shiptodepartment_2 = ?,
1828 WHERE shipto_id = ?|;
1829 do_query($self, $dbh, $query, @values, $self->{shipto_id});
1831 my $query = qq|SELECT * FROM shipto
1832 WHERE shiptoname = ? AND
1833 shiptodepartment_1 = ? AND
1834 shiptodepartment_2 = ? AND
1835 shiptostreet = ? AND
1836 shiptozipcode = ? AND
1838 shiptocountry = ? AND
1839 shiptocontact = ? AND
1845 my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
1848 qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
1849 shiptostreet, shiptozipcode, shiptocity, shiptocountry,
1850 shiptocontact, shiptophone, shiptofax, shiptoemail, module)
1851 VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
1852 do_query($self, $dbh, $query, $id, @values, $module);
1857 $main::lxdebug->leave_sub();
1861 $main::lxdebug->enter_sub();
1863 my ($self, $dbh) = @_;
1865 my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
1866 ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
1867 $self->{"employee_id"} *= 1;
1869 $main::lxdebug->leave_sub();
1873 $main::lxdebug->enter_sub();
1875 my ($self, $myconfig, $salesman_id) = @_;
1877 $main::lxdebug->leave_sub() and return unless $salesman_id;
1879 my $dbh = $self->get_standard_dbh($myconfig);
1882 selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|,
1886 my $user = new User($main::memberfile, $login);
1887 map({ $self->{"salesman_$_"} = $user->{$_}; }
1888 qw(address businessnumber co_ustid company duns email fax name
1890 $self->{salesman_login} = $login;
1892 $self->{salesman_name} = $login
1893 if ($self->{salesman_name} eq "");
1896 $main::lxdebug->leave_sub();
1900 $main::lxdebug->enter_sub();
1902 my ($self, $myconfig) = @_;
1904 my $dbh = $self->get_standard_dbh($myconfig);
1905 my $query = qq|SELECT current_date + terms_netto FROM payment_terms WHERE id = ?|;
1906 ($self->{duedate}) = selectrow_query($self, $dbh, $query, $self->{payment_id});
1908 $main::lxdebug->leave_sub();
1912 $main::lxdebug->enter_sub();
1914 my ($self, $dbh, $id, $key) = @_;
1916 $key = "all_contacts" unless ($key);
1920 $main::lxdebug->leave_sub();
1925 qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
1926 qq|FROM contacts | .
1927 qq|WHERE cp_cv_id = ? | .
1928 qq|ORDER BY lower(cp_name)|;
1930 $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
1932 $main::lxdebug->leave_sub();
1936 $main::lxdebug->enter_sub();
1938 my ($self, $dbh, $key) = @_;
1940 my ($all, $old_id, $where, @values);
1942 if (ref($key) eq "HASH") {
1945 $key = "ALL_PROJECTS";
1947 foreach my $p (keys(%{$params})) {
1949 $all = $params->{$p};
1950 } elsif ($p eq "old_id") {
1951 $old_id = $params->{$p};
1952 } elsif ($p eq "key") {
1953 $key = $params->{$p};
1959 $where = "WHERE active ";
1961 if (ref($old_id) eq "ARRAY") {
1962 my @ids = grep({ $_ } @{$old_id});
1964 $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
1965 push(@values, @ids);
1968 $where .= " OR (id = ?) ";
1969 push(@values, $old_id);
1975 qq|SELECT id, projectnumber, description, active | .
1978 qq|ORDER BY lower(projectnumber)|;
1980 $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
1982 $main::lxdebug->leave_sub();
1986 $main::lxdebug->enter_sub();
1988 my ($self, $dbh, $vc_id, $key) = @_;
1990 $key = "all_shipto" unless ($key);
1993 # get shipping addresses
1994 my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
1996 $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
2002 $main::lxdebug->leave_sub();
2006 $main::lxdebug->enter_sub();
2008 my ($self, $dbh, $key) = @_;
2010 $key = "all_printers" unless ($key);
2012 my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
2014 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2016 $main::lxdebug->leave_sub();
2020 $main::lxdebug->enter_sub();
2022 my ($self, $dbh, $params) = @_;
2024 $key = $params->{key};
2025 $key = "all_charts" unless ($key);
2027 my $transdate = quote_db_date($params->{transdate});
2030 qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
2032 qq|LEFT JOIN taxkeys tk ON | .
2033 qq|(tk.id = (SELECT id FROM taxkeys | .
2034 qq| WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
2035 qq| ORDER BY startdate DESC LIMIT 1)) | .
2036 qq|ORDER BY c.accno|;
2038 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2040 $main::lxdebug->leave_sub();
2043 sub _get_taxcharts {
2044 $main::lxdebug->enter_sub();
2046 my ($self, $dbh, $key) = @_;
2048 $key = "all_taxcharts" unless ($key);
2050 my $query = qq|SELECT * FROM tax ORDER BY taxkey|;
2052 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2054 $main::lxdebug->leave_sub();
2058 $main::lxdebug->enter_sub();
2060 my ($self, $dbh, $key) = @_;
2062 $key = "all_taxzones" unless ($key);
2064 my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
2066 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2068 $main::lxdebug->leave_sub();
2071 sub _get_employees {
2072 $main::lxdebug->enter_sub();
2074 my ($self, $dbh, $default_key, $key) = @_;
2076 $key = $default_key unless ($key);
2077 $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
2079 $main::lxdebug->leave_sub();
2082 sub _get_business_types {
2083 $main::lxdebug->enter_sub();
2085 my ($self, $dbh, $key) = @_;
2087 $key = "all_business_types" unless ($key);
2089 selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
2091 $main::lxdebug->leave_sub();
2094 sub _get_languages {
2095 $main::lxdebug->enter_sub();
2097 my ($self, $dbh, $key) = @_;
2099 $key = "all_languages" unless ($key);
2101 my $query = qq|SELECT * FROM language ORDER BY id|;
2103 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2105 $main::lxdebug->leave_sub();
2108 sub _get_dunning_configs {
2109 $main::lxdebug->enter_sub();
2111 my ($self, $dbh, $key) = @_;
2113 $key = "all_dunning_configs" unless ($key);
2115 my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
2117 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2119 $main::lxdebug->leave_sub();
2122 sub _get_currencies {
2123 $main::lxdebug->enter_sub();
2125 my ($self, $dbh, $key) = @_;
2127 $key = "all_currencies" unless ($key);
2129 my $query = qq|SELECT curr AS currency FROM defaults|;
2131 $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
2133 $main::lxdebug->leave_sub();
2137 $main::lxdebug->enter_sub();
2139 my ($self, $dbh, $key) = @_;
2141 $key = "all_payments" unless ($key);
2143 my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
2145 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2147 $main::lxdebug->leave_sub();
2150 sub _get_customers {
2151 $main::lxdebug->enter_sub();
2153 my ($self, $dbh, $key, $limit) = @_;
2155 $key = "all_customers" unless ($key);
2156 $limit_clause = "LIMIT $limit" if $limit;
2158 my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name $limit_clause|;
2160 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2162 $main::lxdebug->leave_sub();
2166 $main::lxdebug->enter_sub();
2168 my ($self, $dbh, $key) = @_;
2170 $key = "all_vendors" unless ($key);
2172 my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
2174 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2176 $main::lxdebug->leave_sub();
2179 sub _get_departments {
2180 $main::lxdebug->enter_sub();
2182 my ($self, $dbh, $key) = @_;
2184 $key = "all_departments" unless ($key);
2186 my $query = qq|SELECT * FROM department ORDER BY description|;
2188 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2190 $main::lxdebug->leave_sub();
2193 sub _get_warehouses {
2194 $main::lxdebug->enter_sub();
2196 my ($self, $dbh, $param) = @_;
2198 my ($key, $bins_key);
2200 if ('' eq ref $param) {
2204 $key = $param->{key};
2205 $bins_key = $param->{bins};
2208 my $query = qq|SELECT w.* FROM warehouse w
2209 WHERE (NOT w.invalid) AND
2210 ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
2211 ORDER BY w.sortkey|;
2213 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2216 $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
2217 my $sth = prepare_query($self, $dbh, $query);
2219 foreach my $warehouse (@{ $self->{$key} }) {
2220 do_statement($self, $sth, $query, $warehouse->{id});
2221 $warehouse->{$bins_key} = [];
2223 while (my $ref = $sth->fetchrow_hashref()) {
2224 push @{ $warehouse->{$bins_key} }, $ref;
2230 $main::lxdebug->leave_sub();
2234 $main::lxdebug->enter_sub();
2236 my ($self, $dbh, $table, $key, $sortkey) = @_;
2238 my $query = qq|SELECT * FROM $table|;
2239 $query .= qq| ORDER BY $sortkey| if ($sortkey);
2241 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2243 $main::lxdebug->leave_sub();
2247 $main::lxdebug->enter_sub();
2249 my ($self, $dbh, $key) = @_;
2251 $key ||= "all_groups";
2253 my $groups = $main::auth->read_groups();
2255 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2257 $main::lxdebug->leave_sub();
2261 $main::lxdebug->enter_sub();
2266 my $dbh = $self->get_standard_dbh(\%main::myconfig);
2267 my ($sth, $query, $ref);
2269 my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
2270 my $vc_id = $self->{"${vc}_id"};
2272 if ($params{"contacts"}) {
2273 $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
2276 if ($params{"shipto"}) {
2277 $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
2280 if ($params{"projects"} || $params{"all_projects"}) {
2281 $self->_get_projects($dbh, $params{"all_projects"} ?
2282 $params{"all_projects"} : $params{"projects"},
2283 $params{"all_projects"} ? 1 : 0);
2286 if ($params{"printers"}) {
2287 $self->_get_printers($dbh, $params{"printers"});
2290 if ($params{"languages"}) {
2291 $self->_get_languages($dbh, $params{"languages"});
2294 if ($params{"charts"}) {
2295 $self->_get_charts($dbh, $params{"charts"});
2298 if ($params{"taxcharts"}) {
2299 $self->_get_taxcharts($dbh, $params{"taxcharts"});
2302 if ($params{"taxzones"}) {
2303 $self->_get_taxzones($dbh, $params{"taxzones"});
2306 if ($params{"employees"}) {
2307 $self->_get_employees($dbh, "all_employees", $params{"employees"});
2310 if ($params{"salesmen"}) {
2311 $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
2314 if ($params{"business_types"}) {
2315 $self->_get_business_types($dbh, $params{"business_types"});
2318 if ($params{"dunning_configs"}) {
2319 $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
2322 if($params{"currencies"}) {
2323 $self->_get_currencies($dbh, $params{"currencies"});
2326 if($params{"customers"}) {
2327 if (ref $params{"customers"} eq 'HASH') {
2328 $self->_get_customers($dbh, $params{"customers"}{key}, $params{"customers"}{limit});
2330 $self->_get_customers($dbh, $params{"customers"});
2334 if($params{"vendors"}) {
2335 if (ref $params{"vendors"} eq 'HASH') {
2336 $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
2338 $self->_get_vendors($dbh, $params{"vendors"});
2342 if($params{"payments"}) {
2343 $self->_get_payments($dbh, $params{"payments"});
2346 if($params{"departments"}) {
2347 $self->_get_departments($dbh, $params{"departments"});
2350 if ($params{price_factors}) {
2351 $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
2354 if ($params{warehouses}) {
2355 $self->_get_warehouses($dbh, $params{warehouses});
2358 if ($params{groups}) {
2359 $self->_get_groups($dbh, $params{groups});
2361 if ($params{partsgroup}) {
2362 $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
2365 $main::lxdebug->leave_sub();
2368 # this sub gets the id and name from $table
2370 $main::lxdebug->enter_sub();
2372 my ($self, $myconfig, $table) = @_;
2374 # connect to database
2375 my $dbh = $self->get_standard_dbh($myconfig);
2377 $table = $table eq "customer" ? "customer" : "vendor";
2378 my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
2380 my ($query, @values);
2382 if (!$self->{openinvoices}) {
2384 if ($self->{customernumber} ne "") {
2385 $where = qq|(vc.customernumber ILIKE ?)|;
2386 push(@values, '%' . $self->{customernumber} . '%');
2388 $where = qq|(vc.name ILIKE ?)|;
2389 push(@values, '%' . $self->{$table} . '%');
2393 qq~SELECT vc.id, vc.name,
2394 vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2396 WHERE $where AND (NOT vc.obsolete)
2400 qq~SELECT DISTINCT vc.id, vc.name,
2401 vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2403 JOIN $table vc ON (a.${table}_id = vc.id)
2404 WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
2406 push(@values, '%' . $self->{$table} . '%');
2409 $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
2411 $main::lxdebug->leave_sub();
2413 return scalar(@{ $self->{name_list} });
2416 # the selection sub is used in the AR, AP, IS, IR and OE module
2419 $main::lxdebug->enter_sub();
2421 my ($self, $myconfig, $table, $module) = @_;
2424 my $dbh = $self->get_standard_dbh($myconfig);
2426 $table = $table eq "customer" ? "customer" : "vendor";
2428 my $query = qq|SELECT count(*) FROM $table|;
2429 my ($count) = selectrow_query($self, $dbh, $query);
2431 # build selection list
2432 if ($count < $myconfig->{vclimit}) {
2433 $query = qq|SELECT id, name, salesman_id
2434 FROM $table WHERE NOT obsolete
2436 $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2440 $self->get_employee($dbh);
2442 # setup sales contacts
2443 $query = qq|SELECT e.id, e.name
2445 WHERE (e.sales = '1') AND (NOT e.id = ?)|;
2446 $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2449 push(@{ $self->{all_employees} },
2450 { id => $self->{employee_id},
2451 name => $self->{employee} });
2453 # sort the whole thing
2454 @{ $self->{all_employees} } =
2455 sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
2457 if ($module eq 'AR') {
2459 # prepare query for departments
2460 $query = qq|SELECT id, description
2463 ORDER BY description|;
2466 $query = qq|SELECT id, description
2468 ORDER BY description|;
2471 $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2474 $query = qq|SELECT id, description
2478 $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2481 $query = qq|SELECT printer_description, id
2483 ORDER BY printer_description|;
2485 $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2488 $query = qq|SELECT id, description
2492 $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2494 $main::lxdebug->leave_sub();
2497 sub language_payment {
2498 $main::lxdebug->enter_sub();
2500 my ($self, $myconfig) = @_;
2502 my $dbh = $self->get_standard_dbh($myconfig);
2504 my $query = qq|SELECT id, description
2508 $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2511 $query = qq|SELECT printer_description, id
2513 ORDER BY printer_description|;
2515 $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2518 $query = qq|SELECT id, description
2522 $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2524 # get buchungsgruppen
2525 $query = qq|SELECT id, description
2526 FROM buchungsgruppen|;
2528 $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2530 $main::lxdebug->leave_sub();
2533 # this is only used for reports
2534 sub all_departments {
2535 $main::lxdebug->enter_sub();
2537 my ($self, $myconfig, $table) = @_;
2539 my $dbh = $self->get_standard_dbh($myconfig);
2542 if ($table eq 'customer') {
2543 $where = "WHERE role = 'P' ";
2546 my $query = qq|SELECT id, description
2549 ORDER BY description|;
2550 $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2552 delete($self->{all_departments}) unless (@{ $self->{all_departments} });
2554 $main::lxdebug->leave_sub();
2558 $main::lxdebug->enter_sub();
2560 my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2563 if ($table eq "customer") {
2572 $self->all_vc($myconfig, $table, $module);
2574 # get last customers or vendors
2575 my ($query, $sth, $ref);
2577 my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2582 my $transdate = "current_date";
2583 if ($self->{transdate}) {
2584 $transdate = $dbh->quote($self->{transdate});
2587 # now get the account numbers
2588 $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2589 FROM chart c, taxkeys tk
2590 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2591 (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2594 $sth = $dbh->prepare($query);
2596 do_statement($self, $sth, $query, '%' . $module . '%');
2598 $self->{accounts} = "";
2599 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2601 foreach my $key (split(/:/, $ref->{link})) {
2602 if ($key =~ /\Q$module\E/) {
2604 # cross reference for keys
2605 $xkeyref{ $ref->{accno} } = $key;
2607 push @{ $self->{"${module}_links"}{$key} },
2608 { accno => $ref->{accno},
2609 description => $ref->{description},
2610 taxkey => $ref->{taxkey_id},
2611 tax_id => $ref->{tax_id} };
2613 $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2619 # get taxkeys and description
2620 $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2621 $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2623 if (($module eq "AP") || ($module eq "AR")) {
2624 # get tax rates and description
2625 $query = qq|SELECT * FROM tax|;
2626 $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2632 a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2633 a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
2634 a.intnotes, a.department_id, a.amount AS oldinvtotal,
2635 a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2637 d.description AS department,
2640 JOIN $table c ON (a.${table}_id = c.id)
2641 LEFT JOIN employee e ON (e.id = a.employee_id)
2642 LEFT JOIN department d ON (d.id = a.department_id)
2644 $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2646 foreach $key (keys %$ref) {
2647 $self->{$key} = $ref->{$key};
2650 my $transdate = "current_date";
2651 if ($self->{transdate}) {
2652 $transdate = $dbh->quote($self->{transdate});
2655 # now get the account numbers
2656 $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2658 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2660 AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2661 OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
2664 $sth = $dbh->prepare($query);
2665 do_statement($self, $sth, $query, "%$module%");
2667 $self->{accounts} = "";
2668 while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
2670 foreach my $key (split(/:/, $ref->{link})) {
2671 if ($key =~ /\Q$module\E/) {
2673 # cross reference for keys
2674 $xkeyref{ $ref->{accno} } = $key;
2676 push @{ $self->{"${module}_links"}{$key} },
2677 { accno => $ref->{accno},
2678 description => $ref->{description},
2679 taxkey => $ref->{taxkey_id},
2680 tax_id => $ref->{tax_id} };
2682 $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2688 # get amounts from individual entries
2691 c.accno, c.description,
2692 a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
2696 LEFT JOIN chart c ON (c.id = a.chart_id)
2697 LEFT JOIN project p ON (p.id = a.project_id)
2698 LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
2699 WHERE (tk.taxkey_id=a.taxkey) AND
2700 ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
2701 THEN tk.chart_id = a.chart_id
2704 OR (c.link='%tax%')) AND
2705 (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
2706 WHERE a.trans_id = ?
2707 AND a.fx_transaction = '0'
2708 ORDER BY a.oid, a.transdate|;
2709 $sth = $dbh->prepare($query);
2710 do_statement($self, $sth, $query, $self->{id});
2712 # get exchangerate for currency
2713 $self->{exchangerate} =
2714 $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2717 # store amounts in {acc_trans}{$key} for multiple accounts
2718 while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
2719 $ref->{exchangerate} =
2720 $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2721 if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2724 if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2725 $ref->{amount} *= -1;
2727 $ref->{index} = $index;
2729 push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2735 d.curr AS currencies, d.closedto, d.revtrans,
2736 (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2737 (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2739 $ref = selectfirst_hashref_query($self, $dbh, $query);
2740 map { $self->{$_} = $ref->{$_} } keys %$ref;
2747 current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
2748 (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2749 (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2751 $ref = selectfirst_hashref_query($self, $dbh, $query);
2752 map { $self->{$_} = $ref->{$_} } keys %$ref;
2754 if ($self->{"$self->{vc}_id"}) {
2756 # only setup currency
2757 ($self->{currency}) = split(/:/, $self->{currencies});
2761 $self->lastname_used($dbh, $myconfig, $table, $module);
2763 # get exchangerate for currency
2764 $self->{exchangerate} =
2765 $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2771 $main::lxdebug->leave_sub();
2775 $main::lxdebug->enter_sub();
2777 my ($self, $dbh, $myconfig, $table, $module) = @_;
2781 $table = $table eq "customer" ? "customer" : "vendor";
2782 my %column_map = ("a.curr" => "currency",
2783 "a.${table}_id" => "${table}_id",
2784 "a.department_id" => "department_id",
2785 "d.description" => "department",
2786 "ct.name" => $table,
2787 "current_date + ct.terms" => "duedate",
2790 if ($self->{type} =~ /delivery_order/) {
2791 $arap = 'delivery_orders';
2792 delete $column_map{"a.curr"};
2794 } elsif ($self->{type} =~ /_order/) {
2796 $where = "quotation = '0'";
2798 } elsif ($self->{type} =~ /_quotation/) {
2800 $where = "quotation = '1'";
2802 } elsif ($table eq 'customer') {
2810 $where = "($where) AND" if ($where);
2811 my $query = qq|SELECT MAX(id) FROM $arap
2812 WHERE $where ${table}_id > 0|;
2813 my ($trans_id) = selectrow_query($self, $dbh, $query);
2816 my $column_spec = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
2817 $query = qq|SELECT $column_spec
2819 LEFT JOIN $table ct ON (a.${table}_id = ct.id)
2820 LEFT JOIN department d ON (a.department_id = d.id)
2822 my $ref = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
2824 map { $self->{$_} = $ref->{$_} } values %column_map;
2826 $main::lxdebug->leave_sub();
2830 $main::lxdebug->enter_sub();
2832 my ($self, $myconfig, $thisdate, $days) = @_;
2834 my $dbh = $self->get_standard_dbh($myconfig);
2839 my $dateformat = $myconfig->{dateformat};
2840 $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
2841 $thisdate = $dbh->quote($thisdate);
2842 $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
2844 $query = qq|SELECT current_date AS thisdate|;
2847 ($thisdate) = selectrow_query($self, $dbh, $query);
2849 $main::lxdebug->leave_sub();
2855 $main::lxdebug->enter_sub();
2857 my ($self, $string) = @_;
2859 if ($string !~ /%/) {
2860 $string = "%$string%";
2863 $string =~ s/\'/\'\'/g;
2865 $main::lxdebug->leave_sub();
2871 $main::lxdebug->enter_sub();
2873 my ($self, $flds, $new, $count, $numrows) = @_;
2877 map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
2882 foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
2884 $j = $item->{ndx} - 1;
2885 map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
2889 for $i ($count + 1 .. $numrows) {
2890 map { delete $self->{"${_}_$i"} } @{$flds};
2893 $main::lxdebug->leave_sub();
2897 $main::lxdebug->enter_sub();
2899 my ($self, $myconfig) = @_;
2903 my $dbh = $self->dbconnect_noauto($myconfig);
2905 my $query = qq|DELETE FROM status
2906 WHERE (formname = ?) AND (trans_id = ?)|;
2907 my $sth = prepare_query($self, $dbh, $query);
2909 if ($self->{formname} =~ /(check|receipt)/) {
2910 for $i (1 .. $self->{rowcount}) {
2911 do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
2914 do_statement($self, $sth, $query, $self->{formname}, $self->{id});
2918 my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2919 my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2921 my %queued = split / /, $self->{queued};
2924 if ($self->{formname} =~ /(check|receipt)/) {
2926 # this is a check or receipt, add one entry for each lineitem
2927 my ($accno) = split /--/, $self->{account};
2928 $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
2929 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
2930 @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
2931 $sth = prepare_query($self, $dbh, $query);
2933 for $i (1 .. $self->{rowcount}) {
2934 if ($self->{"checked_$i"}) {
2935 do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
2941 $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2942 VALUES (?, ?, ?, ?, ?)|;
2943 do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
2944 $queued{$self->{formname}}, $self->{formname});
2950 $main::lxdebug->leave_sub();
2954 $main::lxdebug->enter_sub();
2956 my ($self, $dbh) = @_;
2958 my ($query, $printed, $emailed);
2960 my $formnames = $self->{printed};
2961 my $emailforms = $self->{emailed};
2963 $query = qq|DELETE FROM status
2964 WHERE (formname = ?) AND (trans_id = ?)|;
2965 do_query($self, $dbh, $query, $self->{formname}, $self->{id});
2967 # this only applies to the forms
2968 # checks and receipts are posted when printed or queued
2970 if ($self->{queued}) {
2971 my %queued = split / /, $self->{queued};
2973 foreach my $formname (keys %queued) {
2974 $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2975 $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
2977 $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
2978 VALUES (?, ?, ?, ?, ?)|;
2979 do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
2981 $formnames =~ s/\Q$self->{formname}\E//;
2982 $emailforms =~ s/\Q$self->{formname}\E//;
2987 # save printed, emailed info
2988 $formnames =~ s/^ +//g;
2989 $emailforms =~ s/^ +//g;
2992 map { $status{$_}{printed} = 1 } split / +/, $formnames;
2993 map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
2995 foreach my $formname (keys %status) {
2996 $printed = ($formnames =~ /\Q$self->{formname}\E/) ? "1" : "0";
2997 $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
2999 $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
3000 VALUES (?, ?, ?, ?)|;
3001 do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
3004 $main::lxdebug->leave_sub();
3008 # $main::locale->text('SAVED')
3009 # $main::locale->text('DELETED')
3010 # $main::locale->text('ADDED')
3011 # $main::locale->text('PAYMENT POSTED')
3012 # $main::locale->text('POSTED')
3013 # $main::locale->text('POSTED AS NEW')
3014 # $main::locale->text('ELSE')
3015 # $main::locale->text('SAVED FOR DUNNING')
3016 # $main::locale->text('DUNNING STARTED')
3017 # $main::locale->text('PRINTED')
3018 # $main::locale->text('MAILED')
3019 # $main::locale->text('SCREENED')
3020 # $main::locale->text('CANCELED')
3021 # $main::locale->text('invoice')
3022 # $main::locale->text('proforma')
3023 # $main::locale->text('sales_order')
3024 # $main::locale->text('packing_list')
3025 # $main::locale->text('pick_list')
3026 # $main::locale->text('purchase_order')
3027 # $main::locale->text('bin_list')
3028 # $main::locale->text('sales_quotation')
3029 # $main::locale->text('request_quotation')
3032 $main::lxdebug->enter_sub();
3037 if(!exists $self->{employee_id}) {
3038 &get_employee($self, $dbh);
3042 qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
3043 qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
3044 my @values = (conv_i($self->{id}), $self->{login},
3045 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
3046 do_query($self, $dbh, $query, @values);
3048 $main::lxdebug->leave_sub();
3052 $main::lxdebug->enter_sub();
3054 my ($self, $dbh, $trans_id, $restriction, $order) = @_;
3055 my ($orderBy, $desc) = split(/\-\-/, $order);
3056 $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
3059 if ($trans_id ne "") {
3061 qq|SELECT h.employee_id, h.itime::timestamp(0) AS itime, h.addition, h.what_done, emp.name, h.snumbers, h.trans_id AS id | .
3062 qq|FROM history_erp h | .
3063 qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
3064 qq|WHERE trans_id = | . $trans_id
3065 . $restriction . qq| |
3068 my $sth = $dbh->prepare($query) || $self->dberror($query);
3070 $sth->execute() || $self->dberror("$query");
3072 while(my $hash_ref = $sth->fetchrow_hashref()) {
3073 $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
3074 $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
3075 $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
3076 $tempArray[$i++] = $hash_ref;
3078 $main::lxdebug->leave_sub() and return \@tempArray
3079 if ($i > 0 && $tempArray[0] ne "");
3081 $main::lxdebug->leave_sub();
3085 sub update_defaults {
3086 $main::lxdebug->enter_sub();
3088 my ($self, $myconfig, $fld, $provided_dbh) = @_;
3091 if ($provided_dbh) {
3092 $dbh = $provided_dbh;
3094 $dbh = $self->dbconnect_noauto($myconfig);
3096 my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
3097 my $sth = $dbh->prepare($query);
3099 $sth->execute || $self->dberror($query);
3100 my ($var) = $sth->fetchrow_array;
3103 if ($var =~ m/\d+$/) {
3104 my $new_var = (substr $var, $-[0]) * 1 + 1;
3105 my $len_diff = length($var) - $-[0] - length($new_var);
3106 $var = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3112 $query = qq|UPDATE defaults SET $fld = ?|;
3113 do_query($self, $dbh, $query, $var);
3115 if (!$provided_dbh) {
3120 $main::lxdebug->leave_sub();
3125 sub update_business {
3126 $main::lxdebug->enter_sub();
3128 my ($self, $myconfig, $business_id, $provided_dbh) = @_;
3131 if ($provided_dbh) {
3132 $dbh = $provided_dbh;
3134 $dbh = $self->dbconnect_noauto($myconfig);
3137 qq|SELECT customernumberinit FROM business
3138 WHERE id = ? FOR UPDATE|;
3139 my ($var) = selectrow_query($self, $dbh, $query, $business_id);
3141 if ($var =~ m/\d+$/) {
3142 my $new_var = (substr $var, $-[0]) * 1 + 1;
3143 my $len_diff = length($var) - $-[0] - length($new_var);
3144 $var = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3150 $query = qq|UPDATE business
3151 SET customernumberinit = ?
3153 do_query($self, $dbh, $query, $var, $business_id);
3155 if (!$provided_dbh) {
3160 $main::lxdebug->leave_sub();
3165 sub get_partsgroup {
3166 $main::lxdebug->enter_sub();
3168 my ($self, $myconfig, $p) = @_;
3169 my $target = $p->{target} || 'all_partsgroup';
3171 my $dbh = $self->get_standard_dbh($myconfig);
3173 my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
3175 JOIN parts p ON (p.partsgroup_id = pg.id) |;
3178 if ($p->{searchitems} eq 'part') {
3179 $query .= qq|WHERE p.inventory_accno_id > 0|;
3181 if ($p->{searchitems} eq 'service') {
3182 $query .= qq|WHERE p.inventory_accno_id IS NULL|;
3184 if ($p->{searchitems} eq 'assembly') {
3185 $query .= qq|WHERE p.assembly = '1'|;
3187 if ($p->{searchitems} eq 'labor') {
3188 $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
3191 $query .= qq|ORDER BY partsgroup|;
3194 $query = qq|SELECT id, partsgroup FROM partsgroup
3195 ORDER BY partsgroup|;
3198 if ($p->{language_code}) {
3199 $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
3200 t.description AS translation
3202 JOIN parts p ON (p.partsgroup_id = pg.id)
3203 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
3204 ORDER BY translation|;
3205 @values = ($p->{language_code});
3208 $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
3210 $main::lxdebug->leave_sub();
3213 sub get_pricegroup {
3214 $main::lxdebug->enter_sub();
3216 my ($self, $myconfig, $p) = @_;
3218 my $dbh = $self->get_standard_dbh($myconfig);
3220 my $query = qq|SELECT p.id, p.pricegroup
3223 $query .= qq| ORDER BY pricegroup|;
3226 $query = qq|SELECT id, pricegroup FROM pricegroup
3227 ORDER BY pricegroup|;
3230 $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
3232 $main::lxdebug->leave_sub();
3236 # usage $form->all_years($myconfig, [$dbh])
3237 # return list of all years where bookings found
3240 $main::lxdebug->enter_sub();
3242 my ($self, $myconfig, $dbh) = @_;
3244 $dbh ||= $self->get_standard_dbh($myconfig);
3247 my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
3248 (SELECT MAX(transdate) FROM acc_trans)|;
3249 my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
3251 if ($myconfig->{dateformat} =~ /^yy/) {
3252 ($startdate) = split /\W/, $startdate;
3253 ($enddate) = split /\W/, $enddate;
3255 (@_) = split /\W/, $startdate;
3257 (@_) = split /\W/, $enddate;
3262 $startdate = substr($startdate,0,4);
3263 $enddate = substr($enddate,0,4);
3265 while ($enddate >= $startdate) {
3266 push @all_years, $enddate--;
3271 $main::lxdebug->leave_sub();
3275 $main::lxdebug->enter_sub();
3279 map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if $self->{$_} } @vars;
3281 $main::lxdebug->leave_sub();
3285 $main::lxdebug->enter_sub();
3290 map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if $self->{_VAR_BACKUP}->{$_} } @vars;
3292 $main::lxdebug->leave_sub();