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

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

sub description { 'Invoice age'; }

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

sub option_fields {
  (
    'age' => { label=>'Age', type=>'freq', },
  );
}

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

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

  $cust_bill->_date <= $age;

}

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

  my $age  = $class->condition_sql_option_age_from('age', $opt{'time'} );

  "cust_bill._date <= $age";
}

sub order_sql {
  shift->condition_sql_option_age('age');
}

sub order_sql_weight {
  0;
}

1;