summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Condition/cust_payments_pkg.pm
blob: d6c493bd0f3086774d627abe4712199a8465772a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package FS::part_event::Condition::cust_payments_pkg;

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

sub description { 'Customer total payments (multiplier of package)'; }

sub eventtable_hashref {
  { 'cust_pkg' => 1 };
}

sub option_fields {
  (
    'over_times' => { 'label'      => 'Customer total payments as least',
                      'type'       => 'text',
                      'value'      => '1', #default
                    },
    'what' => { 'label'   => 'Times',
                'type'    => 'select',
                #also add some way to specify in the package def, no?
                'options' => [ qw( base_recur_permonth ) ],
                'labels'  => { 'base_recur_permonth' => 'Base monthly fee', },
              },
  );
}

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

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

  my $part_pkg = $cust_pkg->part_pkg;

  my $over_times = $self->option('over_times');
  $over_times = 0 unless length($over_times);

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

  #false laziness w/Condition/cust_payments_pkg.pm
  if ( $what eq 'base_recur_permonth' ) { #huh.  yuck.
    if ( $part_pkg->freq !~ /^\d+$/ ) {
      die 'WARNING: Not crediting customer '. $cust_main->referral_custnum.
          ' for package '. $cust_pkg->pkgnum.
          ' ( customer '. $cust_pkg->custnum. ')'.
          ' - Referral credits not (yet) available for '.
          ' packages with '. $part_pkg->freq_pretty. ' frequency';
    }
  }

  $cust_main->total_paid >= $over_times * $part_pkg->$what($cust_pkg);

}

#XXX add for efficiency.  could use cust_main::total_paid_sql
#use FS::cust_main;
#sub condition_sql {
#  my( $class, $table ) = @_;
#
#  my $over = $class->condition_sql_option('balance');
#
#  my $balance_sql = FS::cust_main->balance_sql;
#
#  "$balance_sql > $over";
#
#}

1;