summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Condition/agent_type.pm
blob: 54c893260724911a0ad30e835a3109c20d84adf0 (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
package FS::part_event::Condition::agent_type;

use strict;

use base qw( FS::part_event::Condition );

# see the FS::part_event::Condition manpage for full documentation on each
# of the required and optional methods.

sub description {
  'Agent Type';
}

sub option_fields {
  (
    'typenum'   => { label         => 'Agent Type',
                     type          => 'select-agent_type',
                     disable_empty => 1,
                   },
  );
}

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

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

  my $typenum = $self->option('typenum');

  $cust_main->agent->typenum == $typenum;

}

#sub condition_sql {
#  my( $self, $table ) = @_;
#
#  'true';
#}

1;