X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FCondition%2Fhas_referral_pkgpart.pm;h=4c3681e26fd1a3a127362ffc29d04088ad669112;hb=f25731325e3f80699074032165cd1bd0a5d6ccba;hp=7062f6c2e637ff3096b3b12ed0f3ed5d9a5e7059;hpb=559ec892b6d4eea4c07ca5ecc0b3335e3eb13ba1;p=freeside.git diff --git a/FS/FS/part_event/Condition/has_referral_pkgpart.pm b/FS/FS/part_event/Condition/has_referral_pkgpart.pm index 7062f6c2e..4c3681e26 100644 --- a/FS/FS/part_event/Condition/has_referral_pkgpart.pm +++ b/FS/FS/part_event/Condition/has_referral_pkgpart.pm @@ -13,10 +13,13 @@ sub option_fields { 'if_pkgpart' => { 'label' => 'Only packages: ', 'type' => 'select-part_pkg', 'multiple' => 1, + 'toggle_disabled' => 1, }, ); } +#lots of falze laziness w/has_pkgpart.. + sub condition { my($self, $object, %opt) = @_; @@ -26,14 +29,23 @@ sub condition { my $if_pkgpart = $self->option('if_pkgpart') || {}; grep $if_pkgpart->{ $_->pkgpart }, - $cust_main->referral_custnum_cust_main->ncancelled_pkgs; + $cust_main->referral_custnum_cust_main->ncancelled_pkgs( 'skip_label_sort'=> 1); #maybe billing_pkgs } -#XXX -#sub condition_sql { -# -#} +sub condition_sql { + my( $self, $table ) = @_; + + 'ARRAY'. $self->condition_sql_option_option_integer('if_pkgpart'). + ' && '. #overlap (have elements in common) + 'ARRAY( SELECT pkgpart FROM cust_pkg AS has_referral_pkgpart_cust_pkg + WHERE has_referral_pkgpart_cust_pkg.custnum = cust_main.referral_custnum + AND ( has_referral_pkgpart_cust_pkg.cancel IS NULL + OR has_referral_pkgpart_cust_pkg.cancel = 0 + ) + ) + '; +} 1;