summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Condition/has_referral_custnum.pm
blob: 61a8155790d620e74bb10e6a30aea41af306e2b8 (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
45
46
47
48
package FS::part_event::Condition::has_referral_custnum;

use strict;
use FS::cust_main;

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

sub description { 'Customer has a referring customer'; }

sub option_fields {
  (
    'active' => { 'label' => 'Referring customer is active',
                  'type'  => 'checkbox',
                  'value' => 'Y',
                },
  );
}

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

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

  if ( $self->option('active') ) {

    return 0 unless $cust_main->referral_custnum;

    #check for no cust_main for referral_custnum? (deleted?)

    $cust_main->referral_custnum_cust_main->status eq 'active';

  } else {

    $cust_main->referral_custnum; # ? 1 : 0;

  }

}

sub condition_sql {
  #my( $class, $table ) = @_;

  "cust_main.referral_custnum IS NOT NULL";

  #XXX a bit harder to check active status here
}

1;