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

use strict;

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

sub description {
  'Batch payment declined';
}

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

#sub option_fields {
#  (
#    'field'         => 'description',
#
#    'another_field' => { 'label'=>'Amount', 'type'=>'money', },
#
#    'third_field'   => { 'label'         => 'Types',
#                         'type'          => 'checkbox-multiple',
#                         'options'       => [ 'h', 's' ],
#                         'option_labels' => { 'h' => 'Happy',
#                                              's' => 'Sad',
#                                            },
#  );
#}

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

  #my $cust_main = $self->cust_main($object);
  #my $value_of_field = $self->option('field');
  #my $time = $opt{'time'}; #use this instead of time or $^T

  $cust_pay_batch->status =~ /Declined/i;

}

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

1;