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 #======================================================================
59 use List::Util qw(first max min sum);
60 use List::MoreUtils qw(any);
66 $standard_dbh->disconnect();
73 parses a complex var name, and stores it in the form.
76 $form->_store_value($key, $value);
78 keys must start with a string, and can contain various tokens.
79 supported key structures are:
82 simple key strings work as expected
87 separating two keys by a dot (.) will result in a hash lookup for the inner value
88 this is similar to the behaviour of java and templating mechanisms.
90 filter.description => $form->{filter}->{description}
92 3. array+hashref access
94 adding brackets ([]) before the dot will cause the next hash to be put into an array.
95 using [+] instead of [] will force a new array index. this is useful for recurring
96 data structures like part lists. put a [+] into the first varname, and use [] on the
99 repeating these names in your template:
102 invoice.items[].parts_id
106 $form->{invoice}->{items}->[
120 using brackets at the end of a name will result in a pure array to be created.
121 note that you mustn't use [+], which is reserved for array+hash access and will
122 result in undefined behaviour in array context.
124 filter.status[] => $form->{status}->[ val1, val2, ... ]
128 $main::lxdebug->enter_sub(2);
134 my @tokens = split /((?:\[\+?\])?(?:\.|$))/, $key;
138 if (scalar @tokens) {
139 $curr = \ $self->{ shift @tokens };
143 my $sep = shift @tokens;
144 my $key = shift @tokens;
146 $curr = \ $$curr->[++$#$$curr], next if $sep eq '[]';
147 $curr = \ $$curr->[max 0, $#$$curr] if $sep eq '[].';
148 $curr = \ $$curr->[++$#$$curr] if $sep eq '[+].';
149 $curr = \ $$curr->{$key}
154 $main::lxdebug->leave_sub(2);
160 $main::lxdebug->enter_sub(2);
165 my @pairs = split(/&/, $input);
168 my ($key, $value) = split(/=/, $_, 2);
169 $self->_store_value($self->unescape($key), $self->unescape($value)) if ($key);
172 $main::lxdebug->leave_sub(2);
175 sub _request_to_hash {
176 $main::lxdebug->enter_sub(2);
181 if (!$ENV{'CONTENT_TYPE'}
182 || ($ENV{'CONTENT_TYPE'} !~ /multipart\/form-data\s*;\s*boundary\s*=\s*(.+)$/)) {
184 $self->_input_to_hash($input);
186 $main::lxdebug->leave_sub(2);
190 my ($name, $filename, $headers_done, $content_type, $boundary_found, $need_cr, $previous);
192 my $boundary = '--' . $1;
194 foreach my $line (split m/\n/, $input) {
195 last if (($line eq "${boundary}--") || ($line eq "${boundary}--\r"));
197 if (($line eq $boundary) || ($line eq "$boundary\r")) {
198 ${ $previous } =~ s|\r?\n$|| if $previous;
204 $content_type = "text/plain";
211 next unless $boundary_found;
213 if (!$headers_done) {
214 $line =~ s/[\r\n]*$//;
221 if ($line =~ m|^content-disposition\s*:.*?form-data\s*;|i) {
222 if ($line =~ m|filename\s*=\s*"(.*?)"|i) {
224 substr $line, $-[0], $+[0] - $-[0], "";
227 if ($line =~ m|name\s*=\s*"(.*?)"|i) {
229 substr $line, $-[0], $+[0] - $-[0], "";
232 $previous = $self->_store_value($name, '') if ($name);
233 $self->{FILENAME} = $filename if ($filename);
238 if ($line =~ m|^content-type\s*:\s*(.*?)$|i) {
245 next unless $previous;
247 ${ $previous } .= "${line}\n";
250 ${ $previous } =~ s|\r?\n$|| if $previous;
252 $main::lxdebug->leave_sub(2);
255 sub _recode_recursively {
256 $main::lxdebug->enter_sub();
257 my ($iconv, $param) = @_;
259 if (any { ref $param eq $_ } qw(Form HASH)) {
260 foreach my $key (keys %{ $param }) {
261 if (!ref $param->{$key}) {
262 $param->{$key} = $iconv->convert($param->{$key});
264 _recode_recursively($iconv, $param->{$key});
268 } elsif (ref $param eq 'ARRAY') {
269 foreach my $idx (0 .. scalar(@{ $param }) - 1) {
270 if (!ref $param->[$idx]) {
271 $param->[$idx] = $iconv->convert($param->[$idx]);
273 _recode_recursively($iconv, $param->[$idx]);
277 $main::lxdebug->leave_sub();
281 $main::lxdebug->enter_sub();
287 if ($LXDebug::watch_form) {
288 require SL::Watchdog;
289 tie %{ $self }, 'SL::Watchdog';
292 read(STDIN, $_, $ENV{CONTENT_LENGTH});
294 if ($ENV{QUERY_STRING}) {
295 $_ = $ENV{QUERY_STRING};
304 $self->_request_to_hash($_);
306 my $db_charset = $main::dbcharset;
307 $db_charset ||= Common::DEFAULT_CHARSET;
309 if ($self->{INPUT_ENCODING} && (lc $self->{INPUT_ENCODING} ne $db_charset)) {
311 my $iconv = Text::Iconv->new($self->{INPUT_ENCODING}, $db_charset);
313 _recode_recursively($iconv, $self);
315 delete $self{INPUT_ENCODING};
318 $self->{action} = lc $self->{action};
319 $self->{action} =~ s/( |-|,|\#)/_/g;
321 $self->{version} = "2.6.0";
323 $main::lxdebug->leave_sub();
328 sub _flatten_variables_rec {
329 $main::lxdebug->enter_sub(2);
338 if ('' eq ref $curr->{$key}) {
339 @result = ({ 'key' => $prefix . $key, 'value' => $curr->{$key} });
341 } elsif ('HASH' eq ref $curr->{$key}) {
342 foreach my $hash_key (sort keys %{ $curr->{$key} }) {
343 push @result, $self->_flatten_variables_rec($curr->{$key}, $prefix . $key . '.', $hash_key);
347 foreach my $idx (0 .. scalar @{ $curr->{$key} } - 1) {
348 my $first_array_entry = 1;
350 foreach my $hash_key (sort keys %{ $curr->{$key}->[$idx] }) {
351 push @result, $self->_flatten_variables_rec($curr->{$key}->[$idx], $prefix . $key . ($first_array_entry ? '[+].' : '[].'), $hash_key);
352 $first_array_entry = 0;
357 $main::lxdebug->leave_sub(2);
362 sub flatten_variables {
363 $main::lxdebug->enter_sub(2);
371 push @variables, $self->_flatten_variables_rec($self, '', $_);
374 $main::lxdebug->leave_sub(2);
379 sub flatten_standard_variables {
380 $main::lxdebug->enter_sub(2);
383 my %skip_keys = map { $_ => 1 } (qw(login password header stylesheet titlebar version), @_);
387 foreach (grep { ! $skip_keys{$_} } keys %{ $self }) {
388 push @variables, $self->_flatten_variables_rec($self, '', $_);
391 $main::lxdebug->leave_sub(2);
397 $main::lxdebug->enter_sub();
403 map { print "$_ = $self->{$_}\n" } (sort keys %{$self});
405 $main::lxdebug->leave_sub();
409 $main::lxdebug->enter_sub(2);
412 my $password = $self->{password};
414 $self->{password} = 'X' x 8;
416 local $Data::Dumper::Sortkeys = 1;
417 my $output = Dumper($self);
419 $self->{password} = $password;
421 $main::lxdebug->leave_sub(2);
427 $main::lxdebug->enter_sub(2);
429 my ($self, $str) = @_;
431 $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
433 $main::lxdebug->leave_sub(2);
439 $main::lxdebug->enter_sub(2);
441 my ($self, $str) = @_;
446 $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
448 $main::lxdebug->leave_sub(2);
454 $main::lxdebug->enter_sub();
455 my ($self, $str) = @_;
457 if ($str && !ref($str)) {
458 $str =~ s/\"/"/g;
461 $main::lxdebug->leave_sub();
467 $main::lxdebug->enter_sub();
468 my ($self, $str) = @_;
470 if ($str && !ref($str)) {
471 $str =~ s/"/\"/g;
474 $main::lxdebug->leave_sub();
480 $main::lxdebug->enter_sub();
484 map({ print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n"); } @_);
486 for (sort keys %$self) {
487 next if (($_ eq "header") || (ref($self->{$_}) ne ""));
488 print($main::cgi->hidden("-name" => $_, "-default" => $self->{$_}) . "\n");
491 $main::lxdebug->leave_sub();
495 $main::lxdebug->enter_sub();
497 $main::lxdebug->show_backtrace();
499 my ($self, $msg) = @_;
500 if ($ENV{HTTP_USER_AGENT}) {
502 $self->show_generic_error($msg);
509 $main::lxdebug->leave_sub();
513 $main::lxdebug->enter_sub();
515 my ($self, $msg) = @_;
517 if ($ENV{HTTP_USER_AGENT}) {
520 if (!$self->{header}) {
533 if ($self->{info_function}) {
534 &{ $self->{info_function} }($msg);
540 $main::lxdebug->leave_sub();
543 # calculates the number of rows in a textarea based on the content and column number
544 # can be capped with maxrows
546 $main::lxdebug->enter_sub();
547 my ($self, $str, $cols, $maxrows, $minrows) = @_;
551 my $rows = sum map { int((length() - 2) / $cols) + 1 } split /\r/, $str;
554 $main::lxdebug->leave_sub();
556 return max(min($rows, $maxrows), $minrows);
560 $main::lxdebug->enter_sub();
562 my ($self, $msg) = @_;
564 $self->error("$msg\n" . $DBI::errstr);
566 $main::lxdebug->leave_sub();
570 $main::lxdebug->enter_sub();
572 my ($self, $name, $msg) = @_;
575 foreach my $part (split m/\./, $name) {
576 if (!$curr->{$part} || ($curr->{$part} =~ /^\s*$/)) {
579 $curr = $curr->{$part};
582 $main::lxdebug->leave_sub();
585 sub create_http_response {
586 $main::lxdebug->enter_sub();
591 my $cgi = $main::cgi;
592 $cgi ||= CGI->new('');
596 if ($ENV{HTTP_X_FORWARDED_FOR}) {
597 $base_path = $ENV{HTTP_REFERER};
598 $base_path =~ s|^.*?://.*?/|/|;
600 $base_path = $ENV{REQUEST_URI};
602 $base_path =~ s|[^/]+$||;
603 $base_path =~ s|/$||;
606 if (defined $main::auth) {
607 my $session_cookie_value = $main::auth->get_session_id();
608 $session_cookie_value ||= 'NO_SESSION';
610 $session_cookie = $cgi->cookie('-name' => $main::auth->get_session_cookie_name(),
611 '-value' => $session_cookie_value,
612 '-path' => $base_path);
615 my %cgi_params = ('-type' => $params{content_type});
616 $cgi_params{'-charset'} = $params{charset} if ($params{charset});
618 my $output = $cgi->header('-cookie' => $session_cookie,
621 $main::lxdebug->leave_sub();
628 $main::lxdebug->enter_sub();
630 my ($self, $extra_code) = @_;
632 if ($self->{header}) {
633 $main::lxdebug->leave_sub();
637 my ($stylesheet, $favicon, $pagelayout);
639 if ($ENV{HTTP_USER_AGENT}) {
642 if ($ENV{'HTTP_USER_AGENT'} =~ m/MSIE\s+\d/) {
643 # Only set the DOCTYPE for Internet Explorer. Other browsers have problems displaying the menu otherwise.
644 $doctype = qq|<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n|;
647 my $stylesheets = "$self->{stylesheet} $self->{stylesheets}";
649 $stylesheets =~ s|^\s*||;
650 $stylesheets =~ s|\s*$||;
651 foreach my $file (split m/\s+/, $stylesheets) {
653 next if (! -f "css/$file");
655 $stylesheet .= qq|<link rel="stylesheet" href="css/$file" TYPE="text/css" TITLE="Lx-Office stylesheet">\n|;
658 $self->{favicon} = "favicon.ico" unless $self->{favicon};
660 if ($self->{favicon} && (-f "$self->{favicon}")) {
662 qq|<LINK REL="shortcut icon" HREF="$self->{favicon}" TYPE="image/x-icon">
666 my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
668 if ($self->{landscape}) {
669 $pagelayout = qq|<style type="text/css">
670 \@page { size:landscape; }
674 my $fokus = qq| document.$self->{fokus}.focus();| if ($self->{"fokus"});
678 if ($self->{jsscript} == 1) {
681 <script type="text/javascript" src="js/common.js"></script>
682 <style type="text/css">\@import url(js/jscalendar/calendar-win2k-1.css);</style>
683 <script type="text/javascript" src="js/jscalendar/calendar.js"></script>
684 <script type="text/javascript" src="js/jscalendar/lang/calendar-de.js"></script>
685 <script type="text/javascript" src="js/jscalendar/calendar-setup.js"></script>
692 ? "$self->{title} - $self->{titlebar}"
695 foreach my $item (@ { $self->{AJAX} }) {
696 $ajax .= $item->show_javascript();
699 print $self->create_http_response('content_type' => 'text/html',
700 'charset' => $db_charset,);
701 print qq|${doctype}<html>
703 <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=${db_charset}">
704 <title>$self->{titlebar}</title>
711 <script type="text/javascript">
719 <meta name="robots" content="noindex,nofollow" />
720 <script type="text/javascript" src="js/highlight_input.js"></script>
722 <link rel="stylesheet" type="text/css" href="css/tabcontent.css" />
723 <script type="text/javascript" src="js/tabcontent.js">
725 /***********************************************
726 * Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
727 * This notice MUST stay intact for legal use
728 * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
729 ***********************************************/
740 $main::lxdebug->leave_sub();
743 sub ajax_response_header {
744 $main::lxdebug->enter_sub();
748 my $db_charset = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
749 my $cgi = $main::cgi || CGI->new('');
750 my $output = $cgi->header('-charset' => $db_charset);
752 $main::lxdebug->leave_sub();
757 sub _prepare_html_template {
758 $main::lxdebug->enter_sub();
760 my ($self, $file, $additional_params) = @_;
763 if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
764 $language = $main::language;
766 $language = $main::myconfig{"countrycode"};
768 $language = "de" unless ($language);
770 if (-f "templates/webpages/${file}_${language}.html") {
771 if ((-f ".developer") &&
772 (-f "templates/webpages/${file}_master.html") &&
773 ((stat("templates/webpages/${file}_master.html"))[9] >
774 (stat("templates/webpages/${file}_${language}.html"))[9])) {
775 my $info = "Developer information: templates/webpages/${file}_master.html is newer than the localized version.\n" .
776 "Please re-run 'locales.pl' in 'locale/${language}'.";
777 print(qq|<pre>$info</pre>|);
781 $file = "templates/webpages/${file}_${language}.html";
782 } elsif (-f "templates/webpages/${file}.html") {
783 $file = "templates/webpages/${file}.html";
785 my $info = "Web page template '${file}' not found.\n" .
786 "Please re-run 'locales.pl' in 'locale/${language}'.";
787 print(qq|<pre>$info</pre>|);
791 if ($self->{"DEBUG"}) {
792 $additional_params->{"DEBUG"} = $self->{"DEBUG"};
795 if ($additional_params->{"DEBUG"}) {
796 $additional_params->{"DEBUG"} =
797 "<br><em>DEBUG INFORMATION:</em><pre>" . $additional_params->{"DEBUG"} . "</pre>";
800 if (%main::myconfig) {
801 map({ $additional_params->{"myconfig_${_}"} = $main::myconfig{$_}; } keys(%main::myconfig));
802 my $jsc_dateformat = $main::myconfig{"dateformat"};
803 $jsc_dateformat =~ s/d+/\%d/gi;
804 $jsc_dateformat =~ s/m+/\%m/gi;
805 $jsc_dateformat =~ s/y+/\%Y/gi;
806 $additional_params->{"myconfig_jsc_dateformat"} = $jsc_dateformat;
809 $additional_params->{"conf_dbcharset"} = $main::dbcharset;
810 $additional_params->{"conf_webdav"} = $main::webdav;
811 $additional_params->{"conf_lizenzen"} = $main::lizenzen;
812 $additional_params->{"conf_latex_templates"} = $main::latex;
813 $additional_params->{"conf_opendocument_templates"} = $main::opendocument_templates;
815 if (%main::debug_options) {
816 map { $additional_params->{'DEBUG_' . uc($_)} = $main::debug_options{$_} } keys %main::debug_options;
819 if ($main::auth && $main::auth->{RIGHTS} && $main::auth->{RIGHTS}->{$self->{login}}) {
820 while (my ($key, $value) = each %{ $main::auth->{RIGHTS}->{$self->{login}} }) {
821 $additional_params->{"AUTH_RIGHTS_" . uc($key)} = $value;
825 $main::lxdebug->leave_sub();
830 sub parse_html_template {
831 $main::lxdebug->enter_sub();
833 my ($self, $file, $additional_params) = @_;
835 $additional_params ||= { };
837 $file = $self->_prepare_html_template($file, $additional_params);
839 my $template = Template->new({ 'INTERPOLATE' => 0,
843 'PLUGIN_BASE' => 'SL::Template::Plugin',
844 'INCLUDE_PATH' => '.:templates/webpages',
847 map { $additional_params->{$_} ||= $self->{$_} } keys %{ $self };
849 my $in = IO::File->new($file, 'r');
852 print STDERR "Error opening template file: $!";
853 $main::lxdebug->leave_sub();
857 my $input = join('', <$in>);
861 $input = $main::locale->{iconv}->convert($input);
865 if (!$template->process(\$input, $additional_params, \$output)) {
866 print STDERR $template->error();
869 $main::lxdebug->leave_sub();
874 sub show_generic_error {
875 $main::lxdebug->enter_sub();
877 my ($self, $error, %params) = @_;
880 'title_error' => $params{title},
881 'label_error' => $error,
884 if ($params{action}) {
887 map { delete($self->{$_}); } qw(action);
888 map { push @vars, { "name" => $_, "value" => $self->{$_} } if (!ref($self->{$_})); } keys %{ $self };
890 $add_params->{SHOW_BUTTON} = 1;
891 $add_params->{BUTTON_LABEL} = $params{label} || $params{action};
892 $add_params->{VARIABLES} = \@vars;
894 } elsif ($params{back_button}) {
895 $add_params->{SHOW_BACK_BUTTON} = 1;
898 $self->{title} = $params{title} if $params{title};
901 print $self->parse_html_template("generic/error", $add_params);
903 $main::lxdebug->leave_sub();
905 die("Error: $error\n");
908 sub show_generic_information {
909 $main::lxdebug->enter_sub();
911 my ($self, $text, $title) = @_;
914 'title_information' => $title,
915 'label_information' => $text,
918 $self->{title} = $title if ($title);
921 print $self->parse_html_template("generic/information", $add_params);
923 $main::lxdebug->leave_sub();
925 die("Information: $text\n");
928 # write Trigger JavaScript-Code ($qty = quantity of Triggers)
929 # changed it to accept an arbitrary number of triggers - sschoeling
931 $main::lxdebug->enter_sub();
934 my $myconfig = shift;
937 # set dateform for jsscript
940 "dd.mm.yy" => "%d.%m.%Y",
941 "dd-mm-yy" => "%d-%m-%Y",
942 "dd/mm/yy" => "%d/%m/%Y",
943 "mm/dd/yy" => "%m/%d/%Y",
944 "mm-dd-yy" => "%m-%d-%Y",
945 "yyyy-mm-dd" => "%Y-%m-%d",
948 my $ifFormat = defined($dateformats{$myconfig->{"dateformat"}}) ?
949 $dateformats{$myconfig->{"dateformat"}} : "%d.%m.%Y";
956 inputField : "| . (shift) . qq|",
957 ifFormat :"$ifFormat",
958 align : "| . (shift) . qq|",
959 button : "| . (shift) . qq|"
965 <script type="text/javascript">
966 <!--| . join("", @triggers) . qq|//-->
970 $main::lxdebug->leave_sub();
973 } #end sub write_trigger
976 $main::lxdebug->enter_sub();
978 my ($self, $msg) = @_;
980 if ($self->{callback}) {
982 my ($script, $argv) = split(/\?/, $self->{callback}, 2);
984 $script =~ s|[^a-zA-Z0-9_\.]||g;
985 exec("perl", "$script", $argv);
993 $main::lxdebug->leave_sub();
996 # sort of columns removed - empty sub
998 $main::lxdebug->enter_sub();
1000 my ($self, @columns) = @_;
1002 $main::lxdebug->leave_sub();
1008 $main::lxdebug->enter_sub(2);
1010 my ($self, $myconfig, $amount, $places, $dash) = @_;
1012 if ($amount eq "") {
1016 # Hey watch out! The amount can be an exponential term like 1.13686837721616e-13
1018 my $neg = ($amount =~ s/^-//);
1019 my $exp = ($amount =~ m/[e]/) ? 1 : 0;
1021 if (defined($places) && ($places ne '')) {
1027 my ($actual_places) = ($amount =~ /\.(\d+)/);
1028 $actual_places = length($actual_places);
1029 $places = $actual_places > $places ? $actual_places : $places;
1032 $amount = $self->round_amount($amount, $places);
1035 my @d = map { s/\d//g; reverse split // } my $tmp = $myconfig->{numberformat}; # get delim chars
1036 my @p = split(/\./, $amount); # split amount at decimal point
1038 $p[0] =~ s/\B(?=(...)*$)/$d[1]/g if $d[1]; # add 1,000 delimiters
1041 $amount .= $d[0].$p[1].(0 x ($places - length $p[1])) if ($places || $p[1] ne '');
1044 ($dash =~ /-/) ? ($neg ? "($amount)" : "$amount" ) :
1045 ($dash =~ /DRCR/) ? ($neg ? "$amount " . $main::locale->text('DR') : "$amount " . $main::locale->text('CR') ) :
1046 ($neg ? "-$amount" : "$amount" ) ;
1050 $main::lxdebug->leave_sub(2);
1054 sub format_amount_units {
1055 $main::lxdebug->enter_sub();
1060 my $myconfig = \%main::myconfig;
1061 my $amount = $params{amount} * 1;
1062 my $places = $params{places};
1063 my $part_unit_name = $params{part_unit};
1064 my $amount_unit_name = $params{amount_unit};
1065 my $conv_units = $params{conv_units};
1066 my $max_places = $params{max_places};
1068 if (!$part_unit_name) {
1069 $main::lxdebug->leave_sub();
1073 AM->retrieve_all_units();
1074 my $all_units = $main::all_units;
1076 if (('' eq ref $conv_units) && ($conv_units =~ /convertible/)) {
1077 $conv_units = AM->convertible_units($all_units, $part_unit_name, $conv_units eq 'convertible_not_smaller');
1080 if (!scalar @{ $conv_units }) {
1081 my $result = $self->format_amount($myconfig, $amount, $places, undef, $max_places) . " " . $part_unit_name;
1082 $main::lxdebug->leave_sub();
1086 my $part_unit = $all_units->{$part_unit_name};
1087 my $conv_unit = ($amount_unit_name && ($amount_unit_name ne $part_unit_name)) ? $all_units->{$amount_unit_name} : $part_unit;
1089 $amount *= $conv_unit->{factor};
1094 foreach my $unit (@$conv_units) {
1095 my $last = $unit->{name} eq $part_unit->{name};
1097 $num = int($amount / $unit->{factor});
1098 $amount -= $num * $unit->{factor};
1101 if ($last ? $amount : $num) {
1102 push @values, { "unit" => $unit->{name},
1103 "amount" => $last ? $amount / $unit->{factor} : $num,
1104 "places" => $last ? $places : 0 };
1111 push @values, { "unit" => $part_unit_name,
1116 my $result = join " ", map { $self->format_amount($myconfig, $_->{amount}, $_->{places}, undef, $max_places), $_->{unit} } @values;
1118 $main::lxdebug->leave_sub();
1124 $main::lxdebug->enter_sub(2);
1129 $input =~ s/(^|[^\#]) \# (\d+) /$1$_[$2 - 1]/gx;
1130 $input =~ s/(^|[^\#]) \#\{(\d+)\}/$1$_[$2 - 1]/gx;
1131 $input =~ s/\#\#/\#/g;
1133 $main::lxdebug->leave_sub(2);
1141 $main::lxdebug->enter_sub(2);
1143 my ($self, $myconfig, $amount) = @_;
1145 if ( ($myconfig->{numberformat} eq '1.000,00')
1146 || ($myconfig->{numberformat} eq '1000,00')) {
1151 if ($myconfig->{numberformat} eq "1'000.00") {
1157 $main::lxdebug->leave_sub(2);
1159 return ($amount * 1);
1163 $main::lxdebug->enter_sub(2);
1165 my ($self, $amount, $places) = @_;
1168 # Rounding like "Kaufmannsrunden"
1169 # Descr. http://de.wikipedia.org/wiki/Rundung
1171 # http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q4.13.html
1174 $amount = $amount * (10**($places));
1175 $round_amount = int($amount + .5 * ($amount <=> 0)) / (10**($places));
1177 $main::lxdebug->leave_sub(2);
1179 return $round_amount;
1183 sub parse_template {
1184 $main::lxdebug->enter_sub();
1186 my ($self, $myconfig, $userspath) = @_;
1187 my ($template, $out);
1191 $self->{"cwd"} = getcwd();
1192 $self->{"tmpdir"} = $self->{cwd} . "/${userspath}";
1196 if ($self->{"format"} =~ /(opendocument|oasis)/i) {
1197 $template = OpenDocumentTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1198 $ext_for_format = $self->{"format"} =~ m/pdf/ ? 'pdf' : 'odt';
1200 } elsif ($self->{"format"} =~ /(postscript|pdf)/i) {
1201 $ENV{"TEXINPUTS"} = ".:" . getcwd() . "/" . $myconfig->{"templates"} . ":" . $ENV{"TEXINPUTS"};
1202 $template = LaTeXTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1203 $ext_for_format = 'pdf';
1205 } elsif (($self->{"format"} =~ /html/i) || (!$self->{"format"} && ($self->{"IN"} =~ /html$/i))) {
1206 $template = HTMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1207 $ext_for_format = 'html';
1209 } elsif (($self->{"format"} =~ /xml/i) || (!$self->{"format"} && ($self->{"IN"} =~ /xml$/i))) {
1210 $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1211 $ext_for_format = 'xml';
1213 } elsif ( $self->{"format"} =~ /elsterwinston/i ) {
1214 $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1216 } elsif ( $self->{"format"} =~ /elstertaxbird/i ) {
1217 $template = XMLTemplate->new($self->{"IN"}, $self, $myconfig, $userspath);
1219 } elsif ( defined $self->{'format'}) {
1220 $self->error("Outputformat not defined. This may be a future feature: $self->{'format'}");
1222 } elsif ( $self->{'format'} eq '' ) {
1223 $self->error("No Outputformat given: $self->{'format'}");
1225 } else { #Catch the rest
1226 $self->error("Outputformat not defined: $self->{'format'}");
1229 # Copy the notes from the invoice/sales order etc. back to the variable "notes" because that is where most templates expect it to be.
1230 $self->{"notes"} = $self->{ $self->{"formname"} . "notes" };
1232 if (!$self->{employee_id}) {
1233 map { $self->{"employee_${_}"} = $myconfig->{$_}; } qw(email tel fax name signature company address businessnumber co_ustid taxnumber duns);
1236 map { $self->{"${_}"} = $myconfig->{$_}; } qw(co_ustid);
1238 $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
1240 # OUT is used for the media, screen, printer, email
1241 # for postscript we store a copy in a temporary file
1243 my $prepend_userspath;
1245 if (!$self->{tmpfile}) {
1246 $self->{tmpfile} = "${fileid}.$self->{IN}";
1247 $prepend_userspath = 1;
1250 $prepend_userspath = 1 if substr($self->{tmpfile}, 0, length $userspath) eq $userspath;
1252 $self->{tmpfile} =~ s|.*/||;
1253 $self->{tmpfile} =~ s/[^a-zA-Z0-9\._\ \-]//g;
1254 $self->{tmpfile} = "$userspath/$self->{tmpfile}" if $prepend_userspath;
1256 if ($template->uses_temp_file() || $self->{media} eq 'email') {
1257 $out = $self->{OUT};
1258 $self->{OUT} = ">$self->{tmpfile}";
1262 open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
1264 open(OUT, ">-") or $self->error("STDOUT : $!");
1268 if (!$template->parse(*OUT)) {
1270 $self->error("$self->{IN} : " . $template->get_error());
1275 if ($template->uses_temp_file() || $self->{media} eq 'email') {
1277 if ($self->{media} eq 'email') {
1279 my $mail = new Mailer;
1281 map { $mail->{$_} = $self->{$_} }
1282 qw(cc bcc subject message version format);
1283 $mail->{charset} = $main::dbcharset ? $main::dbcharset : Common::DEFAULT_CHARSET;
1284 $mail->{to} = $self->{EMAIL_RECIPIENT} ? $self->{EMAIL_RECIPIENT} : $self->{email};
1285 $mail->{from} = qq|"$myconfig->{name}" <$myconfig->{email}>|;
1286 $mail->{fileid} = "$fileid.";
1287 $myconfig->{signature} =~ s/\r//g;
1289 # if we send html or plain text inline
1290 if (($self->{format} eq 'html') && ($self->{sendmode} eq 'inline')) {
1291 $mail->{contenttype} = "text/html";
1293 $mail->{message} =~ s/\r//g;
1294 $mail->{message} =~ s/\n/<br>\n/g;
1295 $myconfig->{signature} =~ s/\n/<br>\n/g;
1296 $mail->{message} .= "<br>\n-- <br>\n$myconfig->{signature}\n<br>";
1298 open(IN, $self->{tmpfile})
1299 or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1301 $mail->{message} .= $_;
1308 if (!$self->{"do_not_attach"}) {
1309 my $attachment_name = $self->{attachment_filename} || $self->{tmpfile};
1310 $attachment_name =~ s/\.(.+?)$/.${ext_for_format}/ if ($ext_for_format);
1311 $mail->{attachments} = [{ "filename" => $self->{tmpfile},
1312 "name" => $attachment_name }];
1315 $mail->{message} =~ s/\r//g;
1316 $mail->{message} .= "\n-- \n$myconfig->{signature}";
1320 my $err = $mail->send();
1321 $self->error($self->cleanup . "$err") if ($err);
1325 $self->{OUT} = $out;
1327 my $numbytes = (-s $self->{tmpfile});
1328 open(IN, $self->{tmpfile})
1329 or $self->error($self->cleanup . "$self->{tmpfile} : $!");
1331 $self->{copies} = 1 unless $self->{media} eq 'printer';
1333 chdir("$self->{cwd}");
1334 #print(STDERR "Kopien $self->{copies}\n");
1335 #print(STDERR "OUT $self->{OUT}\n");
1336 for my $i (1 .. $self->{copies}) {
1338 open(OUT, $self->{OUT})
1339 or $self->error($self->cleanup . "$self->{OUT} : $!");
1341 $self->{attachment_filename} = ($self->{attachment_filename})
1342 ? $self->{attachment_filename}
1343 : $self->generate_attachment_filename();
1345 # launch application
1346 print qq|Content-Type: | . $template->get_mime_type() . qq|
1347 Content-Disposition: attachment; filename="$self->{attachment_filename}"
1348 Content-Length: $numbytes
1352 open(OUT, ">-") or $self->error($self->cleanup . "$!: STDOUT");
1358 open(DUMP_OUT, "> /tmp/lx2.dump" );
1359 print(DUMP_OUT Dumper($self));
1376 chdir("$self->{cwd}");
1377 $main::lxdebug->leave_sub();
1380 sub get_formname_translation {
1381 $main::lxdebug->enter_sub();
1382 my ($self, $formname) = @_;
1384 $formname ||= $self->{formname};
1386 my %formname_translations = (
1387 bin_list => $main::locale->text('Bin List'),
1388 credit_note => $main::locale->text('Credit Note'),
1389 invoice => $main::locale->text('Invoice'),
1390 packing_list => $main::locale->text('Packing List'),
1391 pick_list => $main::locale->text('Pick List'),
1392 proforma => $main::locale->text('Proforma Invoice'),
1393 purchase_order => $main::locale->text('Purchase Order'),
1394 request_quotation => $main::locale->text('RFQ'),
1395 sales_order => $main::locale->text('Confirmation'),
1396 sales_quotation => $main::locale->text('Quotation'),
1397 storno_invoice => $main::locale->text('Storno Invoice'),
1398 storno_packing_list => $main::locale->text('Storno Packing List'),
1399 sales_delivery_order => $main::locale->text('Delivery Order'),
1400 purchase_delivery_order => $main::locale->text('Delivery Order'),
1403 $main::lxdebug->leave_sub();
1404 return $formname_translations{$formname}
1407 sub get_number_prefix_for_type {
1408 $main::lxdebug->enter_sub();
1412 (first { $self->{type} eq $_ } qw(invoice credit_note)) ? 'inv'
1413 : ($self->{type} =~ /_quotation$/) ? 'quo'
1414 : ($self->{type} =~ /_delivery_order$/) ? 'do'
1417 $main::lxdebug->leave_sub();
1421 sub get_extension_for_format {
1422 $main::lxdebug->enter_sub();
1425 my $extension = $self->{format} =~ /pdf/i ? ".pdf"
1426 : $self->{format} =~ /postscript/i ? ".ps"
1427 : $self->{format} =~ /opendocument/i ? ".odt"
1428 : $self->{format} =~ /html/i ? ".html"
1431 $main::lxdebug->leave_sub();
1435 sub generate_attachment_filename {
1436 $main::lxdebug->enter_sub();
1439 my $attachment_filename = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1440 my $prefix = $self->get_number_prefix_for_type();
1442 if ($self->{preview} && (first { $self->{type} eq $_ } qw(invoice credit_note))) {
1443 $attachment_filename .= ' (' . $main::locale->text('Preview') . ')' . $self->get_extension_for_format();
1445 } elsif ($attachment_filename && $self->{"${prefix}number"}) {
1446 $attachment_filename .= "_" . $self->{"${prefix}number"} . $self->get_extension_for_format();
1449 $attachment_filename = "";
1452 $attachment_filename = $main::locale->quote_special_chars('filenames', $attachment_filename);
1453 $attachment_filename =~ s|[\s/\\]+|_|g;
1455 $main::lxdebug->leave_sub();
1456 return $attachment_filename;
1459 sub generate_email_subject {
1460 $main::lxdebug->enter_sub();
1463 my $subject = $main::locale->unquote_special_chars('HTML', $self->get_formname_translation());
1464 my $prefix = $self->get_number_prefix_for_type();
1466 if ($subject && $self->{"${prefix}number"}) {
1467 $subject .= " " . $self->{"${prefix}number"}
1470 $main::lxdebug->leave_sub();
1475 $main::lxdebug->enter_sub();
1479 chdir("$self->{tmpdir}");
1482 if (-f "$self->{tmpfile}.err") {
1483 open(FH, "$self->{tmpfile}.err");
1488 if ($self->{tmpfile}) {
1489 $self->{tmpfile} =~ s|.*/||g;
1491 $self->{tmpfile} =~ s/\.\w+$//g;
1492 my $tmpfile = $self->{tmpfile};
1493 unlink(<$tmpfile.*>);
1496 chdir("$self->{cwd}");
1498 $main::lxdebug->leave_sub();
1504 $main::lxdebug->enter_sub();
1506 my ($self, $date, $myconfig) = @_;
1509 if ($date && $date =~ /\D/) {
1511 if ($myconfig->{dateformat} =~ /^yy/) {
1512 ($yy, $mm, $dd) = split /\D/, $date;
1514 if ($myconfig->{dateformat} =~ /^mm/) {
1515 ($mm, $dd, $yy) = split /\D/, $date;
1517 if ($myconfig->{dateformat} =~ /^dd/) {
1518 ($dd, $mm, $yy) = split /\D/, $date;
1523 $yy = ($yy < 70) ? $yy + 2000 : $yy;
1524 $yy = ($yy >= 70 && $yy <= 99) ? $yy + 1900 : $yy;
1526 $dd = "0$dd" if ($dd < 10);
1527 $mm = "0$mm" if ($mm < 10);
1529 $date = "$yy$mm$dd";
1532 $main::lxdebug->leave_sub();
1537 # Database routines used throughout
1540 $main::lxdebug->enter_sub(2);
1542 my ($self, $myconfig) = @_;
1544 # connect to database
1546 DBI->connect($myconfig->{dbconnect},
1547 $myconfig->{dbuser}, $myconfig->{dbpasswd})
1551 if ($myconfig->{dboptions}) {
1552 $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1555 $main::lxdebug->leave_sub(2);
1560 sub dbconnect_noauto {
1561 $main::lxdebug->enter_sub();
1563 my ($self, $myconfig) = @_;
1565 # connect to database
1567 DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser},
1568 $myconfig->{dbpasswd}, { AutoCommit => 0 })
1572 if ($myconfig->{dboptions}) {
1573 $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
1576 $main::lxdebug->leave_sub();
1581 sub get_standard_dbh {
1582 $main::lxdebug->enter_sub(2);
1584 my ($self, $myconfig) = @_;
1586 if ($standard_dbh && !$standard_dbh->{Active}) {
1587 $main::lxdebug->message(LXDebug::INFO, "get_standard_dbh: \$standard_dbh is defined but not Active anymore");
1588 undef $standard_dbh;
1591 $standard_dbh ||= $self->dbconnect_noauto($myconfig);
1593 $main::lxdebug->leave_sub(2);
1595 return $standard_dbh;
1599 $main::lxdebug->enter_sub();
1601 my ($self, $date, $myconfig) = @_;
1602 my $dbh = $self->dbconnect($myconfig);
1604 my $query = "SELECT 1 FROM defaults WHERE ? < closedto";
1605 my $sth = prepare_execute_query($self, $dbh, $query, $date);
1606 my ($closed) = $sth->fetchrow_array;
1608 $main::lxdebug->leave_sub();
1613 sub update_balance {
1614 $main::lxdebug->enter_sub();
1616 my ($self, $dbh, $table, $field, $where, $value, @values) = @_;
1618 # if we have a value, go do it
1621 # retrieve balance from table
1622 my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
1623 my $sth = prepare_execute_query($self, $dbh, $query, @values);
1624 my ($balance) = $sth->fetchrow_array;
1630 $query = "UPDATE $table SET $field = $balance WHERE $where";
1631 do_query($self, $dbh, $query, @values);
1633 $main::lxdebug->leave_sub();
1636 sub update_exchangerate {
1637 $main::lxdebug->enter_sub();
1639 my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
1641 # some sanity check for currency
1643 $main::lxdebug->leave_sub();
1646 $query = qq|SELECT curr FROM defaults|;
1648 my ($currency) = selectrow_query($self, $dbh, $query);
1649 my ($defaultcurrency) = split m/:/, $currency;
1652 if ($curr eq $defaultcurrency) {
1653 $main::lxdebug->leave_sub();
1657 $query = qq|SELECT e.curr FROM exchangerate e
1658 WHERE e.curr = ? AND e.transdate = ?
1660 my $sth = prepare_execute_query($self, $dbh, $query, $curr, $transdate);
1669 $buy = conv_i($buy, "NULL");
1670 $sell = conv_i($sell, "NULL");
1673 if ($buy != 0 && $sell != 0) {
1674 $set = "buy = $buy, sell = $sell";
1675 } elsif ($buy != 0) {
1676 $set = "buy = $buy";
1677 } elsif ($sell != 0) {
1678 $set = "sell = $sell";
1681 if ($sth->fetchrow_array) {
1682 $query = qq|UPDATE exchangerate
1688 $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
1689 VALUES (?, $buy, $sell, ?)|;
1692 do_query($self, $dbh, $query, $curr, $transdate);
1694 $main::lxdebug->leave_sub();
1697 sub save_exchangerate {
1698 $main::lxdebug->enter_sub();
1700 my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
1702 my $dbh = $self->dbconnect($myconfig);
1706 $buy = $rate if $fld eq 'buy';
1707 $sell = $rate if $fld eq 'sell';
1710 $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
1715 $main::lxdebug->leave_sub();
1718 sub get_exchangerate {
1719 $main::lxdebug->enter_sub();
1721 my ($self, $dbh, $curr, $transdate, $fld) = @_;
1724 unless ($transdate) {
1725 $main::lxdebug->leave_sub();
1729 $query = qq|SELECT curr FROM defaults|;
1731 my ($currency) = selectrow_query($self, $dbh, $query);
1732 my ($defaultcurrency) = split m/:/, $currency;
1734 if ($currency eq $defaultcurrency) {
1735 $main::lxdebug->leave_sub();
1739 $query = qq|SELECT e.$fld FROM exchangerate e
1740 WHERE e.curr = ? AND e.transdate = ?|;
1741 my ($exchangerate) = selectrow_query($self, $dbh, $query, $curr, $transdate);
1745 $main::lxdebug->leave_sub();
1747 return $exchangerate;
1750 sub check_exchangerate {
1751 $main::lxdebug->enter_sub();
1753 my ($self, $myconfig, $currency, $transdate, $fld) = @_;
1755 if ($fld !~/^buy|sell$/) {
1756 $self->error('Fatal: check_exchangerate called with invalid buy/sell argument');
1759 unless ($transdate) {
1760 $main::lxdebug->leave_sub();
1764 my ($defaultcurrency) = $self->get_default_currency($myconfig);
1766 if ($currency eq $defaultcurrency) {
1767 $main::lxdebug->leave_sub();
1771 my $dbh = $self->get_standard_dbh($myconfig);
1772 my $query = qq|SELECT e.$fld FROM exchangerate e
1773 WHERE e.curr = ? AND e.transdate = ?|;
1775 my ($exchangerate) = selectrow_query($self, $dbh, $query, $currency, $transdate);
1777 $main::lxdebug->leave_sub();
1779 return $exchangerate;
1782 sub get_default_currency {
1783 $main::lxdebug->enter_sub();
1785 my ($self, $myconfig) = @_;
1786 my $dbh = $self->get_standard_dbh($myconfig);
1788 my $query = qq|SELECT curr FROM defaults|;
1790 my ($curr) = selectrow_query($self, $dbh, $query);
1791 my ($defaultcurrency) = split m/:/, $curr;
1793 $main::lxdebug->leave_sub();
1795 return $defaultcurrency;
1799 sub set_payment_options {
1800 $main::lxdebug->enter_sub();
1802 my ($self, $myconfig, $transdate) = @_;
1804 return $main::lxdebug->leave_sub() unless ($self->{payment_id});
1806 my $dbh = $self->get_standard_dbh($myconfig);
1809 qq|SELECT p.terms_netto, p.terms_skonto, p.percent_skonto, p.description_long | .
1810 qq|FROM payment_terms p | .
1813 ($self->{terms_netto}, $self->{terms_skonto}, $self->{percent_skonto},
1814 $self->{payment_terms}) =
1815 selectrow_query($self, $dbh, $query, $self->{payment_id});
1817 if ($transdate eq "") {
1818 if ($self->{invdate}) {
1819 $transdate = $self->{invdate};
1821 $transdate = $self->{transdate};
1826 qq|SELECT ?::date + ?::integer AS netto_date, ?::date + ?::integer AS skonto_date | .
1827 qq|FROM payment_terms|;
1828 ($self->{netto_date}, $self->{skonto_date}) =
1829 selectrow_query($self, $dbh, $query, $transdate, $self->{terms_netto}, $transdate, $self->{terms_skonto});
1831 my ($invtotal, $total);
1832 my (%amounts, %formatted_amounts);
1834 if ($self->{type} =~ /_order$/) {
1835 $amounts{invtotal} = $self->{ordtotal};
1836 $amounts{total} = $self->{ordtotal};
1838 } elsif ($self->{type} =~ /_quotation$/) {
1839 $amounts{invtotal} = $self->{quototal};
1840 $amounts{total} = $self->{quototal};
1843 $amounts{invtotal} = $self->{invtotal};
1844 $amounts{total} = $self->{total};
1847 map { $amounts{$_} = $self->parse_amount($myconfig, $amounts{$_}) } keys %amounts;
1849 $amounts{skonto_amount} = $amounts{invtotal} * $self->{percent_skonto};
1850 $amounts{invtotal_wo_skonto} = $amounts{invtotal} * (1 - $self->{percent_skonto});
1851 $amounts{total_wo_skonto} = $amounts{total} * (1 - $self->{percent_skonto});
1853 foreach (keys %amounts) {
1854 $amounts{$_} = $self->round_amount($amounts{$_}, 2);
1855 $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}, 2);
1858 if ($self->{"language_id"}) {
1860 qq|SELECT t.description_long, l.output_numberformat, l.output_dateformat, l.output_longdates | .
1861 qq|FROM translation_payment_terms t | .
1862 qq|LEFT JOIN language l ON t.language_id = l.id | .
1863 qq|WHERE (t.language_id = ?) AND (t.payment_terms_id = ?)|;
1864 my ($description_long, $output_numberformat, $output_dateformat,
1865 $output_longdates) =
1866 selectrow_query($self, $dbh, $query,
1867 $self->{"language_id"}, $self->{"payment_id"});
1869 $self->{payment_terms} = $description_long if ($description_long);
1871 if ($output_dateformat) {
1872 foreach my $key (qw(netto_date skonto_date)) {
1874 $main::locale->reformat_date($myconfig, $self->{$key},
1880 if ($output_numberformat &&
1881 ($output_numberformat ne $myconfig->{"numberformat"})) {
1882 my $saved_numberformat = $myconfig->{"numberformat"};
1883 $myconfig->{"numberformat"} = $output_numberformat;
1884 map { $formatted_amounts{$_} = $self->format_amount($myconfig, $amounts{$_}) } keys %amounts;
1885 $myconfig->{"numberformat"} = $saved_numberformat;
1889 $self->{payment_terms} =~ s/<%netto_date%>/$self->{netto_date}/g;
1890 $self->{payment_terms} =~ s/<%skonto_date%>/$self->{skonto_date}/g;
1891 $self->{payment_terms} =~ s/<%currency%>/$self->{currency}/g;
1892 $self->{payment_terms} =~ s/<%terms_netto%>/$self->{terms_netto}/g;
1893 $self->{payment_terms} =~ s/<%account_number%>/$self->{account_number}/g;
1894 $self->{payment_terms} =~ s/<%bank%>/$self->{bank}/g;
1895 $self->{payment_terms} =~ s/<%bank_code%>/$self->{bank_code}/g;
1897 map { $self->{payment_terms} =~ s/<%${_}%>/$formatted_amounts{$_}/g; } keys %formatted_amounts;
1899 $main::lxdebug->leave_sub();
1903 sub get_template_language {
1904 $main::lxdebug->enter_sub();
1906 my ($self, $myconfig) = @_;
1908 my $template_code = "";
1910 if ($self->{language_id}) {
1911 my $dbh = $self->get_standard_dbh($myconfig);
1912 my $query = qq|SELECT template_code FROM language WHERE id = ?|;
1913 ($template_code) = selectrow_query($self, $dbh, $query, $self->{language_id});
1916 $main::lxdebug->leave_sub();
1918 return $template_code;
1921 sub get_printer_code {
1922 $main::lxdebug->enter_sub();
1924 my ($self, $myconfig) = @_;
1926 my $template_code = "";
1928 if ($self->{printer_id}) {
1929 my $dbh = $self->get_standard_dbh($myconfig);
1930 my $query = qq|SELECT template_code, printer_command FROM printers WHERE id = ?|;
1931 ($template_code, $self->{printer_command}) = selectrow_query($self, $dbh, $query, $self->{printer_id});
1934 $main::lxdebug->leave_sub();
1936 return $template_code;
1940 $main::lxdebug->enter_sub();
1942 my ($self, $myconfig) = @_;
1944 my $template_code = "";
1946 if ($self->{shipto_id}) {
1947 my $dbh = $self->get_standard_dbh($myconfig);
1948 my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
1949 my $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{shipto_id});
1950 map({ $self->{$_} = $ref->{$_} } keys(%$ref));
1953 $main::lxdebug->leave_sub();
1957 $main::lxdebug->enter_sub();
1959 my ($self, $dbh, $id, $module) = @_;
1964 foreach my $item (qw(name department_1 department_2 street zipcode city country
1965 contact phone fax email)) {
1966 if ($self->{"shipto$item"}) {
1967 $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
1969 push(@values, $self->{"shipto${item}"});
1973 if ($self->{shipto_id}) {
1974 my $query = qq|UPDATE shipto set
1976 shiptodepartment_1 = ?,
1977 shiptodepartment_2 = ?,
1986 WHERE shipto_id = ?|;
1987 do_query($self, $dbh, $query, @values, $self->{shipto_id});
1989 my $query = qq|SELECT * FROM shipto
1990 WHERE shiptoname = ? AND
1991 shiptodepartment_1 = ? AND
1992 shiptodepartment_2 = ? AND
1993 shiptostreet = ? AND
1994 shiptozipcode = ? AND
1996 shiptocountry = ? AND
1997 shiptocontact = ? AND
2003 my $insert_check = selectfirst_hashref_query($self, $dbh, $query, @values, $module, $id);
2006 qq|INSERT INTO shipto (trans_id, shiptoname, shiptodepartment_1, shiptodepartment_2,
2007 shiptostreet, shiptozipcode, shiptocity, shiptocountry,
2008 shiptocontact, shiptophone, shiptofax, shiptoemail, module)
2009 VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)|;
2010 do_query($self, $dbh, $query, $id, @values, $module);
2015 $main::lxdebug->leave_sub();
2019 $main::lxdebug->enter_sub();
2021 my ($self, $dbh) = @_;
2023 my $query = qq|SELECT id, name FROM employee WHERE login = ?|;
2024 ($self->{"employee_id"}, $self->{"employee"}) = selectrow_query($self, $dbh, $query, $self->{login});
2025 $self->{"employee_id"} *= 1;
2027 $main::lxdebug->leave_sub();
2030 sub get_employee_data {
2031 $main::lxdebug->enter_sub();
2036 Common::check_params(\%params, qw(prefix));
2037 Common::check_params_x(\%params, qw(id));
2040 $main::lxdebug->leave_sub();
2044 my $myconfig = \%main::myconfig;
2045 my $dbh = $params{dbh} || $self->get_standard_dbh($myconfig);
2047 my ($login) = selectrow_query($self, $dbh, qq|SELECT login FROM employee WHERE id = ?|, conv_i($params{id}));
2050 my $user = User->new($login);
2051 map { $self->{$params{prefix} . "_${_}"} = $user->{$_}; } qw(address businessnumber co_ustid company duns email fax name signature taxnumber tel);
2053 $self->{$params{prefix} . '_login'} = $login;
2054 $self->{$params{prefix} . '_name'} ||= $login;
2057 $main::lxdebug->leave_sub();
2061 $main::lxdebug->enter_sub();
2063 my ($self, $myconfig, $reference_date) = @_;
2065 my $reference_date = $reference_date ? conv_dateq($reference_date) . '::DATE' : 'current_date';
2067 my $dbh = $self->get_standard_dbh($myconfig);
2068 my $query = qq|SELECT ${reference_date} + terms_netto FROM payment_terms WHERE id = ?|;
2069 my ($duedate) = selectrow_query($self, $dbh, $query, $self->{payment_id});
2071 $main::lxdebug->leave_sub();
2077 $main::lxdebug->enter_sub();
2079 my ($self, $dbh, $id, $key) = @_;
2081 $key = "all_contacts" unless ($key);
2085 $main::lxdebug->leave_sub();
2090 qq|SELECT cp_id, cp_cv_id, cp_name, cp_givenname, cp_abteilung | .
2091 qq|FROM contacts | .
2092 qq|WHERE cp_cv_id = ? | .
2093 qq|ORDER BY lower(cp_name)|;
2095 $self->{$key} = selectall_hashref_query($self, $dbh, $query, $id);
2097 $main::lxdebug->leave_sub();
2101 $main::lxdebug->enter_sub();
2103 my ($self, $dbh, $key) = @_;
2105 my ($all, $old_id, $where, @values);
2107 if (ref($key) eq "HASH") {
2110 $key = "ALL_PROJECTS";
2112 foreach my $p (keys(%{$params})) {
2114 $all = $params->{$p};
2115 } elsif ($p eq "old_id") {
2116 $old_id = $params->{$p};
2117 } elsif ($p eq "key") {
2118 $key = $params->{$p};
2124 $where = "WHERE active ";
2126 if (ref($old_id) eq "ARRAY") {
2127 my @ids = grep({ $_ } @{$old_id});
2129 $where .= " OR id IN (" . join(",", map({ "?" } @ids)) . ") ";
2130 push(@values, @ids);
2133 $where .= " OR (id = ?) ";
2134 push(@values, $old_id);
2140 qq|SELECT id, projectnumber, description, active | .
2143 qq|ORDER BY lower(projectnumber)|;
2145 $self->{$key} = selectall_hashref_query($self, $dbh, $query, @values);
2147 $main::lxdebug->leave_sub();
2151 $main::lxdebug->enter_sub();
2153 my ($self, $dbh, $vc_id, $key) = @_;
2155 $key = "all_shipto" unless ($key);
2158 # get shipping addresses
2159 my $query = qq|SELECT * FROM shipto WHERE trans_id = ?|;
2161 $self->{$key} = selectall_hashref_query($self, $dbh, $query, $vc_id);
2167 $main::lxdebug->leave_sub();
2171 $main::lxdebug->enter_sub();
2173 my ($self, $dbh, $key) = @_;
2175 $key = "all_printers" unless ($key);
2177 my $query = qq|SELECT id, printer_description, printer_command, template_code FROM printers|;
2179 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2181 $main::lxdebug->leave_sub();
2185 $main::lxdebug->enter_sub();
2187 my ($self, $dbh, $params) = @_;
2190 $key = $params->{key};
2191 $key = "all_charts" unless ($key);
2193 my $transdate = quote_db_date($params->{transdate});
2196 qq|SELECT c.id, c.accno, c.description, c.link, tk.taxkey_id, tk.tax_id | .
2198 qq|LEFT JOIN taxkeys tk ON | .
2199 qq|(tk.id = (SELECT id FROM taxkeys | .
2200 qq| WHERE taxkeys.chart_id = c.id AND startdate <= $transdate | .
2201 qq| ORDER BY startdate DESC LIMIT 1)) | .
2202 qq|ORDER BY c.accno|;
2204 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2206 $main::lxdebug->leave_sub();
2209 sub _get_taxcharts {
2210 $main::lxdebug->enter_sub();
2212 my ($self, $dbh, $params) = @_;
2214 my $key = "all_taxcharts";
2217 if (ref $params eq 'HASH') {
2218 $key = $params->{key} if ($params->{key});
2219 if ($params->{module} eq 'AR') {
2220 push @where, 'taxkey NOT IN (8, 9, 18, 19)';
2222 } elsif ($params->{module} eq 'AP') {
2223 push @where, 'taxkey NOT IN (1, 2, 3, 12, 13)';
2230 my $where = ' WHERE ' . join(' AND ', map { "($_)" } @where) if (@where);
2232 my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|;
2234 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2236 $main::lxdebug->leave_sub();
2240 $main::lxdebug->enter_sub();
2242 my ($self, $dbh, $key) = @_;
2244 $key = "all_taxzones" unless ($key);
2246 my $query = qq|SELECT * FROM tax_zones ORDER BY id|;
2248 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2250 $main::lxdebug->leave_sub();
2253 sub _get_employees {
2254 $main::lxdebug->enter_sub();
2256 my ($self, $dbh, $default_key, $key) = @_;
2258 $key = $default_key unless ($key);
2259 $self->{$key} = selectall_hashref_query($self, $dbh, qq|SELECT * FROM employee ORDER BY lower(name)|);
2261 $main::lxdebug->leave_sub();
2264 sub _get_business_types {
2265 $main::lxdebug->enter_sub();
2267 my ($self, $dbh, $key) = @_;
2269 $key = "all_business_types" unless ($key);
2271 selectall_hashref_query($self, $dbh, qq|SELECT * FROM business|);
2273 $main::lxdebug->leave_sub();
2276 sub _get_languages {
2277 $main::lxdebug->enter_sub();
2279 my ($self, $dbh, $key) = @_;
2281 $key = "all_languages" unless ($key);
2283 my $query = qq|SELECT * FROM language ORDER BY id|;
2285 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2287 $main::lxdebug->leave_sub();
2290 sub _get_dunning_configs {
2291 $main::lxdebug->enter_sub();
2293 my ($self, $dbh, $key) = @_;
2295 $key = "all_dunning_configs" unless ($key);
2297 my $query = qq|SELECT * FROM dunning_config ORDER BY dunning_level|;
2299 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2301 $main::lxdebug->leave_sub();
2304 sub _get_currencies {
2305 $main::lxdebug->enter_sub();
2307 my ($self, $dbh, $key) = @_;
2309 $key = "all_currencies" unless ($key);
2311 my $query = qq|SELECT curr AS currency FROM defaults|;
2313 $self->{$key} = [split(/\:/ , selectfirst_hashref_query($self, $dbh, $query)->{currency})];
2315 $main::lxdebug->leave_sub();
2319 $main::lxdebug->enter_sub();
2321 my ($self, $dbh, $key) = @_;
2323 $key = "all_payments" unless ($key);
2325 my $query = qq|SELECT * FROM payment_terms ORDER BY id|;
2327 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2329 $main::lxdebug->leave_sub();
2332 sub _get_customers {
2333 $main::lxdebug->enter_sub();
2335 my ($self, $dbh, $key, $limit) = @_;
2337 $key = "all_customers" unless ($key);
2338 my $limit_clause = "LIMIT $limit" if $limit;
2340 my $query = qq|SELECT * FROM customer WHERE NOT obsolete ORDER BY name $limit_clause|;
2342 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2344 $main::lxdebug->leave_sub();
2348 $main::lxdebug->enter_sub();
2350 my ($self, $dbh, $key) = @_;
2352 $key = "all_vendors" unless ($key);
2354 my $query = qq|SELECT * FROM vendor WHERE NOT obsolete ORDER BY name|;
2356 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2358 $main::lxdebug->leave_sub();
2361 sub _get_departments {
2362 $main::lxdebug->enter_sub();
2364 my ($self, $dbh, $key) = @_;
2366 $key = "all_departments" unless ($key);
2368 my $query = qq|SELECT * FROM department ORDER BY description|;
2370 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2372 $main::lxdebug->leave_sub();
2375 sub _get_warehouses {
2376 $main::lxdebug->enter_sub();
2378 my ($self, $dbh, $param) = @_;
2380 my ($key, $bins_key);
2382 if ('' eq ref $param) {
2386 $key = $param->{key};
2387 $bins_key = $param->{bins};
2390 my $query = qq|SELECT w.* FROM warehouse w
2391 WHERE (NOT w.invalid) AND
2392 ((SELECT COUNT(b.*) FROM bin b WHERE b.warehouse_id = w.id) > 0)
2393 ORDER BY w.sortkey|;
2395 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2398 $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
2399 my $sth = prepare_query($self, $dbh, $query);
2401 foreach my $warehouse (@{ $self->{$key} }) {
2402 do_statement($self, $sth, $query, $warehouse->{id});
2403 $warehouse->{$bins_key} = [];
2405 while (my $ref = $sth->fetchrow_hashref()) {
2406 push @{ $warehouse->{$bins_key} }, $ref;
2412 $main::lxdebug->leave_sub();
2416 $main::lxdebug->enter_sub();
2418 my ($self, $dbh, $table, $key, $sortkey) = @_;
2420 my $query = qq|SELECT * FROM $table|;
2421 $query .= qq| ORDER BY $sortkey| if ($sortkey);
2423 $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2425 $main::lxdebug->leave_sub();
2429 # $main::lxdebug->enter_sub();
2431 # my ($self, $dbh, $key) = @_;
2433 # $key ||= "all_groups";
2435 # my $groups = $main::auth->read_groups();
2437 # $self->{$key} = selectall_hashref_query($self, $dbh, $query);
2439 # $main::lxdebug->leave_sub();
2443 $main::lxdebug->enter_sub();
2448 my $dbh = $self->get_standard_dbh(\%main::myconfig);
2449 my ($sth, $query, $ref);
2451 my $vc = $self->{"vc"} eq "customer" ? "customer" : "vendor";
2452 my $vc_id = $self->{"${vc}_id"};
2454 if ($params{"contacts"}) {
2455 $self->_get_contacts($dbh, $vc_id, $params{"contacts"});
2458 if ($params{"shipto"}) {
2459 $self->_get_shipto($dbh, $vc_id, $params{"shipto"});
2462 if ($params{"projects"} || $params{"all_projects"}) {
2463 $self->_get_projects($dbh, $params{"all_projects"} ?
2464 $params{"all_projects"} : $params{"projects"},
2465 $params{"all_projects"} ? 1 : 0);
2468 if ($params{"printers"}) {
2469 $self->_get_printers($dbh, $params{"printers"});
2472 if ($params{"languages"}) {
2473 $self->_get_languages($dbh, $params{"languages"});
2476 if ($params{"charts"}) {
2477 $self->_get_charts($dbh, $params{"charts"});
2480 if ($params{"taxcharts"}) {
2481 $self->_get_taxcharts($dbh, $params{"taxcharts"});
2484 if ($params{"taxzones"}) {
2485 $self->_get_taxzones($dbh, $params{"taxzones"});
2488 if ($params{"employees"}) {
2489 $self->_get_employees($dbh, "all_employees", $params{"employees"});
2492 if ($params{"salesmen"}) {
2493 $self->_get_employees($dbh, "all_salesmen", $params{"salesmen"});
2496 if ($params{"business_types"}) {
2497 $self->_get_business_types($dbh, $params{"business_types"});
2500 if ($params{"dunning_configs"}) {
2501 $self->_get_dunning_configs($dbh, $params{"dunning_configs"});
2504 if($params{"currencies"}) {
2505 $self->_get_currencies($dbh, $params{"currencies"});
2508 if($params{"customers"}) {
2509 if (ref $params{"customers"} eq 'HASH') {
2510 $self->_get_customers($dbh, $params{"customers"}{key}, $params{"customers"}{limit});
2512 $self->_get_customers($dbh, $params{"customers"});
2516 if($params{"vendors"}) {
2517 if (ref $params{"vendors"} eq 'HASH') {
2518 $self->_get_vendors($dbh, $params{"vendors"}{key}, $params{"vendors"}{limit});
2520 $self->_get_vendors($dbh, $params{"vendors"});
2524 if($params{"payments"}) {
2525 $self->_get_payments($dbh, $params{"payments"});
2528 if($params{"departments"}) {
2529 $self->_get_departments($dbh, $params{"departments"});
2532 if ($params{price_factors}) {
2533 $self->_get_simple($dbh, 'price_factors', $params{price_factors}, 'sortkey');
2536 if ($params{warehouses}) {
2537 $self->_get_warehouses($dbh, $params{warehouses});
2540 # if ($params{groups}) {
2541 # $self->_get_groups($dbh, $params{groups});
2544 if ($params{partsgroup}) {
2545 $self->get_partsgroup(\%main::myconfig, { all => 1, target => $params{partsgroup} });
2548 $main::lxdebug->leave_sub();
2551 # this sub gets the id and name from $table
2553 $main::lxdebug->enter_sub();
2555 my ($self, $myconfig, $table) = @_;
2557 # connect to database
2558 my $dbh = $self->get_standard_dbh($myconfig);
2560 $table = $table eq "customer" ? "customer" : "vendor";
2561 my $arap = $self->{arap} eq "ar" ? "ar" : "ap";
2563 my ($query, @values);
2565 if (!$self->{openinvoices}) {
2567 if ($self->{customernumber} ne "") {
2568 $where = qq|(vc.customernumber ILIKE ?)|;
2569 push(@values, '%' . $self->{customernumber} . '%');
2571 $where = qq|(vc.name ILIKE ?)|;
2572 push(@values, '%' . $self->{$table} . '%');
2576 qq~SELECT vc.id, vc.name,
2577 vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2579 WHERE $where AND (NOT vc.obsolete)
2583 qq~SELECT DISTINCT vc.id, vc.name,
2584 vc.street || ' ' || vc.zipcode || ' ' || vc.city || ' ' || vc.country AS address
2586 JOIN $table vc ON (a.${table}_id = vc.id)
2587 WHERE NOT (a.amount = a.paid) AND (vc.name ILIKE ?)
2589 push(@values, '%' . $self->{$table} . '%');
2592 $self->{name_list} = selectall_hashref_query($self, $dbh, $query, @values);
2594 $main::lxdebug->leave_sub();
2596 return scalar(@{ $self->{name_list} });
2599 # the selection sub is used in the AR, AP, IS, IR and OE module
2602 $main::lxdebug->enter_sub();
2604 my ($self, $myconfig, $table, $module) = @_;
2607 my $dbh = $self->get_standard_dbh($myconfig);
2609 $table = $table eq "customer" ? "customer" : "vendor";
2611 my $query = qq|SELECT count(*) FROM $table|;
2612 my ($count) = selectrow_query($self, $dbh, $query);
2614 # build selection list
2615 if ($count < $myconfig->{vclimit}) {
2616 $query = qq|SELECT id, name, salesman_id
2617 FROM $table WHERE NOT obsolete
2619 $self->{"all_$table"} = selectall_hashref_query($self, $dbh, $query);
2623 $self->get_employee($dbh);
2625 # setup sales contacts
2626 $query = qq|SELECT e.id, e.name
2628 WHERE (e.sales = '1') AND (NOT e.id = ?)|;
2629 $self->{all_employees} = selectall_hashref_query($self, $dbh, $query, $self->{employee_id});
2632 push(@{ $self->{all_employees} },
2633 { id => $self->{employee_id},
2634 name => $self->{employee} });
2636 # sort the whole thing
2637 @{ $self->{all_employees} } =
2638 sort { $a->{name} cmp $b->{name} } @{ $self->{all_employees} };
2640 if ($module eq 'AR') {
2642 # prepare query for departments
2643 $query = qq|SELECT id, description
2646 ORDER BY description|;
2649 $query = qq|SELECT id, description
2651 ORDER BY description|;
2654 $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2657 $query = qq|SELECT id, description
2661 $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2664 $query = qq|SELECT printer_description, id
2666 ORDER BY printer_description|;
2668 $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2671 $query = qq|SELECT id, description
2675 $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2677 $main::lxdebug->leave_sub();
2680 sub language_payment {
2681 $main::lxdebug->enter_sub();
2683 my ($self, $myconfig) = @_;
2685 my $dbh = $self->get_standard_dbh($myconfig);
2687 my $query = qq|SELECT id, description
2691 $self->{languages} = selectall_hashref_query($self, $dbh, $query);
2694 $query = qq|SELECT printer_description, id
2696 ORDER BY printer_description|;
2698 $self->{printers} = selectall_hashref_query($self, $dbh, $query);
2701 $query = qq|SELECT id, description
2705 $self->{payment_terms} = selectall_hashref_query($self, $dbh, $query);
2707 # get buchungsgruppen
2708 $query = qq|SELECT id, description
2709 FROM buchungsgruppen|;
2711 $self->{BUCHUNGSGRUPPEN} = selectall_hashref_query($self, $dbh, $query);
2713 $main::lxdebug->leave_sub();
2716 # this is only used for reports
2717 sub all_departments {
2718 $main::lxdebug->enter_sub();
2720 my ($self, $myconfig, $table) = @_;
2722 my $dbh = $self->get_standard_dbh($myconfig);
2725 if ($table eq 'customer') {
2726 $where = "WHERE role = 'P' ";
2729 my $query = qq|SELECT id, description
2732 ORDER BY description|;
2733 $self->{all_departments} = selectall_hashref_query($self, $dbh, $query);
2735 delete($self->{all_departments}) unless (@{ $self->{all_departments} });
2737 $main::lxdebug->leave_sub();
2741 $main::lxdebug->enter_sub();
2743 my ($self, $module, $myconfig, $table, $provided_dbh) = @_;
2746 if ($table eq "customer") {
2755 $self->all_vc($myconfig, $table, $module);
2757 # get last customers or vendors
2758 my ($query, $sth, $ref);
2760 my $dbh = $provided_dbh ? $provided_dbh : $self->get_standard_dbh($myconfig);
2765 my $transdate = "current_date";
2766 if ($self->{transdate}) {
2767 $transdate = $dbh->quote($self->{transdate});
2770 # now get the account numbers
2771 $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2772 FROM chart c, taxkeys tk
2773 WHERE (c.link LIKE ?) AND (c.id = tk.chart_id) AND tk.id =
2774 (SELECT id FROM taxkeys WHERE (taxkeys.chart_id = c.id) AND (startdate <= $transdate) ORDER BY startdate DESC LIMIT 1)
2777 $sth = $dbh->prepare($query);
2779 do_statement($self, $sth, $query, '%' . $module . '%');
2781 $self->{accounts} = "";
2782 while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2784 foreach my $key (split(/:/, $ref->{link})) {
2785 if ($key =~ /\Q$module\E/) {
2787 # cross reference for keys
2788 $xkeyref{ $ref->{accno} } = $key;
2790 push @{ $self->{"${module}_links"}{$key} },
2791 { accno => $ref->{accno},
2792 description => $ref->{description},
2793 taxkey => $ref->{taxkey_id},
2794 tax_id => $ref->{tax_id} };
2796 $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2802 # get taxkeys and description
2803 $query = qq|SELECT id, taxkey, taxdescription FROM tax|;
2804 $self->{TAXKEY} = selectall_hashref_query($self, $dbh, $query);
2806 if (($module eq "AP") || ($module eq "AR")) {
2807 # get tax rates and description
2808 $query = qq|SELECT * FROM tax|;
2809 $self->{TAX} = selectall_hashref_query($self, $dbh, $query);
2815 a.cp_id, a.invnumber, a.transdate, a.${table}_id, a.datepaid,
2816 a.duedate, a.ordnumber, a.taxincluded, a.curr AS currency, a.notes,
2817 a.intnotes, a.department_id, a.amount AS oldinvtotal,
2818 a.paid AS oldtotalpaid, a.employee_id, a.gldate, a.type,
2820 d.description AS department,
2823 JOIN $table c ON (a.${table}_id = c.id)
2824 LEFT JOIN employee e ON (e.id = a.employee_id)
2825 LEFT JOIN department d ON (d.id = a.department_id)
2827 $ref = selectfirst_hashref_query($self, $dbh, $query, $self->{id});
2829 foreach my $key (keys %$ref) {
2830 $self->{$key} = $ref->{$key};
2833 my $transdate = "current_date";
2834 if ($self->{transdate}) {
2835 $transdate = $dbh->quote($self->{transdate});
2838 # now get the account numbers
2839 $query = qq|SELECT c.accno, c.description, c.link, c.taxkey_id, tk.tax_id
2841 LEFT JOIN taxkeys tk ON (tk.chart_id = c.id)
2843 AND (tk.id = (SELECT id FROM taxkeys WHERE taxkeys.chart_id = c.id AND startdate <= $transdate ORDER BY startdate DESC LIMIT 1)
2844 OR c.link LIKE '%_tax%' OR c.taxkey_id IS NULL)
2847 $sth = $dbh->prepare($query);
2848 do_statement($self, $sth, $query, "%$module%");
2850 $self->{accounts} = "";
2851 while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
2853 foreach my $key (split(/:/, $ref->{link})) {
2854 if ($key =~ /\Q$module\E/) {
2856 # cross reference for keys
2857 $xkeyref{ $ref->{accno} } = $key;
2859 push @{ $self->{"${module}_links"}{$key} },
2860 { accno => $ref->{accno},
2861 description => $ref->{description},
2862 taxkey => $ref->{taxkey_id},
2863 tax_id => $ref->{tax_id} };
2865 $self->{accounts} .= "$ref->{accno} " unless $key =~ /tax/;
2871 # get amounts from individual entries
2874 c.accno, c.description,
2875 a.source, a.amount, a.memo, a.transdate, a.cleared, a.project_id, a.taxkey,
2879 LEFT JOIN chart c ON (c.id = a.chart_id)
2880 LEFT JOIN project p ON (p.id = a.project_id)
2881 LEFT JOIN tax t ON (t.id= (SELECT tk.tax_id FROM taxkeys tk
2882 WHERE (tk.taxkey_id=a.taxkey) AND
2883 ((CASE WHEN a.chart_id IN (SELECT chart_id FROM taxkeys WHERE taxkey_id = a.taxkey)
2884 THEN tk.chart_id = a.chart_id
2887 OR (c.link='%tax%')) AND
2888 (startdate <= a.transdate) ORDER BY startdate DESC LIMIT 1))
2889 WHERE a.trans_id = ?
2890 AND a.fx_transaction = '0'
2891 ORDER BY a.acc_trans_id, a.transdate|;
2892 $sth = $dbh->prepare($query);
2893 do_statement($self, $sth, $query, $self->{id});
2895 # get exchangerate for currency
2896 $self->{exchangerate} =
2897 $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2900 # store amounts in {acc_trans}{$key} for multiple accounts
2901 while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
2902 $ref->{exchangerate} =
2903 $self->get_exchangerate($dbh, $self->{currency}, $ref->{transdate}, $fld);
2904 if (!($xkeyref{ $ref->{accno} } =~ /tax/)) {
2907 if (($xkeyref{ $ref->{accno} } =~ /paid/) && ($self->{type} eq "credit_note")) {
2908 $ref->{amount} *= -1;
2910 $ref->{index} = $index;
2912 push @{ $self->{acc_trans}{ $xkeyref{ $ref->{accno} } } }, $ref;
2918 d.curr AS currencies, d.closedto, d.revtrans,
2919 (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2920 (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2922 $ref = selectfirst_hashref_query($self, $dbh, $query);
2923 map { $self->{$_} = $ref->{$_} } keys %$ref;
2930 current_date AS transdate, d.curr AS currencies, d.closedto, d.revtrans,
2931 (SELECT c.accno FROM chart c WHERE d.fxgain_accno_id = c.id) AS fxgain_accno,
2932 (SELECT c.accno FROM chart c WHERE d.fxloss_accno_id = c.id) AS fxloss_accno
2934 $ref = selectfirst_hashref_query($self, $dbh, $query);
2935 map { $self->{$_} = $ref->{$_} } keys %$ref;
2937 if ($self->{"$self->{vc}_id"}) {
2939 # only setup currency
2940 ($self->{currency}) = split(/:/, $self->{currencies});
2944 $self->lastname_used($dbh, $myconfig, $table, $module);
2946 # get exchangerate for currency
2947 $self->{exchangerate} =
2948 $self->get_exchangerate($dbh, $self->{currency}, $self->{transdate}, $fld);
2954 $main::lxdebug->leave_sub();
2958 $main::lxdebug->enter_sub();
2960 my ($self, $dbh, $myconfig, $table, $module) = @_;
2964 $table = $table eq "customer" ? "customer" : "vendor";
2965 my %column_map = ("a.curr" => "currency",
2966 "a.${table}_id" => "${table}_id",
2967 "a.department_id" => "department_id",
2968 "d.description" => "department",
2969 "ct.name" => $table,
2970 "current_date + ct.terms" => "duedate",
2973 if ($self->{type} =~ /delivery_order/) {
2974 $arap = 'delivery_orders';
2975 delete $column_map{"a.curr"};
2977 } elsif ($self->{type} =~ /_order/) {
2979 $where = "quotation = '0'";
2981 } elsif ($self->{type} =~ /_quotation/) {
2983 $where = "quotation = '1'";
2985 } elsif ($table eq 'customer') {
2993 $where = "($where) AND" if ($where);
2994 my $query = qq|SELECT MAX(id) FROM $arap
2995 WHERE $where ${table}_id > 0|;
2996 my ($trans_id) = selectrow_query($self, $dbh, $query);
2999 my $column_spec = join(', ', map { "${_} AS $column_map{$_}" } keys %column_map);
3000 $query = qq|SELECT $column_spec
3002 LEFT JOIN $table ct ON (a.${table}_id = ct.id)
3003 LEFT JOIN department d ON (a.department_id = d.id)
3005 my $ref = selectfirst_hashref_query($self, $dbh, $query, $trans_id);
3007 map { $self->{$_} = $ref->{$_} } values %column_map;
3009 $main::lxdebug->leave_sub();
3013 $main::lxdebug->enter_sub();
3015 my ($self, $myconfig, $thisdate, $days) = @_;
3017 my $dbh = $self->get_standard_dbh($myconfig);
3022 my $dateformat = $myconfig->{dateformat};
3023 $dateformat .= "yy" if $myconfig->{dateformat} !~ /^y/;
3024 $thisdate = $dbh->quote($thisdate);
3025 $query = qq|SELECT to_date($thisdate, '$dateformat') + $days AS thisdate|;
3027 $query = qq|SELECT current_date AS thisdate|;
3030 ($thisdate) = selectrow_query($self, $dbh, $query);
3032 $main::lxdebug->leave_sub();
3038 $main::lxdebug->enter_sub();
3040 my ($self, $string) = @_;
3042 if ($string !~ /%/) {
3043 $string = "%$string%";
3046 $string =~ s/\'/\'\'/g;
3048 $main::lxdebug->leave_sub();
3054 $main::lxdebug->enter_sub();
3056 my ($self, $flds, $new, $count, $numrows) = @_;
3060 map { push @ndx, { num => $new->[$_ - 1]->{runningnumber}, ndx => $_ } } 1 .. $count;
3065 foreach my $item (sort { $a->{num} <=> $b->{num} } @ndx) {
3067 my $j = $item->{ndx} - 1;
3068 map { $self->{"${_}_$i"} = $new->[$j]->{$_} } @{$flds};
3072 for $i ($count + 1 .. $numrows) {
3073 map { delete $self->{"${_}_$i"} } @{$flds};
3076 $main::lxdebug->leave_sub();
3080 $main::lxdebug->enter_sub();
3082 my ($self, $myconfig) = @_;
3086 my $dbh = $self->dbconnect_noauto($myconfig);
3088 my $query = qq|DELETE FROM status
3089 WHERE (formname = ?) AND (trans_id = ?)|;
3090 my $sth = prepare_query($self, $dbh, $query);
3092 if ($self->{formname} =~ /(check|receipt)/) {
3093 for $i (1 .. $self->{rowcount}) {
3094 do_statement($self, $sth, $query, $self->{formname}, $self->{"id_$i"} * 1);
3097 do_statement($self, $sth, $query, $self->{formname}, $self->{id});
3101 my $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3102 my $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3104 my %queued = split / /, $self->{queued};
3107 if ($self->{formname} =~ /(check|receipt)/) {
3109 # this is a check or receipt, add one entry for each lineitem
3110 my ($accno) = split /--/, $self->{account};
3111 $query = qq|INSERT INTO status (trans_id, printed, spoolfile, formname, chart_id)
3112 VALUES (?, ?, ?, ?, (SELECT c.id FROM chart c WHERE c.accno = ?))|;
3113 @values = ($printed, $queued{$self->{formname}}, $self->{prinform}, $accno);
3114 $sth = prepare_query($self, $dbh, $query);
3116 for $i (1 .. $self->{rowcount}) {
3117 if ($self->{"checked_$i"}) {
3118 do_statement($self, $sth, $query, $self->{"id_$i"}, @values);
3124 $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3125 VALUES (?, ?, ?, ?, ?)|;
3126 do_query($self, $dbh, $query, $self->{id}, $printed, $emailed,
3127 $queued{$self->{formname}}, $self->{formname});
3133 $main::lxdebug->leave_sub();
3137 $main::lxdebug->enter_sub();
3139 my ($self, $dbh) = @_;
3141 my ($query, $printed, $emailed);
3143 my $formnames = $self->{printed};
3144 my $emailforms = $self->{emailed};
3146 $query = qq|DELETE FROM status
3147 WHERE (formname = ?) AND (trans_id = ?)|;
3148 do_query($self, $dbh, $query, $self->{formname}, $self->{id});
3150 # this only applies to the forms
3151 # checks and receipts are posted when printed or queued
3153 if ($self->{queued}) {
3154 my %queued = split / /, $self->{queued};
3156 foreach my $formname (keys %queued) {
3157 $printed = ($self->{printed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3158 $emailed = ($self->{emailed} =~ /\Q$self->{formname}\E/) ? "1" : "0";
3160 $query = qq|INSERT INTO status (trans_id, printed, emailed, spoolfile, formname)
3161 VALUES (?, ?, ?, ?, ?)|;
3162 do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $queued{$formname}, $formname);
3164 $formnames =~ s/\Q$self->{formname}\E//;
3165 $emailforms =~ s/\Q$self->{formname}\E//;
3170 # save printed, emailed info
3171 $formnames =~ s/^ +//g;
3172 $emailforms =~ s/^ +//g;
3175 map { $status{$_}{printed} = 1 } split / +/, $formnames;
3176 map { $status{$_}{emailed} = 1 } split / +/, $emailforms;
3178 foreach my $formname (keys %status) {
3179 $printed = ($formnames =~ /\Q$self->{formname}\E/) ? "1" : "0";
3180 $emailed = ($emailforms =~ /\Q$self->{formname}\E/) ? "1" : "0";
3182 $query = qq|INSERT INTO status (trans_id, printed, emailed, formname)
3183 VALUES (?, ?, ?, ?)|;
3184 do_query($self, $dbh, $query, $self->{id}, $printed, $emailed, $formname);
3187 $main::lxdebug->leave_sub();
3191 # $main::locale->text('SAVED')
3192 # $main::locale->text('DELETED')
3193 # $main::locale->text('ADDED')
3194 # $main::locale->text('PAYMENT POSTED')
3195 # $main::locale->text('POSTED')
3196 # $main::locale->text('POSTED AS NEW')
3197 # $main::locale->text('ELSE')
3198 # $main::locale->text('SAVED FOR DUNNING')
3199 # $main::locale->text('DUNNING STARTED')
3200 # $main::locale->text('PRINTED')
3201 # $main::locale->text('MAILED')
3202 # $main::locale->text('SCREENED')
3203 # $main::locale->text('CANCELED')
3204 # $main::locale->text('invoice')
3205 # $main::locale->text('proforma')
3206 # $main::locale->text('sales_order')
3207 # $main::locale->text('packing_list')
3208 # $main::locale->text('pick_list')
3209 # $main::locale->text('purchase_order')
3210 # $main::locale->text('bin_list')
3211 # $main::locale->text('sales_quotation')
3212 # $main::locale->text('request_quotation')
3215 $main::lxdebug->enter_sub();
3220 if(!exists $self->{employee_id}) {
3221 &get_employee($self, $dbh);
3225 qq|INSERT INTO history_erp (trans_id, employee_id, addition, what_done, snumbers) | .
3226 qq|VALUES (?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?)|;
3227 my @values = (conv_i($self->{id}), $self->{login},
3228 $self->{addition}, $self->{what_done}, "$self->{snumbers}");
3229 do_query($self, $dbh, $query, @values);
3231 $main::lxdebug->leave_sub();
3235 $main::lxdebug->enter_sub();
3237 my ($self, $dbh, $trans_id, $restriction, $order) = @_;
3238 my ($orderBy, $desc) = split(/\-\-/, $order);
3239 $order = " ORDER BY " . ($order eq "" ? " h.itime " : ($desc == 1 ? $orderBy . " DESC " : $orderBy . " "));
3242 if ($trans_id ne "") {
3244 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 | .
3245 qq|FROM history_erp h | .
3246 qq|LEFT JOIN employee emp ON (emp.id = h.employee_id) | .
3247 qq|WHERE (trans_id = | . $trans_id . qq|) $restriction | .
3250 my $sth = $dbh->prepare($query) || $self->dberror($query);
3252 $sth->execute() || $self->dberror("$query");
3254 while(my $hash_ref = $sth->fetchrow_hashref()) {
3255 $hash_ref->{addition} = $main::locale->text($hash_ref->{addition});
3256 $hash_ref->{what_done} = $main::locale->text($hash_ref->{what_done});
3257 $hash_ref->{snumbers} =~ s/^.+_(.*)$/$1/g;
3258 $tempArray[$i++] = $hash_ref;
3260 $main::lxdebug->leave_sub() and return \@tempArray
3261 if ($i > 0 && $tempArray[0] ne "");
3263 $main::lxdebug->leave_sub();
3267 sub update_defaults {
3268 $main::lxdebug->enter_sub();
3270 my ($self, $myconfig, $fld, $provided_dbh) = @_;
3273 if ($provided_dbh) {
3274 $dbh = $provided_dbh;
3276 $dbh = $self->dbconnect_noauto($myconfig);
3278 my $query = qq|SELECT $fld FROM defaults FOR UPDATE|;
3279 my $sth = $dbh->prepare($query);
3281 $sth->execute || $self->dberror($query);
3282 my ($var) = $sth->fetchrow_array;
3285 if ($var =~ m/\d+$/) {
3286 my $new_var = (substr $var, $-[0]) * 1 + 1;
3287 my $len_diff = length($var) - $-[0] - length($new_var);
3288 $var = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3294 $query = qq|UPDATE defaults SET $fld = ?|;
3295 do_query($self, $dbh, $query, $var);
3297 if (!$provided_dbh) {
3302 $main::lxdebug->leave_sub();
3307 =item update_business
3310 \%config, - config hashref
3311 $business_id, - business id
3312 $dbh - optional database handle
3314 handles business (thats customer/vendor types) sequences.
3316 special behaviour for empty strings in customerinitnumber field:
3317 will in this case not increase the value, and return undef.
3320 sub update_business {
3321 $main::lxdebug->enter_sub();
3323 my ($self, $myconfig, $business_id, $provided_dbh) = @_;
3326 if ($provided_dbh) {
3327 $dbh = $provided_dbh;
3329 $dbh = $self->dbconnect_noauto($myconfig);
3332 qq|SELECT customernumberinit FROM business
3333 WHERE id = ? FOR UPDATE|;
3334 my ($var) = selectrow_query($self, $dbh, $query, $business_id);
3336 return undef unless $var;
3338 if ($var =~ m/\d+$/) {
3339 my $new_var = (substr $var, $-[0]) * 1 + 1;
3340 my $len_diff = length($var) - $-[0] - length($new_var);
3341 $var = substr($var, 0, $-[0]) . ($len_diff > 0 ? '0' x $len_diff : '') . $new_var;
3347 $query = qq|UPDATE business
3348 SET customernumberinit = ?
3350 do_query($self, $dbh, $query, $var, $business_id);
3352 if (!$provided_dbh) {
3357 $main::lxdebug->leave_sub();
3362 sub get_partsgroup {
3363 $main::lxdebug->enter_sub();
3365 my ($self, $myconfig, $p) = @_;
3366 my $target = $p->{target} || 'all_partsgroup';
3368 my $dbh = $self->get_standard_dbh($myconfig);
3370 my $query = qq|SELECT DISTINCT pg.id, pg.partsgroup
3372 JOIN parts p ON (p.partsgroup_id = pg.id) |;
3375 if ($p->{searchitems} eq 'part') {
3376 $query .= qq|WHERE p.inventory_accno_id > 0|;
3378 if ($p->{searchitems} eq 'service') {
3379 $query .= qq|WHERE p.inventory_accno_id IS NULL|;
3381 if ($p->{searchitems} eq 'assembly') {
3382 $query .= qq|WHERE p.assembly = '1'|;
3384 if ($p->{searchitems} eq 'labor') {
3385 $query .= qq|WHERE (p.inventory_accno_id > 0) AND (p.income_accno_id IS NULL)|;
3388 $query .= qq|ORDER BY partsgroup|;
3391 $query = qq|SELECT id, partsgroup FROM partsgroup
3392 ORDER BY partsgroup|;
3395 if ($p->{language_code}) {
3396 $query = qq|SELECT DISTINCT pg.id, pg.partsgroup,
3397 t.description AS translation
3399 JOIN parts p ON (p.partsgroup_id = pg.id)
3400 LEFT JOIN translation t ON ((t.trans_id = pg.id) AND (t.language_code = ?))
3401 ORDER BY translation|;
3402 @values = ($p->{language_code});
3405 $self->{$target} = selectall_hashref_query($self, $dbh, $query, @values);
3407 $main::lxdebug->leave_sub();
3410 sub get_pricegroup {
3411 $main::lxdebug->enter_sub();
3413 my ($self, $myconfig, $p) = @_;
3415 my $dbh = $self->get_standard_dbh($myconfig);
3417 my $query = qq|SELECT p.id, p.pricegroup
3420 $query .= qq| ORDER BY pricegroup|;
3423 $query = qq|SELECT id, pricegroup FROM pricegroup
3424 ORDER BY pricegroup|;
3427 $self->{all_pricegroup} = selectall_hashref_query($self, $dbh, $query);
3429 $main::lxdebug->leave_sub();
3433 # usage $form->all_years($myconfig, [$dbh])
3434 # return list of all years where bookings found
3437 $main::lxdebug->enter_sub();
3439 my ($self, $myconfig, $dbh) = @_;
3441 $dbh ||= $self->get_standard_dbh($myconfig);
3444 my $query = qq|SELECT (SELECT MIN(transdate) FROM acc_trans),
3445 (SELECT MAX(transdate) FROM acc_trans)|;
3446 my ($startdate, $enddate) = selectrow_query($self, $dbh, $query);
3448 if ($myconfig->{dateformat} =~ /^yy/) {
3449 ($startdate) = split /\W/, $startdate;
3450 ($enddate) = split /\W/, $enddate;
3452 (@_) = split /\W/, $startdate;
3454 (@_) = split /\W/, $enddate;
3459 $startdate = substr($startdate,0,4);
3460 $enddate = substr($enddate,0,4);
3462 while ($enddate >= $startdate) {
3463 push @all_years, $enddate--;
3468 $main::lxdebug->leave_sub();
3472 $main::lxdebug->enter_sub();
3476 map { $self->{_VAR_BACKUP}->{$_} = $self->{$_} if exists $self->{$_} } @vars;
3478 $main::lxdebug->leave_sub();
3482 $main::lxdebug->enter_sub();
3487 map { $self->{$_} = $self->{_VAR_BACKUP}->{$_} if exists $self->{_VAR_BACKUP}->{$_} } @vars;
3489 $main::lxdebug->leave_sub();