X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FBP.pm;h=4489b8dae07ad84467be0aaa01fed9765995372f;hb=ff159a4d47b9a2d10744dcfc23da2c63605c8a32;hp=683edd44d99940104b1cb4e87f8f29d069e123e2;hpb=9659649d435c0436ce14048e56b03879ac641429;p=kivitendo-erp.git diff --git a/SL/BP.pm b/SL/BP.pm index 683edd44d..4489b8dae 100644 --- a/SL/BP.pm +++ b/SL/BP.pm @@ -25,7 +25,8 @@ # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1335, USA. #====================================================================== # # Batch printing module backend routines @@ -34,57 +35,10 @@ package BP; -sub get_vc { - $main::lxdebug->enter_sub(); - - my ($self, $myconfig, $form) = @_; - - # connect to database - my $dbh = $form->dbconnect($myconfig); - - my %arap = (invoice => 'ar', - packing_list => 'ar', - sales_order => 'oe', - purchase_order => 'oe', - sales_quotation => 'oe', - request_quotation => 'oe', - check => 'ap', - receipt => 'ar'); - - $query = qq|SELECT count(*) - FROM (SELECT DISTINCT ON (vc.id) vc.id - FROM $form->{vc} vc, $arap{$form->{type}} a, status s - WHERE a.$form->{vc}_id = vc.id - AND s.trans_id = a.id - AND s.formname = '$form->{type}' - AND s.spoolfile IS NOT NULL) AS total|; - - my $sth = $dbh->prepare($query); - $sth->execute || $form->dberror($query); - my ($count) = $sth->fetchrow_array; - $sth->finish; - - # build selection list - if ($count < $myconfig->{vclimit}) { - $query = qq|SELECT DISTINCT ON (vc.id) vc.id, vc.name - FROM $form->{vc} vc, $arap{$form->{type}} a, status s - WHERE a.$form->{vc}_id = vc.id - AND s.trans_id = a.id - AND s.formname = '$form->{type}' - AND s.spoolfile IS NOT NULL|; - } - $sth = $dbh->prepare($query); - $sth->execute || $form->dberror($query); - - while (my $ref = $sth->fetchrow_hashref(NAME_lc)) { - push @{ $form->{"all_$form->{vc}"} }, $ref; - } +use SL::DBUtils; +use SL::DB; - $sth->finish; - $dbh->disconnect; - - $main::lxdebug->leave_sub(); -} +use strict; sub payment_accounts { $main::lxdebug->enter_sub(); @@ -92,21 +46,21 @@ sub payment_accounts { my ($self, $myconfig, $form) = @_; # connect to database - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; - my $query = qq|SELECT DISTINCT ON (s.chart_id) c.accno, c.description - FROM status s, chart c - WHERE s.chart_id = c.id - AND s.formname = '$form->{type}'|; + my $query = + qq|SELECT DISTINCT ON (s.chart_id) c.accno, c.description | . + qq|FROM status s, chart c | . + qq|WHERE s.chart_id = c.id AND s.formname = ?|; my $sth = $dbh->prepare($query); - $sth->execute || $form->dberror($query); + $sth->execute($form->{type}) || $form->dberror($query . " ($form->{type})"); - while (my $ref = $sth->fetchrow_hashref(NAME_lc)) { + $form->{accounts} = []; + while (my $ref = $sth->fetchrow_hashref("NAME_lc")) { push @{ $form->{accounts} }, $ref; } $sth->finish; - $dbh->disconnect; $main::lxdebug->leave_sub(); } @@ -116,32 +70,36 @@ sub get_spoolfiles { my ($self, $myconfig, $form) = @_; - # connect to database - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; - my ($query, $arap); + my ($query, $arap, @values); my $invnumber = "invnumber"; + my $vc = $form->{vc} eq "customer" ? "customer" : "vendor"; + if ($form->{type} eq 'check' || $form->{type} eq 'receipt') { $arap = ($form->{type} eq 'check') ? "ap" : "ar"; my ($accno) = split /--/, $form->{account}; - $query = qq|SELECT a.id, s.spoolfile, vc.name, ac.transdate, a.invnumber, - a.invoice, '$arap' AS module - FROM status s, chart c, $form->{vc} vc, $arap a, acc_trans ac - WHERE s.formname = '$form->{type}' - AND s.chart_id = c.id - AND c.accno = '$accno' - AND s.trans_id = a.id - AND a.$form->{vc}_id = vc.id - AND ac.trans_id = s.trans_id - AND ac.chart_id = c.id - AND NOT ac.fx_transaction|; - } else { + $query = + qq|SELECT a.id, s.spoolfile, vc.name, ac.transdate, a.invnumber, | . + qq| a.invoice, '$arap' AS module | . + qq|FROM status s, chart c, $vc vc, $arap a, acc_trans ac | . + qq|WHERE s.formname = ? | . + qq| AND s.chart_id = c.id | . + qq| AND c.accno = ? | . + qq| AND s.trans_id = a.id | . + qq| AND a.${vc}_id = vc.id | . + qq| AND ac.trans_id = s.trans_id | . + qq| AND ac.chart_id = c.id | . + qq| AND NOT ac.fx_transaction|; + @values = ($form->{type}, $accno); + } else { $arap = "ar"; my $invoice = "a.invoice"; + my $quonumber = "a.quonumber"; if ($form->{type} =~ /_(order|quotation)$/) { $invnumber = "ordnumber"; @@ -149,57 +107,76 @@ sub get_spoolfiles { $invoice = '0'; } - $query = qq|SELECT a.id, a.$invnumber AS invnumber, a.ordnumber, - a.quonumber, a.transdate, $invoice AS invoice, - '$arap' AS module, vc.name, s.spoolfile - FROM $arap a, $form->{vc} vc, status s - WHERE s.trans_id = a.id - AND s.spoolfile IS NOT NULL - AND s.formname = '$form->{type}' - AND a.$form->{vc}_id = vc.id|; - } + if ($form->{type} eq 'packing_list') { + $invnumber = "donumber"; + $arap = "delivery_orders"; + $invoice = '0'; + $quonumber = '0'; + } - if ($form->{"$form->{vc}_id"}) { - $query .= qq| AND a.$form->{vc}_id = $form->{"$form->{vc}_id"}|; - } else { - if ($form->{ $form->{vc} }) { - my $name = $form->like(lc $form->{ $form->{vc} }); - $query .= " AND lower(vc.name) LIKE '$name'"; + $query = + qq|SELECT a.id, a.$invnumber AS invnumber, a.ordnumber, $quonumber, | . + qq| a.transdate, $invoice AS invoice, '$arap' AS module, vc.name, | . + qq| s.spoolfile | . + qq|FROM $arap a, ${vc} vc, status s | . + qq|WHERE s.trans_id = a.id | . + qq| AND s.spoolfile IS NOT NULL | . + ($form->{type} eq 'packing_list' + ? qq| AND s.formname IN (?, ?) | + : qq| AND s.formname = ? |) . + qq| AND a.${vc}_id = vc.id|; + @values = ($form->{type}); + + if ($form->{type} eq 'packing_list') { + @values = qw(sales_delivery_order purchase_delivery_order); } } - if ($form->{invnumber}) { - my $number = $form->like(lc $form->{invnumber}); - $query .= " AND lower(a.invnumber) LIKE '$number'"; - } - if ($form->{ordnumber}) { - my $ordnumber = $form->like(lc $form->{ordnumber}); - $query .= " AND lower(a.ordnumber) LIKE '$ordnumber'"; + + if ($form->{"${vc}_id"}) { + $query .= qq| AND a.${vc}_id = ?|; + push(@values, conv_i($form->{"${vc}_id"})); + } elsif ($form->{ $vc }) { + $query .= " AND vc.name ILIKE ?"; + push(@values, like($form->{ $vc })); } - if ($form->{quonumber}) { - my $quonumber = $form->like(lc $form->{quonumber}); - $query .= " AND lower(a.quonumber) LIKE '$quonumber'"; + foreach my $column (qw(invnumber ordnumber quonumber donumber)) { + if ($form->{$column}) { + $query .= " AND a.$column ILIKE ?"; + push(@values, like($form->{$column})); + } } - if ($form->{type} =~ /(invoice|sales_order|sales_quotation|packing_list|puchase_order|request_quotation)$/) { - $query .= " AND a.transdate >= '$form->{transdatefrom}'" if $form->{transdatefrom}; - $query .= " AND a.transdate <= '$form->{transdateto}'" if $form->{transdateto}; + if ($form->{type} =~ /(invoice|sales_order|sales_quotation|purchase_order|request_quotation|packing_list)$/) { + if ($form->{transdatefrom}) { + $query .= " AND a.transdate >= ?"; + push(@values, $form->{transdatefrom}); + } + if ($form->{transdateto}) { + $query .= " AND a.transdate <= ?"; + push(@values, $form->{transdateto}); + } } - my @a = (transdate, $invnumber, name); + my @a = ("transdate", $invnumber, "name"); my $sortorder = join ', ', $form->sort_columns(@a); - $sortorder = $form->{sort} if $form->{sort}; - $query .= " ORDER by $sortorder"; + if (grep({ $_ eq $form->{sort} } + qw(transdate invnumber ordnumber quonumber donumber name))) { + $sortorder = $form->{sort}; + } + + $query .= " ORDER BY $sortorder"; my $sth = $dbh->prepare($query); - $sth->execute || $form->dberror($query); + $sth->execute(@values) || + $form->dberror($query . " (" . join(", ", @values) . ")"); - while (my $ref = $sth->fetchrow_hashref(NAME_lc)) { + $form->{SPOOL} = []; + while (my $ref = $sth->fetchrow_hashref("NAME_lc")) { push @{ $form->{SPOOL} }, $ref; } $sth->finish; - $dbh->disconnect; $main::lxdebug->leave_sub(); } @@ -207,68 +184,65 @@ sub get_spoolfiles { sub delete_spool { $main::lxdebug->enter_sub(); - my ($self, $myconfig, $form, $spool) = @_; + my ($self, $myconfig, $form) = @_; - # connect to database, turn AutoCommit off - my $dbh = $form->dbconnect_noauto($myconfig); + my $spool = $::lx_office_conf{paths}->{spool}; - my $query; + SL::DB->client->with_transaction(sub { + my $dbh = SL::DB->client->dbh; - if ($form->{type} =~ /(check|receipt)/) { - $query = qq|DELETE FROM status - WHERE spoolfile = ?|; - } else { - $query = qq|UPDATE status SET - spoolfile = NULL, - printed = '1' - WHERE spoolfile = ?|; - } - my $sth = $dbh->prepare($query) || $form->dberror($query); + my $query; - foreach my $i (1 .. $form->{rowcount}) { - if ($form->{"checked_$i"}) { - $sth->execute($form->{"spoolfile_$i"}) || $form->dberror($query); - $sth->finish; + if ($form->{type} =~ /(check|receipt)/) { + $query = qq|DELETE FROM status WHERE spoolfile = ?|; + } else { + $query = + qq|UPDATE status SET spoolfile = NULL, printed = '1' | . + qq|WHERE spoolfile = ?|; } - } + my $sth = $dbh->prepare($query) || $form->dberror($query); - # commit - my $rc = $dbh->commit; - $dbh->disconnect; + foreach my $i (1 .. $form->{rowcount}) { + if ($form->{"checked_$i"}) { + $sth->execute($form->{"spoolfile_$i"}) || $form->dberror($query); + $sth->finish; + } + } - if ($rc) { foreach my $i (1 .. $form->{rowcount}) { - $_ = qq|$spool/$form->{"spoolfile_$i"}|; if ($form->{"checked_$i"}) { - unlink; + unlink(qq|$spool/$form->{"spoolfile_$i"}|); } } - } + 1; + }) or do { die SL::DB->client->error }; $main::lxdebug->leave_sub(); - - return $rc; + return 1; } sub print_spool { $main::lxdebug->enter_sub(); - my ($self, $myconfig, $form, $spool) = @_; + my ($self, $myconfig, $form, $output) = @_; + + my $spool = $::lx_office_conf{paths}->{spool}; # connect to database - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; - my $query = qq|UPDATE status SET - printed = '1' - WHERE formname = '$form->{type}' - AND spoolfile = ?|; + my $query = + qq|UPDATE status SET printed = '1' | . + qq|WHERE formname = ? AND spoolfile = ?|; my $sth = $dbh->prepare($query) || $form->dberror($query); foreach my $i (1 .. $form->{rowcount}) { if ($form->{"checked_$i"}) { - open(OUT, $form->{OUT}) or $form->error("$form->{OUT} : $!"); + # $output is safe ( = does not come directly from the browser). + open(OUT, $output) or $form->error("$output : $!"); - $spoolfile = qq|$spool/$form->{"spoolfile_$i"}|; + $form->{"spoolfile_$i"} =~ s|.*/||; + my $spoolfile = qq|$spool/$form->{"spoolfile_$i"}|; # send file to printer open(IN, $spoolfile) or $form->error("$spoolfile : $!"); @@ -279,16 +253,14 @@ sub print_spool { close(IN); close(OUT); - $sth->execute($form->{"spoolfile_$i"}) || $form->dberror($query); + $sth->execute($form->{type}, $form->{"spoolfile_$i"}) || + $form->dberror($query . " ($form->{type}, " . $form->{"spoolfile_$i"} . ")"); $sth->finish; } } - $dbh->disconnect; - $main::lxdebug->leave_sub(); } 1; -