#23171 Fix contract age condition
authorJeremy Davis <jeremyd@freeside.biz>
Tue, 2 Jul 2013 19:20:50 +0000 (15:20 -0400)
committerJeremy Davis <jeremyd@freeside.biz>
Tue, 2 Jul 2013 19:20:50 +0000 (15:20 -0400)
FS/FS/part_event/Condition/pkg_age.pm

index 24a73e2..de58970 100644 (file)
@@ -57,7 +57,7 @@ sub condition_sql {
   my $field = $class->condition_sql_option('field');
 #amazingly, this is actually faster 
   my $sql = '( CASE';
-  foreach( qw(setup last_bill bill adjourn susp expire cancel) ) {
+  foreach( qw(setup last_bill bill adjourn susp expire cancel contract_end) ) {
     $sql .= " WHEN $field = '$_' THEN (cust_pkg.$_ IS NOT NULL AND cust_pkg.$_ <= $age)";
   }
   $sql .= ' END )';