X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=FS%2FFS%2Fcust_pay.pm;h=f0d945060bac4276f178c65927968e5f1c6ae187;hb=15f65a0c56cbce6951d9cb4f71119725a2009f79;hp=e2b92982dbc17d46b2fe664eae85a3888c3e0ae9;hpb=6cd87c0d3b5280446301c647fa5f1ec5a593fa3f;p=freeside.git diff --git a/FS/FS/cust_pay.pm b/FS/FS/cust_pay.pm index e2b92982d..f0d945060 100644 --- a/FS/FS/cust_pay.pm +++ b/FS/FS/cust_pay.pm @@ -29,8 +29,9 @@ FS::cust_pay - Object methods for cust_pay objects =head1 DESCRIPTION -An FS::cust_pay object represents a payment. FS::cust_pay inherits from -FS::Record. The following fields are currently supported: +An FS::cust_pay object represents a payment; the transfer of money from a +customer. FS::cust_pay inherits from FS::Record. The following fields are +currently supported: =over 4 @@ -73,26 +74,11 @@ L). sub insert { my $self = shift; - my $error; - - $error = $self->check; + my $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'; - local $SIG{TERM} = 'IGNORE'; - local $SIG{TSTP} = 'IGNORE'; - local $SIG{PIPE} = 'IGNORE'; - - $error = $new_cust_bill->replace($old_cust_bill); - return "Error modifying cust_bill: $error" if $error; $self->SUPER::insert; } @@ -172,7 +158,7 @@ sub check { =head1 VERSION -$Id: cust_pay.pm,v 1.1 1999-08-04 09:03:53 ivan Exp $ +$Id: cust_pay.pm,v 1.3 2001-04-09 23:05:15 ivan Exp $ =head1 BUGS