X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fcust_bill_pay.pm;h=23f881408d38b8031484278ca8fc4e2ed9622df0;hp=74a8bcdd44ae1b4727d9134b1ce5e21a755bc852;hb=3adb46fccf9f631e188ea5383bd147b340477639;hpb=9509e5bfb7f9331303153cac24d7bfecbe2ea9f1 diff --git a/FS/FS/cust_bill_pay.pm b/FS/FS/cust_bill_pay.pm index 74a8bcdd4..23f881408 100644 --- a/FS/FS/cust_bill_pay.pm +++ b/FS/FS/cust_bill_pay.pm @@ -1,13 +1,9 @@ package FS::cust_bill_pay; +use base qw( FS::cust_main_Mixin FS::cust_bill_ApplicationCommon ); use strict; -use vars qw( @ISA $conf ); -use FS::Record qw( qsearchs ); -use FS::cust_bill_ApplicationCommon; -use FS::cust_bill; -use FS::cust_pay; - -@ISA = qw( FS::cust_bill_ApplicationCommon ); +use vars qw( $conf ); +use FS::UID; #ask FS::UID to run this stuff for us later FS::UID->install_callback( sub { @@ -87,9 +83,9 @@ Deletes this payment application, unless the closed flag for the parent payment sub delete { my $self = shift; return "Can't delete application for closed payment" - if $self->cust_pay->closed =~ /^Y/i; + if $self->cust_pay && $self->cust_pay->closed =~ /^Y/i; return "Can't delete application for closed invoice" - if $self->cust_bill->closed =~ /^Y/i; + if $self->cust_bill && $self->cust_bill->closed =~ /^Y/i; $self->SUPER::delete(@_); } @@ -120,6 +116,7 @@ sub check { || $self->ut_foreign_key('invnum', 'cust_bill', 'invnum' ) || $self->ut_numbern('_date') || $self->ut_money('amount') + || $self->ut_foreign_keyn('pkgnum', 'cust_pkg', 'pkgnum') ; return $error if $error; @@ -140,11 +137,22 @@ sub check { Returns the payment (see L) +=item send_receipt HASHREF | OPTION => VALUE ... + +Sends a payment receipt for the associated payment, against this specific +invoice. If there is an error, returns the error, otherwise returns false. + +See L. + =cut -sub cust_pay { +sub send_receipt { my $self = shift; - qsearchs( 'cust_pay', { 'paynum' => $self->paynum } ); + my $opt = ref($_[0]) ? shift : { @_ }; + $self->cust_pay->send_receipt( + 'cust_bill' => $self->cust_bill, + %$opt, + ); } =back