X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fsales.pm;h=d1f4731756ec7f996c80e3d77ef851dcba1ab26d;hb=7e89a2aacd07ca6ebe4c5fd2569f3b734e58726a;hp=00f45c0e4320ec693a745632b3bb1fe077d702f8;hpb=d14a91ec4beae6c02225cdfd4fc3acbc3d66981b;p=freeside.git diff --git a/FS/FS/sales.pm b/FS/FS/sales.pm index 00f45c0e4..d1f473175 100644 --- a/FS/FS/sales.pm +++ b/FS/FS/sales.pm @@ -1,10 +1,12 @@ package FS::sales; -use base qw( FS::Agent_Mixin FS::Record ); +use base qw( FS::Commission_Mixin FS::Agent_Mixin FS::Record ); use strict; -use FS::Record qw( qsearchs ); #qsearch qsearchs ); +use FS::Record qw( qsearch qsearchs ); use FS::agent; use FS::cust_main; +use FS::cust_bill_pkg; +use FS::cust_credit; =head1 NAME @@ -129,6 +131,66 @@ sub sales_cust_main { qsearchs( 'cust_main', { 'custnum' => $self->sales_custnum } ); } +=item cust_bill_pkg START END OPTIONS + +Returns the package line items (see L) for which this +sales person could receive commission. + +START and END are an optional date range to limit the results. + +OPTIONS may contain: +- I: if this is a true value, sales of packages that have no +package sales person will be included if this is their customer sales person. +- I: limit to this package classnum. +- I: limit to sales that have no unpaid balance. + +=cut + +sub sales_where { + my $self = shift; + my $salesnum = $self->salesnum; + die "bad salesnum" unless $salesnum =~ /^(\d+)$/; + my %opt = @_; + + my $cmp_salesnum = 'cust_pkg.salesnum'; + if ($opt{cust_main_sales}) { + $cmp_salesnum = 'COALESCE(cust_pkg.salesnum, cust_main.salesnum)'; + } + + my @where = ( "$cmp_salesnum = $salesnum", + "sales_pkg_class.salesnum = $salesnum" + ); + + # sales_pkg_class number-of-months limit, grr + # (we should be able to just check for the cust_event record from the + # commission credit, but the report is supposed to act as a check on that) + # + # Pg-specific, of course + my $setup_date = 'TO_TIMESTAMP( cust_pkg.setup )'; + my $interval = "(sales_pkg_class.commission_duration || ' months')::interval"; + my $charge_date = 'TO_TIMESTAMP( cust_bill._date )'; + push @where, "CASE WHEN sales_pkg_class.commission_duration IS NOT NULL ". + "THEN $charge_date < $setup_date + $interval ". + "ELSE TRUE END"; + + @where; +} + +sub commission_where { + my $self = shift; + 'cust_credit.commission_salesnum = ' . $self->salesnum; +} + +# slightly modify it +sub cust_bill_pkg_search { + my $self = shift; + my $search = $self->SUPER::cust_bill_pkg_search(@_); + $search->{addl_from} .= ' + JOIN sales_pkg_class ON( COALESCE(sales_pkg_class.classnum, 0) = COALESCE(part_pkg.classnum, 0) )'; + + return $search; +} + =back =head1 BUGS