summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Condition/hasnt_pkg_class_cancelled.pm
blob: 353e6469fd23bdb0b838a9a96d9bb16b00d51318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package FS::part_event::Condition::hasnt_pkg_class_cancelled;
use base qw( FS::part_event::Condition );

use strict;

sub description {
  'Customer does not have canceled package with class';
}

sub eventtable_hashref {
    { 'cust_main' => 1,
      'cust_bill' => 1,
      'cust_pkg'  => 1,
    };
}

#something like this
sub option_fields {
  (
    'pkgclass'  => { 'label'    => 'Package Class',
                     'type'     => 'select-pkg_class',
                     'multiple' => 1,
                   },
    'age'       => { 'label'      => 'Cancellation in last',
                     'type'       => 'freq',
                   },
  );
}

sub condition {
  my( $self, $object, %opt ) = @_;

  my $cust_main = $self->cust_main($object);

  my $age = $self->option_age_from('age', $opt{'time'} );

  #XXX test
  my $hashref = $self->option('pkgclass') || {};
  ! grep { $hashref->{ $_->part_pkg->classnum } && $_->get('cancel') > $age }
    $cust_main->cancelled_pkgs;
}

1;