summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-01-31 18:05:02 -0800
committerIvan Kohler <ivan@freeside.biz>2017-01-31 18:05:02 -0800
commit219264fd9a80e8819ce275ac3bd71a685af95e27 (patch)
tree03e5eb7bdcfa451f7f8e7658569c41d6b85c245c
parentf4daf7e8c831fe126dc3fd1d6d0db5ee3b46d602 (diff)
add condition_sql optimization to "Customer has uncancelled specific package(s)" condition, RT#74456
-rw-r--r--FS/FS/part_event/Condition/has_pkgpart.pm20
1 files changed, 15 insertions, 5 deletions
diff --git a/FS/FS/part_event/Condition/has_pkgpart.pm b/FS/FS/part_event/Condition/has_pkgpart.pm
index 5505a99..deeb1b7 100644
--- a/FS/FS/part_event/Condition/has_pkgpart.pm
+++ b/FS/FS/part_event/Condition/has_pkgpart.pm
@@ -27,13 +27,23 @@ sub condition {
my $cust_main = $self->cust_main($object);
my $if_pkgpart = $self->option('if_pkgpart') || {};
- grep $if_pkgpart->{ $_->pkgpart }, $cust_main->ncancelled_pkgs;
+ grep $if_pkgpart->{ $_->pkgpart },
+ $cust_main->ncancelled_pkgs( 'skip_label_sort'=>1 );
}
-#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_pkgpart_cust_pkg
+ WHERE has_pkgpart_cust_pkg.custnum = cust_main.custnum
+ AND ( has_pkgpart_cust_pkg.cancel IS NULL
+ OR has_pkgpart_cust_pkg.cancel = 0
+ )
+ )
+ ';
+}
1;