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

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

sub description { 'Customer balance age'; }

sub option_fields {
  (
    'balance' => { 'label'      => 'Balance over',
                   'type'       => 'money',
                   'value'      => '0.00', #default
                 },
    'age'     => { 'label'      => 'Age',
                   'type'       => 'freq',
                 },
  );
}

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

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

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

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

  $cust_main->balance_date($age) > $over;
}

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

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

  my $balance_sql = FS::cust_main->balance_date_sql( $age );

  "$balance_sql > CAST( $over AS DECIMAL(10,2) )";
}

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

use FS::UID qw( driver_name );

sub order_sql_weight {
  10;
}

1;