X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_pay.pm;h=b1c35d76fc5223ebd92a6acaca0150eaa2393150;hb=cdd5aa1d86cd5b266e02bed58570c97c2d7698ba;hp=728981a9bf844f967f8b32fbf9b869817002edc9;hpb=13477c4eb15c3150938a2af8e90f01ad2d83b335;p=freeside.git diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm index 728981a9b..b1c35d76f 100644 --- a/FS/FS/cust_pay.pm +++ b/FS/FS/cust_pay.pm @@ -3,8 +3,9 @@ package FS::cust_pay; use strict; use vars qw( @ISA ); use Business::CreditCard; -use FS::Record qw( qsearchs ); +use FS::Record qw( dbh ); use FS::cust_bill; +use FS::cust_bill_pay; @ISA = qw( FS::Record ); @@ -37,8 +38,6 @@ currently supported: =item paynum - primary key (assigned automatically for new payments) -=item invnum - Invoice (see L) - =item paid - Amount of this payment =item _date - specified as a UNIX timestamp; see L. Also see @@ -66,25 +65,17 @@ sub table { 'cust_pay'; } =item insert -Adds this payment to the databse, and updates the invoice (see -L). +Adds this payment to the database. + +For backwards-compatibility and convenience, if the additional field invnum +is defined, an FS::cust_bill_pay record for the full amount of the payment +will be created. =cut sub insert { my $self = shift; - my $error; - - $error = $self->check; - return $error if $error; - - my $old_cust_bill = qsearchs( 'cust_bill', { 'invnum' => $self->invnum } ); - return "Unknown invnum" unless $old_cust_bill; - my %hash = $old_cust_bill->hash; - $hash{'owed'} = sprintf("%.2f", $hash{owed} - $self->paid ); - my $new_cust_bill = new FS::cust_bill ( \%hash ); - local $SIG{HUP} = 'IGNORE'; local $SIG{INT} = 'IGNORE'; local $SIG{QUIT} = 'IGNORE'; @@ -92,10 +83,37 @@ sub insert { local $SIG{TSTP} = 'IGNORE'; local $SIG{PIPE} = 'IGNORE'; - $error = $new_cust_bill->replace($old_cust_bill); - return "Error modifying cust_bill: $error" if $error; + my $oldAutoCommit = $FS::UID::AutoCommit; + local $FS::UID::AutoCommit = 0; + my $dbh = dbh; + + my $error = $self->check; + return $error if $error; + + $error = $self->SUPER::insert; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + + if ( $self->invnum ) { + my $cust_bill_pay = new FS::cust_bill_pay { + 'invnum' => $self->invnum, + 'paynum' => $self->paynum, + 'amount' => $self->paid, + '_date' => $self->_date, + }; + $error = $cust_bill_pay->insert; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + } + + $dbh->commit or die $dbh->errstr if $oldAutoCommit; + + ''; - $self->SUPER::insert; } =item delete @@ -128,13 +146,11 @@ returns the error, otherwise returns false. Called by the insert method. sub check { my $self = shift; - my $error; - - $error = + my $error = $self->ut_numbern('paynum') - || $self->ut_number('invnum') || $self->ut_money('paid') || $self->ut_numbern('_date') + || $self->ut_textn('paybatch') ; return $error if $error; @@ -162,9 +178,6 @@ sub check { return $error if $error; } - $error = $self->ut_textn('paybatch'); - return $error if $error; - ''; #no error } @@ -173,7 +186,7 @@ sub check { =head1 VERSION -$Id: cust_pay.pm,v 1.2 2001-02-11 17:17:39 ivan Exp $ +$Id: cust_pay.pm,v 1.4 2001-09-01 20:11:07 ivan Exp $ =head1 BUGS @@ -181,7 +194,8 @@ Delete and replace methods. =head1 SEE ALSO -L, L, schema.html from the base documentation. +L, L, L, schema.html from the +base documentation. =cut