X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=inline;f=FS%2FFS%2Fcust_event_fee.pm;h=c3c99af67831623577ca0d4ae2bcbe394579a47c;hb=8268e49167b44071b498339265b5f5761cdfeaeb;hp=ad78b0e14b072e6f0ba94b518c2fba8f2440ed45;hpb=e1c6b4af716fecad943bf282b50c0d459b986720;p=freeside.git diff --git a/FS/FS/cust_event_fee.pm b/FS/FS/cust_event_fee.pm index ad78b0e14..c3c99af67 100644 --- a/FS/FS/cust_event_fee.pm +++ b/FS/FS/cust_event_fee.pm @@ -1,10 +1,9 @@ package FS::cust_event_fee; use strict; -use base qw( FS::Record ); +use base qw( FS::Record FS::FeeOrigin_Mixin ); use FS::Record qw( qsearch qsearchs ); use FS::cust_event; -use FS::part_fee; =head1 NAME @@ -29,8 +28,8 @@ FS::cust_event_fee - Object methods for cust_event_fee records An FS::cust_event_fee object links a billing event that charged a fee (an L) to the resulting invoice line item (an -L object). FS::cust_event_fee inherits from FS::Record. -The following fields are currently supported: +L object). FS::cust_event_fee inherits from FS::Record +and FS::FeeOrigin_Mixin. The following fields are currently supported: =over 4 @@ -87,9 +86,6 @@ and replace methods. =cut -# the check method should currently be supplied - FS::Record contains some -# data checking routines - sub check { my $self = shift; @@ -111,18 +107,14 @@ sub check { =over 4 -=item by_cust CUSTNUM[, PARAMS] - -Finds all cust_event_fee records belonging to the customer CUSTNUM. Currently -fee events can be cust_main, cust_pkg, or cust_bill events; this will return -all of them. +=item _by_cust CUSTNUM[, PARAMS] -PARAMS can be additional params to pass to qsearch; this really only works -for 'hashref' and 'order_by'. +See L. This is the implementation for +event-triggered fees. =cut -sub by_cust { +sub _by_cust { my $class = shift; my $custnum = shift or return; my %params = @_; @@ -153,6 +145,15 @@ sub by_cust { table => 'cust_event_fee', addl_from => 'JOIN cust_event USING (eventnum) ' . 'JOIN part_event USING (eventpart) ' . + 'JOIN cust_pay_batch ON (cust_event.tablenum = cust_pay_batch.paybatchnum)', + extra_sql => "$where eventtable = 'cust_pay_batch' ". + "AND cust_pay_batch.custnum = $custnum", + %params + }), + qsearch({ + table => 'cust_event_fee', + addl_from => 'JOIN cust_event USING (eventnum) ' . + 'JOIN part_event USING (eventpart) ' . 'JOIN cust_pkg ON (cust_event.tablenum = cust_pkg.pkgnum)', extra_sql => "$where eventtable = 'cust_pkg' ". "AND cust_pkg.custnum = $custnum", @@ -160,23 +161,52 @@ sub by_cust { }) } -# stubs +=item cust_bill -sub cust_event { +See L. This version simply returns the event +object if the event is an invoice event. + +=cut + +sub cust_bill { my $self = shift; - FS::cust_event->by_key($self->eventnum); + my $object = $self->cust_event->cust_X; + if ( $object->isa('FS::cust_bill') ) { + return $object; + } else { + return ''; + } } -sub part_fee { +=item cust_pkg + +See L. This version simply returns the event +object if the event is a package event. + +=cut + +sub cust_pkg { my $self = shift; - FS::part_fee->by_key($self->feepart); + my $object = $self->cust_event->cust_X; + if ( $object->isa('FS::cust_pkg') ) { + return $object; + } else { + return ''; + } +} + +# stubs - remove in 4.x + +sub cust_event { + my $self = shift; + FS::cust_event->by_key($self->eventnum); } =head1 BUGS =head1 SEE ALSO -L, L, L +L, L, L =cut