summaryrefslogtreecommitdiff
path: root/doc/todo
diff options
context:
space:
mode:
Diffstat (limited to 'doc/todo')
0 files changed, 0 insertions, 0 deletions
>
  • my $type = shift;
  • my $self = {};
  • read(STDIN, $_, $ENV{CONTENT_LENGTH});
  • if ($ENV{QUERY_STRING}) {
  • $_ = $ENV{QUERY_STRING};
  • }
  • if ($ARGV[0]) {
  • $_ = $ARGV[0];
  • }
  • %$self = split /[&=]/;
  • for (keys %$self) { $self->{$_} = unescape("", $self->{$_}) }
  • if (substr($self->{action}, 0, 1) !~ /( |\.)/) {
  • $self->{action} = lc $self->{action};
  • $self->{action} =~ s/( |-|,|\#|\/|\.$)/_/g;
  • }
  • $self->{menubar} = 1 if $self->{path} =~ /lynx/i;
  • $self->{version} = "1.0.0";
  • $self->{dbversion} = "2.6.17";
  • bless $self, $type;
  • }
  • sub debug {
  • my ($self, $file) = @_;
  • if ($file) {
  • open(FH, "> $file") or die $!;
  • for (sort keys %$self) { print FH "$_ = $self->{$_}\n" }
  • close(FH);
  • } else {
  • print "\n";
  • for (sort keys %$self) { print "$_ = $self->{$_}\n" }
  • }
  • }
  • sub escape {
  • my ($self, $str, $beenthere) = @_;
  • # for Apache 2 we escape strings twice
  • if (($ENV{SERVER_SIGNATURE} =~ /Apache\/2\.(\d+)\.(\d+)/) && !$beenthere) {
  • $str = $self->escape($str, 1) if $1 == 0 && $2 < 44;
  • }
  • $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
  • $str;
  • }
  • sub unescape {
  • my ($self, $str) = @_;
  • $str =~ tr/+/ /;
  • $str =~ s/\\$//;
  • $str =~ s/%([0-9a-fA-Z]{2})/pack("c",hex($1))/eg;
  • $str =~ s/\r?\n/\n/g;
  • $str;
  • }
  • sub quote {
  • my ($self, $str) = @_;
  • if ($str && ! ref($str)) {
  • $str =~ s/"/&quot;/g;
  • }
  • $str;
  • }
  • sub unquote {
  • my ($self, $str) = @_;
  • if ($str && ! ref($str)) {
  • $str =~ s/&quot;/"/g;
  • }
  • $str;
  • }
  • sub hide_form {
  • my $self = shift;
  • if (@_) {
  • for (@_) {
  • print qq|<input type="hidden" name="$_" value="|.$self->quote($self->{$_}).qq|" />\n|
  • }
  • } else {
  • delete $self->{header};
  • for (sort keys %$self) {
  • print qq|<input type="hidden" name="$_" value="|.$self->quote($self->{$_}).qq|" />\n|
  • }
  • }
  • }
  • sub error {
  • my ($self, $msg) = @_;
  • if ($ENV{HTTP_USER_AGENT}) {
  • $self->{msg} = $msg;
  • $self->{format} = "html";
  • $self->format_string(msg);
  • delete $self->{pre};
  • if (!$self->{header}) {
  • $self->header;
  • }
  • print qq|<body><h2 class="error">Error!</h2> <p><b>$self->{msg}</b></body>|;
  • exit;
  • } else {
  • if ($self->{error_function}) {
  • &{ $self->{error_function} }($msg);
  • } else {
  • die "Error: $msg\n";
  • }
  • }
  • }
  • sub info {
  • my ($self, $msg) = @_;
  • if ($ENV{HTTP_USER_AGENT}) {
  • $msg =~ s/\n/<br>/g;
  • delete $self->{pre};
  • if (!$self->{header}) {
  • $self->header;
  • print qq| <body>|;
  • $self->{header} = 1;
  • }
  • print "<b>$msg</b>";
  • } else {
  • if ($self->{info_function}) {
  • &{ $self->{info_function} }($msg);
  • } else {
  • print "$msg\n";
  • }
  • }
  • }
  • sub numtextrows {
  • my ($self, $str, $cols, $maxrows) = @_;
  • my $rows = 0;
  • for (split /\n/, $str) {
  • $rows += int (((length) - 2)/$cols) + 1
  • }
  • $maxrows = $rows unless defined $maxrows;
  • return ($rows > $maxrows) ? $maxrows : $rows;
  • }
  • sub dberror {
  • my ($self, $msg) = @_;
  • $self->error("$msg\n".$DBI::errstr);
  • }
  • sub isblank {
  • my ($self, $name, $msg) = @_;
  • $self->error($msg) if $self->{$name} =~ /^\s*$/;
  • }
  • sub header {
  • my ($self, $init) = @_;
  • return if $self->{header};
  • my ($stylesheet, $favicon, $charset);
  • if ($ENV{HTTP_USER_AGENT}) {
  • if ($self->{stylesheet} && (-f "css/$self->{stylesheet}")) {
  • $stylesheet = qq|<link rel="stylesheet" href="css/$self->{stylesheet}" type="text/css" title="LedgerSMB stylesheet" />\n|;
  • }
  • if ($self->{charset}) {
  • $charset = qq|<meta http-equiv="content-type" content="text/html; charset=$self->{charset}" />\n|;
  • }
  • $self->{titlebar} = ($self->{title}) ? "$self->{title} - $self->{titlebar}" : $self->{titlebar};
  • $self->set_cookie($init);
  • print qq|Content-Type: text/html\n\n
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  • "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  • <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  • <head>
  • <title>$self->{titlebar}</title>
  • <meta http-equiv="Pragma" content="no-cache" />
  • <meta http-equiv="Expires" content="-1" />
  • <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  • $stylesheet
  • $charset
  • <meta name="robots" content="noindex,nofollow" />
  • </head>
  • $self->{pre} \n|;
  • }
  • $self->{header} = 1;
  • }
  • sub set_cookie {
  • my ($self, $init) = @_;
  • $self->{timeout} = ($self->{timeout} > 0) ? $self->{timeout} : 3600;
  • my $t = ($self->{endsession}) ? time : time + $self->{timeout};
  • if ($ENV{HTTP_USER_AGENT}) {
  • my @d = split / +/, scalar gmtime($t);
  • my $today = "$d[0], $d[2]-$d[1]-$d[4] $d[3] GMT";
  • if ($init) {
  • $self->{sessionid} = time;
  • }
  • print qq|Set-Cookie: LedgerSMB-$self->{login}=$self->{sessionid}; expires=$today; path=/;\n| if $self->{login};
  • }
  • }
  • sub redirect {
  • my ($self, $msg) = @_;
  • if ($self->{callback}) {
  • my ($script, $argv) = split(/\?/, $self->{callback});
  • exec ("perl", $script, $argv);
  • } else {
  • $self->info($msg);
  • }
  • }
  • sub sort_columns {
  • my ($self, @columns) = @_;
  • if ($self->{sort}) {
  • if (@columns) {
  • @columns = grep !/^$self->{sort}$/, @columns;
  • splice @columns, 0, 0, $self->{sort};
  • }
  • }
  • @columns;
  • }
  • sub sort_order {
  • my ($self, $columns, $ordinal) = @_;
  • # setup direction
  • if ($self->{direction}) {
  • if ($self->{sort} eq $self->{oldsort}) {
  • if ($self->{direction} eq 'ASC') {
  • $self->{direction} = "DESC";
  • } else {
  • $self->{direction} = "ASC";
  • }
  • }
  • } else {
  • $self->{direction} = "ASC";
  • }
  • $self->{oldsort} = $self->{sort};
  • my @a = $self->sort_columns(@{$columns});
  • if (%$ordinal) {
  • $a[0] = ($ordinal->{$a[$_]}) ? "$ordinal->{$a[0]} $self->{direction}" : "$a[0] $self->{direction}";
  • for (1 .. $#a) {
  • $a[$_] = $ordinal->{$a[$_]} if $ordinal->{$a[$_]}
  • }
  • } else {
  • $a[0] .= " $self->{direction}";
  • }
  • $sortorder = join ',', @a;
  • $sortorder;
  • }
  • sub format_amount {
  • my ($self, $myconfig, $amount, $places, $dash) = @_;
  • if ($places =~ /\d+/) {
  • #$places = 4 if $places == 2;
  • $amount = $self->round_amount($amount, $places);
  • }
  • # is the amount negative
  • my $negative = ($amount < 0);
  • if ($amount) {
  • if ($myconfig->{numberformat}) {
  • my ($whole, $dec) = split /\./, "$amount";
  • $whole =~ s/-//;
  • $amount = join '', reverse split //, $whole;
  • if ($places) {
  • $dec .= "0" x $places;
  • $dec = substr($dec, 0, $places);
  • }
  • if ($myconfig->{numberformat} eq '1,000.00') {
  • $amount =~ s/\d{3,}?/$&,/g;
  • $amount =~ s/,$//;
  • $amount = join '', reverse split //, $amount;
  • $amount .= "\.$dec" if ($dec ne "");
  • }
  • if ($myconfig->{numberformat} eq "1'000.00") {
  • $amount =~ s/\d{3,}?/$&'/g;
  • $amount =~ s/'$//;
  • $amount = join '', reverse split //, $amount;
  • $amount .= "\.$dec" if ($dec ne "");
  • }
  • if ($myconfig->{numberformat} eq '1.000,00') {
  • $amount =~ s/\d{3,}?/$&./g;
  • $amount =~ s/\.$//;
  • $amount = join '', reverse split //, $amount;
  • $amount .= ",$dec" if ($dec ne "");
  • }
  • if ($myconfig->{numberformat} eq '1000,00') {
  • $amount = "$whole";
  • $amount .= ",$dec" if ($dec ne "");
  • }
  • if ($myconfig->{numberformat} eq '1000.00') {
  • $amount = "$whole";
  • $amount .= ".$dec" if ($dec ne "");
  • }
  • if ($dash =~ /-/) {
  • $amount = ($negative) ? "($amount)" : "$amount";
  • } elsif ($dash =~ /DRCR/) {
  • $amount = ($negative) ? "$amount DR" : "$amount CR";
  • } else {
  • $amount = ($negative) ? "-$amount" : "$amount";
  • }
  • }
  • } else {
  • if ($dash eq "0" && $places) {
  • if ($myconfig->{numberformat} eq '1.000,00') {
  • $amount = "0".","."0" x $places;
  • } else {
  • $amount = "0"."."."0" x $places;
  • }
  • } else {
  • $amount = ($dash ne "") ? "$dash" : "";
  • }
  • }
  • $amount;
  • }
  • sub parse_amount {
  • my ($self, $myconfig, $amount) = @_;
  • if (($myconfig->{numberformat} eq '1.000,00') ||
  • ($myconfig->{numberformat} eq '1000,00')) {
  • $amount =~ s/\.//g;
  • $amount =~ s/,/\./;
  • }
  • if ($myconfig->{numberformat} eq "1'000.00") {
  • $amount =~ s/'//g;
  • }
  • $amount =~ s/,//g;
  • return ($amount * 1);
  • }
  • sub round_amount {
  • my ($self, $amount, $places) = @_;
  • # $places = 4 if $places == 2;
  • my ($null, $dec) = split /\./, $amount;
  • $dec = length $dec;
  • $dec = ($dec > $places) ? $dec : $places;
  • my $adj = ($amount < 0) ? (1/10**($dec+2)) * -1 : (1/10**($dec+2));
  • if (($places * 1) >= 0) {
  • $amount = sprintf("%.${places}f", $amount + $adj) * 1;
  • } else {
  • $places *= -1;
  • $amount = sprintf("%.0f", $amount);
  • $amount = sprintf("%.f", $amount / (10 ** $places)) * (10 ** $places);
  • }
  • $amount;
  • }
  • sub parse_template {
  • my ($self, $myconfig, $userspath) = @_;
  • my ($chars_per_line, $lines_on_first_page, $lines_on_second_page) = (0, 0, 0);
  • my ($current_page, $current_line) = (1, 1);
  • my $pagebreak = "";
  • my $sum = 0;
  • my $subdir = "";
  • my $err = "";
  • my %include = ();
  • my $ok;
  • if ($self->{language_code}) {
  • if (-f "$self->{templates}/$self->{language_code}/$self->{IN}") {
  • open(IN, "$self->{templates}/$self->{language_code}/$self->{IN}") or $self->error("$self->{IN} : $!");
  • } else {
  • open(IN, "$self->{templates}/$self->{IN}") or $self->error("$self->{IN} : $!");
  • }
  • } else {
  • open(IN, "$self->{templates}/$self->{IN}") or $self->error("$self->{IN} : $!");
  • }
  • @_ = <IN>;
  • close(IN);
  • $self->{copies} = 1 if (($self->{copies} *= 1) <= 0);
  • # OUT is used for the media, screen, printer, email
  • # for postscript we store a copy in a temporary file
  • my $fileid = time;
  • my $tmpfile = $self->{IN};
  • $tmpfile =~ s/\./_$self->{fileid}./ if $self->{fileid};
  • $self->{tmpfile} = "$userspath/${fileid}_${tmpfile}";
  • if ($self->{format} =~ /(postscript|pdf)/ || $self->{media} eq 'email') {
  • $out = $self->{OUT};
  • $self->{OUT} = ">$self->{tmpfile}";
  • }
  • if ($self->{OUT}) {
  • open(OUT, "$self->{OUT}") or $self->error("$self->{OUT} : $!");
  • } else {
  • open(OUT, ">-") or $self->error("STDOUT : $!");
  • $self->header;
  • }
  • # first we generate a tmpfile
  • # read file and replace <%variable%>
  • while ($_ = shift) {
  • $par = "";
  • $var = $_;
  • # detect pagebreak block and its parameters
  • if (/<%pagebreak ([0-9]+) ([0-9]+) ([0-9]+)%>/) {
  • $chars_per_line = $1;
  • $lines_on_first_page = $2;
  • $lines_on_second_page = $3;
  • while ($_ = shift) {
  • last if (/<%end pagebreak%>/);
  • $pagebreak .= $_;
  • }
  • }
  • if (/<%foreach /) {
  • # this one we need for the count
  • chomp $var;
  • $var =~ s/.*?<%foreach (.+?)%>/$1/;
  • while ($_ = shift) {
  • last if (/<%end $var%>/);
  • # store line in $par
  • $par .= $_;
  • }
  • # display contents of $self->{number}[] array
  • for $i (0 .. $#{ $self->{$var} }) {
  • if ($var =~ /^(part|service)$/) {
  • next if $self->{$var}[$i] eq 'NULL';
  • }
  • # Try to detect whether a manual page break is necessary
  • # but only if there was a <%pagebreak ...%> block before
  • if ($var eq 'number' || $var eq 'part' || $var eq 'service') {
  • if ($chars_per_line && defined $self->{$var}) {
  • my $line;
  • my $lines = 0;
  • my @d = (description);
  • push @d, "itemnotes" if $self->{countitemnotes};
  • foreach my $item (@d) {
  • if ($self->{$item}[$i]) {
  • foreach $line (split /\r?\n/, $self->{$item}[$i]) {
  • $lines++;
  • $lines += int(length($line) / $chars_per_line);
  • }
  • }
  • }
  • my $lpp;
  • if ($current_page == 1) {
  • $lpp = $lines_on_first_page;
  • } else {
  • $lpp = $lines_on_second_page;
  • }
  • # Yes we need a manual page break
  • if (($current_line + $lines) > $lpp) {
  • my $pb = $pagebreak;
  • # replace the special variables <%sumcarriedforward%>
  • # and <%lastpage%>
  • my $psum = $self->format_amount($myconfig, $sum, 2);
  • $pb =~ s/<%sumcarriedforward%>/$psum/g;
  • $pb =~ s/<%lastpage%>/$current_page/g;
  • # only "normal" variables are supported here
  • # (no <%if, no <%foreach, no <%include)
  • $pb =~ s/<%(.+?)%>/$self->{$1}/g;
  • # page break block is ready to rock
  • print(OUT $pb);
  • $current_page++;
  • $current_line = 1;
  • $lines = 0;
  • }
  • $current_line += $lines;
  • }
  • $sum += $self->parse_amount($myconfig, $self->{linetotal}[$i]);
  • }
  • # don't parse par, we need it for each line
  • print OUT $self->format_line($par, $i);
  • }
  • next;
  • }
  • # if not comes before if!
  • if (/<%if not /) {
  • # check if it is not set and display
  • chop;
  • s/.*?<%if not (.+?)%>/$1/;
  • if (! $self->{$_}) {
  • while ($_ = shift) {
  • last if (/<%end /);
  • # store line in $par
  • $par .= $_;
  • }
  • $_ = $par;
  • } else {
  • while ($_ = shift) {
  • last if (/<%end /);
  • }
  • next;
  • }
  • }
  • if (/<%if /) {
  • # check if it is set and display
  • chop;
  • s/.*?<%if (.+?)%>/$1/;
  • if (/\s/) {
  • @a = split;
  • $ok = eval "$self->{$a[0]} $a[1] $a[2]";
  • } else {
  • $ok = $self->{$_};
  • }
  • if ($ok) {
  • while ($_ = shift) {
  • last if (/<%end /);
  • # store line in $par
  • $par .= $_;
  • }
  • $_ = $par;
  • } else {
  • while ($_ = shift) {
  • last if (/<%end /);
  • }
  • next;
  • }
  • }
  • # check for <%include filename%>
  • if (/<%include /) {
  • # get the filename
  • chomp $var;
  • $var =~ s/.*?<%include (.+?)%>/$1/;
  • # remove / .. for security reasons
  • $var =~ s/(\/|\.\.)//g;
  • # assume loop after 10 includes of the same file
  • next if ($include{$var} > 10);
  • unless (open(INC, "$self->{templates}/$self->{language_code}/$var")) {
  • $err = $!;
  • $self->cleanup;
  • $self->error("$self->{templates}/$self->{language_code}/$var : $err");
  • }
  • unshift(@_, <INC>);
  • close(INC);
  • $include{$var}++;
  • next;
  • }
  • print OUT $self->format_line($_);
  • }
  • close(OUT);
  • delete $self->{countitemnotes};
  • # Convert the tex file to postscript
  • if ($self->{format} =~ /(postscript|pdf)/) {
  • use Cwd;
  • $self->{cwd} = cwd();
  • $self->{tmpdir} = "$self->{cwd}/$userspath";
  • unless (chdir("$userspath")) {
  • $err = $!;
  • $self->cleanup;
  • $self->error("chdir : $err");
  • }
  • $self->{tmpfile} =~ s/$userspath\///g;
  • $self->{errfile} = $self->{tmpfile};
  • $self->{errfile} =~ s/tex$/err/;
  • my $r = 1;
  • if ($self->{format} eq 'postscript') {
  • system("latex --interaction=nonstopmode $self->{tmpfile} > $self->{errfile}");
  • while ($self->rerun_latex) {
  • system("latex --interaction=nonstopmode $self->{tmpfile} > $self->{errfile}");
  • last if ++$r > 4;
  • }
  • $self->{tmpfile} =~ s/tex$/dvi/;
  • $self->error($self->cleanup) if ! (-f $self->{tmpfile});
  • system("dvips $self->{tmpfile} -o -q");
  • $self->error($self->cleanup."dvips : $!") if ($?);
  • $self->{tmpfile} =~ s/dvi$/ps/;
  • }
  • if ($self->{format} eq 'pdf') {
  • system("pdflatex --interaction=nonstopmode $self->{tmpfile} > $self->{errfile}");
  • while ($self->rerun_latex) {
  • system("pdflatex --interaction=nonstopmode $self->{tmpfile} > $self->{errfile}");
  • last if ++$r > 4;
  • }
  • $self->{tmpfile} =~ s/tex$/pdf/;
  • $self->error($self->cleanup) if ! (-f $self->{tmpfile});
  • }
  • }
  • if ($self->{format} =~ /(postscript|pdf)/ || $self->{media} eq 'email') {
  • if ($self->{media} eq 'email') {
  • use LedgerSMB::Mailer;
  • my $mail = new Mailer;
  • for (qw(cc bcc subject message version format charset)) {
  • $mail->{$_} = $self->{$_}
  • }
  • $mail->{to} = qq|$self->{email}|;
  • $mail->{from} = qq|"$myconfig->{name}" <$myconfig->{email}>|;
  • $mail->{fileid} = "$fileid.";
  • # if we send html or plain text inline
  • if (($self->{format} =~ /(html|txt)/) &&
  • ($self->{sendmode} eq 'inline')) {
  • my $br = "";
  • $br = "<br>" if $self->{format} eq 'html';
  • $mail->{contenttype} = "text/$self->{format}";
  • $mail->{message} =~ s/\r?\n/$br\n/g;
  • $myconfig->{signature} =~ s/\\n/$br\n/g;
  • $mail->{message} .= "$br\n-- $br\n$myconfig->{signature}\n$br" if $myconfig->{signature};
  • unless (open(IN, $self->{tmpfile})) {
  • $err = $!;
  • $self->cleanup;
  • $self->error("$self->{tmpfile} : $err");
  • }
  • while (<IN>) {
  • $mail->{message} .= $_;
  • }
  • close(IN);
  • } else {
  • @{ $mail->{attachments} } = ($self->{tmpfile});
  • $myconfig->{signature} =~ s/\\n/\n/g;
  • $mail->{message} .= "\n-- \n$myconfig->{signature}" if $myconfig->{signature};
  • }
  • if ($err = $mail->send($out)) {
  • $self->cleanup;
  • $self->error($err);
  • }
  • } else {
  • $self->{OUT} = $out;
  • unless (open(IN, $self->{tmpfile})) {
  • $err = $!;
  • $self->cleanup;
  • $self->error("$self->{tmpfile} : $err");
  • }
  • binmode(IN);
  • $self->{copies} = 1 if $self->{media} =~ /(screen|email|queue)/;
  • chdir("$self->{cwd}");
  • for my $i (1 .. $self->{copies}) {
  • if ($self->{OUT}) {
  • unless (open(OUT, $self->{OUT})) {
  • $err = $!;
  • $self->cleanup;
  • $self->error("$self->{OUT} : $err");
  • }
  • } else {
  • # launch application
  • print qq|Content-Type: application/$self->{format}
  • Content-Disposition: attachment; filename="$self->{tmpfile}"\n\n|;
  • unless (open(OUT, ">-")) {
  • $err = $!;
  • $self->cleanup;
  • $self->error("STDOUT : $err");
  • }
  • }
  • binmode(OUT);
  • while (<IN>) {
  • print OUT $_;
  • }
  • close(OUT);
  • seek IN, 0, 0;
  • }
  • close(IN);
  • }
  • $self->cleanup;
  • }
  • }
  • sub format_line {
  • my $self = shift;
  • $_ = shift;
  • my $i = shift;
  • my $str;
  • my $newstr;
  • my $pos;
  • my $l;
  • my $lf;
  • my $line;
  • my $var = "";
  • my %a;
  • my $offset;
  • my $pad;
  • my $item;
  • while (/<%(.+?)%>/) {
  • %a = ();
  • foreach $item (split / /, $1) {
  • my ($key, $value) = split /=/, $item;
  • if ($value ne "") {
  • $a{$key} = $value;
  • } else {
  • $var = $item;
  • }
  • }
  • $str = (defined $i) ? $self->{$var}[$i] : $self->{$var};
  • $newstr = $str;
  • $self->{countitemnotes} = 1 if $var eq 'itemnotes';
  • $var = $1;
  • if ($var =~ /^if\s+not\s+/) {
  • if ($str) {
  • $var =~ s/if\s+not\s+//;
  • s/<%if\s+not\s+$var%>.*?(<%end\s+$var%>|$)//s;
  • } else {
  • s/<%$var%>//;
  • }
  • next;
  • }
  • if ($var =~ /^if\s+/) {
  • if ($str) {
  • s/<%$var%>//;
  • } else {
  • $var =~ s/if\s+//;
  • s/<%if\s+$var%>.*?(<%end\s+$var%>|$)//s;
  • }
  • next;
  • }
  • if ($var =~ /^end\s+/) {
  • s/<%$var%>//;
  • next;
  • }
  • if ($a{align} || $a{width} || $a{offset}) {
  • $newstr = "";
  • $offset = 0;
  • $lf = "";
  • foreach $str (split /\n/, $str) {
  • $line = $str;
  • $l = length $str;
  • do {
  • if (($pos = length $str) > $a{width}) {
  • if (($pos = rindex $str, " ", $a{width}) > 0) {
  • $line = substr($str, 0, $pos);
  • }
  • $pos = length $str if $pos == -1;
  • }
  • $l = length $line;
  • # pad left, right or center
  • $l = ($a{width} - $l);
  • $pad = " " x $l;
  • if ($a{align} =~ /right/i) {
  • $line = " " x $offset . $pad . $line;
  • }
  • if ($a{align} =~ /left/i) {
  • $line = " " x $offset . $line . $pad;
  • }
  • if ($a{align} =~ /center/i) {
  • $pad = " " x ($l/2);
  • $line = " " x $offset . $pad . $line;
  • $pad = " " x ($l/2);
  • $line .= $pad;
  • }
  • $newstr .= "$lf$line";
  • $str = substr($str, $pos + 1);
  • $line = $str;
  • $lf = "\n";
  • $offset = $a{offset};
  • } while ($str);
  • }
  • }
  • s/<%(.+?)%>/$newstr/;
  • }
  • $_;
  • }
  • sub cleanup {
  • my $self = shift;
  • chdir("$self->{tmpdir}");
  • my @err = ();
  • if (-f "$self->{errfile}") {
  • open(FH, "$self->{errfile}");
  • @err = <FH>;
  • close(FH);
  • }
  • if ($self->{tmpfile}) {
  • # strip extension
  • $self->{tmpfile} =~ s/\.\w+$//g;
  • my $tmpfile = $self->{tmpfile};
  • unlink(<$tmpfile.*>);
  • }
  • chdir("$self->{cwd}");
  • "@err";
  • }
  • sub rerun_latex {
  • my $self = shift;
  • my $a = 0;
  • if (-f "$self->{errfile}") {
  • open(FH, "$self->{errfile}");
  • $a = grep /(longtable Warning:|Warning:.*?LastPage)/, <FH>;
  • close(FH);
  • }
  • $a;
  • }
  • sub format_string {
  • my ($self, @fields) = @_;
  • my $format = $self->{format};
  • if ($self->{format} =~ /(postscript|pdf)/) {
  • $format = 'tex';
  • }
  • my %replace = (
  • 'order' => {
  • html => [ '<', '>', '\n', '\r' ],
  • txt => [ '\n', '\r' ],
  • tex => [ quotemeta('\\'), '&', '\n','\r',
  • '\$', '%', '_', '#',
  • quotemeta('^'), '{', '}', '<', '>', '£'
  • ],
  • utf => [ quotemeta('\\'), '&', quotemeta('\n'),
  • '\r', '\$', '%', '_', '#', quotemeta('^'),
  • '{', '}', '<', '>' ] },
  • html => { '<' => '&lt;', '>' => '&gt;','\n' => '<br />',
  • '\r' => '<br />' },
  • txt => { '\n' => "\n", '\r' => "\r" },
  • tex => {'&' => '\&', '\$' => '\$', '%' => '\%', '_' => '\_',
  • '#' => '\#', quotemeta('^') => '\^\\', '{' => '\{',
  • '}' => '\}', '<' => '$<$', '>' => '$>$',
  • '\n' => '\newline ', '\r' => '\newline ',
  • '£' => '\pounds ', quotemeta('\\') => '/'}
  • );
  • my $key;
  • foreach $key (@{ $replace{order}{$format} }) {
  • for (@fields) { $self->{$_} =~ s/$key/$replace{$format}{$key}/g }
  • }
  • }
  • sub datetonum {
  • my ($self, $myconfig, $date, $picture) = @_;
  • if ($date && $date =~ /\D/) {
  • if ($myconfig->{dateformat} =~ /^yy/) {
  • ($yy, $mm, $dd) = split /\D/, $date;
  • }
  • if ($myconfig->{dateformat} =~ /^mm/) {
  • ($mm, $dd, $yy) = split /\D/, $date;
  • }
  • if ($myconfig->{dateformat} =~ /^dd/) {
  • ($dd, $mm, $yy) = split /\D/, $date;
  • }
  • $dd *= 1;
  • $mm *= 1;
  • $yy += 2000 if length $yy == 2;
  • $dd = substr("0$dd", -2);
  • $mm = substr("0$mm", -2);
  • $date = "$yy$mm$dd";
  • }
  • $date;
  • }
  • sub add_date {
  • my ($self, $myconfig, $date, $repeat, $unit) = @_;
  • use Time::Local;
  • my $diff = 0;
  • my $spc = $myconfig->{dateformat};
  • $spc =~ s/\w//g;
  • $spc = substr($spc, 0, 1);
  • if ($date) {
  • if ($date =~ /\D/) {
  • if ($myconfig->{dateformat} =~ /^yy/) {
  • ($yy, $mm, $dd) = split /\D/, $date;
  • }
  • if ($myconfig->{dateformat} =~ /^mm/) {
  • ($mm, $dd, $yy) = split /\D/, $date;
  • }
  • if ($myconfig->{dateformat} =~ /^dd/) {
  • ($dd, $mm, $yy) = split /\D/, $date;
  • }
  • } else {
  • # ISO
  • ($yy, $mm, $dd) =~ /(....)(..)(..)/;
  • }
  • if ($unit eq 'days') {
  • $diff = $repeat * 86400;
  • }
  • if ($unit eq 'weeks') {
  • $diff = $repeat * 604800;
  • }
  • if ($unit eq 'months') {
  • $diff = $mm + $repeat;
  • my $whole = int($diff / 12);
  • $yy += $whole;
  • $mm = ($diff % 12) + 1;
  • $diff = 0;
  • }
  • if ($unit eq 'years') {
  • $yy++;
  • }
  • $mm--;
  • @t = localtime(timelocal(0,0,0,$dd,$mm,$yy) + $diff);
  • $t[4]++;
  • $mm = substr("0$t[4]",-2);
  • $dd = substr("0$t[3]",-2);
  • $yy = $t[5] + 1900;
  • if ($date =~ /\D/) {
  • if ($myconfig->{dateformat} =~ /^yy/) {
  • $date = "$yy$spc$mm$spc$dd";
  • }
  • if ($myconfig->{dateformat} =~ /^mm/) {
  • $date = "$mm$spc$dd$spc$yy";
  • }
  • if ($myconfig->{dateformat} =~ /^dd/) {
  • $date = "$dd$spc$mm$spc$yy";
  • }
  • } else {
  • $date = "$yy$mm$dd";
  • }
  • }
  • $date;
  • }
  • sub print_button {
  • my ($self, $button, $name) = @_;
  • print qq|<input class="submit" type="submit" name="action" value="$button->{$name}{value}" accesskey="$button->{$name}{key}" title="$button->{$name}{value} [Alt-$button->{$name}{key}]" />\n|;
  • }
  • # Database routines used throughout
  • sub dbconnect {
  • my ($self, $myconfig) = @_;
  • # connect to database
  • my $dbh = DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}) or $self->dberror;
  • # set db options
  • if ($myconfig->{dboptions}) {
  • $dbh->do($myconfig->{dboptions}) || $self->dberror($myconfig->{dboptions});
  • }
  • $dbh;
  • }
  • sub dbconnect_noauto {
  • my ($self, $myconfig) = @_;
  • # connect to database
  • $dbh = DBI->connect($myconfig->{dbconnect}, $myconfig->{dbuser}, $myconfig->{dbpasswd}, {AutoCommit => 0}) or $self->dberror;
  • # set db options
  • if ($myconfig->{dboptions}) {
  • $dbh->do($myconfig->{dboptions});
  • }
  • $dbh;
  • }
  • sub dbquote {
  • my ($self, $var, $type) = @_;
  • # DBI does not return NULL for SQL_DATE if the date is empty
  • if ($type eq 'SQL_DATE') {
  • $_ = ($var) ? "'$var'" : "NULL";
  • }
  • if ($type eq 'SQL_INT') {
  • $_ = $var * 1;
  • }
  • $_;
  • }
  • sub update_balance {
  • my ($self, $dbh, $table, $field, $where, $value) = @_;
  • # if we have a value, go do it
  • if ($value) {
  • # retrieve balance from table
  • my $query = "SELECT $field FROM $table WHERE $where FOR UPDATE";
  • my ($balance) = $dbh->selectrow_array($query);
  • $balance += $value;
  • # update balance
  • $query = "UPDATE $table SET $field = $balance WHERE $where";
  • $dbh->do($query) || $self->dberror($query);
  • }
  • }
  • sub update_exchangerate {
  • my ($self, $dbh, $curr, $transdate, $buy, $sell) = @_;
  • # some sanity check for currency
  • return if ($curr eq "");
  • my $query = qq|SELECT curr
  • FROM exchangerate
  • WHERE curr = '$curr'
  • AND transdate = '$transdate'
  • FOR UPDATE|;
  • my $sth = $dbh->prepare($query);
  • $sth->execute || $self->dberror($query);
  • my $set;
  • if ($buy && $sell) {
  • $set = "buy = $buy, sell = $sell";
  • } elsif ($buy) {
  • $set = "buy = $buy";
  • } elsif ($sell) {
  • $set = "sell = $sell";
  • }
  • if ($sth->fetchrow_array) {
  • $query = qq|UPDATE exchangerate
  • SET $set
  • WHERE curr = '$curr'
  • AND transdate = '$transdate'|;
  • } else {
  • $query = qq|INSERT INTO exchangerate (curr, buy, sell, transdate)
  • VALUES ('$curr', $buy, $sell, '$transdate')|;
  • }
  • $sth->finish;
  • $dbh->do($query) || $self->dberror($query);
  • }
  • sub save_exchangerate {
  • my ($self, $myconfig, $currency, $transdate, $rate, $fld) = @_;
  • my $dbh = $self->dbconnect($myconfig);
  • my ($buy, $sell) = (0, 0);
  • $buy = $rate if $fld eq 'buy';
  • $sell = $rate if $fld eq 'sell';
  • $self->update_exchangerate($dbh, $currency, $transdate, $buy, $sell);
  • $dbh->disconnect;
  • }
  • sub get_exchangerate {
  • my ($self, $dbh, $curr, $transdate, $fld) = @_;
  • my $exchangerate = 1;
  • if ($transdate) {
  • my $query = qq|SELECT $fld
  • FROM exchangerate
  • WHERE curr = '$curr'
  • AND transdate = '$transdate'|;
  • ($exchangerate) = $dbh->selectrow_array($query);
  • }
  • $exchangerate;
  • }
  • sub check_exchangerate {
  • my ($self, $myconfig, $currency, $transdate, $fld) = @_;
  • return "" unless $transdate;
  • my $dbh = $self->dbconnect($myconfig);
  • my $query = qq|SELECT $fld
  • FROM exchangerate
  • WHERE curr = '$currency'
  • AND transdate = '$transdate'|;
  • my ($exchangerate) = $dbh->selectrow_array($query);
  • $dbh->disconnect;
  • $exchangerate;
  • }
  • sub add_shipto {
  • my ($self, $dbh, $id) = @_;
  • my $shipto;
  • foreach my $item (qw(name address1 address2 city state
  • zipcode country contact phone fax email)) {
  • if ($self->{"shipto$item"} ne "") {
  • $shipto = 1 if ($self->{$item} ne $self->{"shipto$item"});
  • }
  • }
  • if ($shipto) {
  • my $query = qq|INSERT INTO shipto (trans_id, shiptoname, shiptoaddress1,
  • shiptoaddress2, shiptocity, shiptostate,
  • shiptozipcode, shiptocountry, shiptocontact,
  • shiptophone, shiptofax, shiptoemail)
  • VALUES ($id, |
  • .$dbh->quote($self->{shiptoname}).qq|, |
  • .$dbh->quote($self->{shiptoaddress1}).qq|, |
  • .$dbh->quote($self->{shiptoaddress2}).qq|, |
  • .$dbh->quote($self->{shiptocity}).qq|, |
  • .$dbh->quote($self->{shiptostate}).qq|, |
  • .$dbh->quote($self->{shiptozipcode}).qq|, |
  • .$dbh->quote($self->{shiptocountry}).qq|, |
  • .$dbh->quote($self->{shiptocontact}).qq|,
  • '$self->{shiptophone}', '$self->{shiptofax}',
  • '$self->{shiptoemail}')|;
  • $dbh->do($query) || $self->dberror($query);
  • }
  • }
  • sub get_employee {
  • my ($self, $dbh) = @_;
  • my $login = $self->{login};
  • $login =~ s/@.*//;
  • my $query = qq|SELECT name, id
  • FROM employee
  • WHERE login = '$login'|;
  • my (@a) = $dbh->selectrow_array($query);
  • $a[1] *= 1;
  • @a;
  • }
  • # this sub gets the id and name from $table
  • sub get_name {
  • my ($self, $myconfig, $table, $transdate) = @_;
  • # connect to database
  • my $dbh = $self->dbconnect($myconfig);
  • my $where;
  • if ($transdate) {
  • $where = qq|AND (startdate IS NULL OR startdate <= '$transdate')
  • AND (enddate IS NULL OR enddate >= '$transdate')|;
  • }
  • my $name = $self->like(lc $self->{$table});
  • my $query = qq|SELECT *
  • FROM $table
  • WHERE (lower(name) LIKE '$name'
  • OR ${table}number LIKE '$name')
  • $where
  • ORDER BY name|;
  • my $sth = $dbh->prepare($query);
  • $sth->execute || $self->dberror($query);
  • my $i = 0;
  • @{ $self->{name_list} } = ();
  • while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
  • push(@{ $self->{name_list} }, $ref);
  • $i++;
  • }
  • $sth->finish;
  • $dbh->disconnect;
  • $i;
  • }
  • sub all_vc {
  • my ($self, $myconfig, $vc, $module, $dbh, $transdate, $job) = @_;
  • my $ref;
  • my $disconnect = 0;
  • if (! $dbh) {
  • $dbh = $self->dbconnect($myconfig);
  • $disconnect = 1;
  • }
  • my $sth;
  • my $query = qq|SELECT count(*) FROM $vc|;
  • my $where;
  • if ($transdate) {
  • $where = qq|AND (startdate IS NULL OR startdate <= '$transdate')
  • AND (enddate IS NULL OR enddate >= '$transdate')|;
  • $query .= qq| WHERE 1=1 $where|;
  • }
  • my ($count) = $dbh->selectrow_array($query);
  • # build selection list
  • if ($count < $myconfig->{vclimit}) {
  • $self->{"${vc}_id"} *= 1;
  • $query = qq|SELECT id, name
  • FROM $vc
  • WHERE 1=1
  • $where
  • UNION
  • SELECT id,name
  • FROM $vc
  • WHERE id = $self->{"${vc}_id"}
  • ORDER BY name|;
  • $sth = $dbh->prepare($query);
  • $sth->execute || $self->dberror($query);
  • @{ $self->{"all_$vc"} } = ();
  • while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
  • push @{ $self->{"all_$vc"} }, $ref;
  • }
  • $sth->finish;
  • }
  • # get self
  • if (! $self->{employee_id}) {
  • ($self->{employee}, $self->{employee_id}) = split /--/, $self->{employee};
  • ($self->{employee}, $self->{employee_id}) = $self->get_employee($dbh) unless $self->{employee_id};
  • }
  • $self->all_employees($myconfig, $dbh, $transdate, 1);
  • $self->all_departments($myconfig, $dbh, $vc);
  • $self->all_projects($myconfig, $dbh, $transdate, $job);
  • # get language codes
  • $query = qq|SELECT *
  • FROM language
  • ORDER BY 2|;
  • $sth = $dbh->prepare($query);
  • $sth->execute || $self->dberror($query);
  • $self->{all_language} = ();
  • while ($ref = $sth->fetchrow_hashref(NAME_lc)) {
  • push @{ $self->{all_language} }, $ref;
  • }
  • $sth->finish;
  • $self->all_taxaccounts($myconfig, $dbh, $transdate);
  • $dbh->disconnect if $disconnect;
  • }
  • sub all_taxaccounts {
  • my ($self, $myconfig, $dbh, $transdate) = @_;
  • my $disconnect = ($dbh) ? 0 : 1;
  • if (! $dbh) {
  • $dbh = $self->dbconnect($myconfig);
  • }
  • my $sth;
  • my $query;
  • my $where;
  • if ($transdate) {
  • $where = qq| AND (t.validto >= '$transdate' OR t.validto IS NULL)|;
  • }
  • if ($self->{taxaccounts}) {
  • # rebuild tax rates
  • $query = qq|SELECT t.rate, t.taxnumber
  • FROM tax t
  • JOIN chart c ON (c.id = t.chart_id)
  • WHERE c.accno = ?
  • $where
  • ORDER BY accno, validto|;
  • $sth = $dbh->prepare($query) || $self->dberror($query);
  • foreach my $accno (split / /, $self->{taxaccounts}) {
  • $sth->execute($accno);
  • ($self->{"${accno}_rate"}, $self->{"${accno}_taxnumber"}) = $sth->fetchrow_array;
  • $sth->finish;
  • }
  • }
  • $dbh->disconnect if $disconnect;
  • }
  • sub all_employees {
  • my ($self, $myconfig, $dbh, $transdate, $sales) = @_;
  • # setup employees/sales contacts
  • my $query = qq|SELECT id, name
  • FROM employee
  • WHERE 1 = 1|;
  • if ($transdate) {
  • $query .= qq| AND (startdate IS NULL OR startdate <= '$transdate')
  • AND (enddate IS NULL OR enddate >= '$transdate')|;
  • } else {
  • $query .= qq| AND enddate IS NULL|;
  • }
  • if ($sales) {
  • $query .= qq| AND sales = '1'|;
  • }
  • $query .= qq| ORDER BY name|;
  • my $sth = $dbh->prepare($query);