[freeside-commits] freeside/FS/FS/part_event/Condition cust_bill_past_due.pm, NONE, 1.1
Mark Wells
mark at wavetail.420.am
Fri Sep 17 21:25:39 PDT 2010
Update of /home/cvs/cvsroot/freeside/FS/FS/part_event/Condition
In directory wavetail.420.am:/tmp/cvs-serv28909/part_event/Condition
Added Files:
cust_bill_past_due.pm
Log Message:
invoice past due event, RT#9931
--- NEW FILE: cust_bill_past_due.pm ---
package FS::part_event::Condition::cust_bill_past_due;
use strict;
use FS::cust_bill;
use Time::Local 'timelocal';
use base qw( FS::part_event::Condition );
sub description {
'Invoice due date has passed';
}
sub eventtable_hashref {
{ 'cust_main' => 0,
'cust_bill' => 1,
'cust_pkg' => 0,
};
}
sub condition {
my($self, $cust_bill, %opt) = @_;
# If the invoice date is 1/1 at noon and the terms are Net 15,
# the due_date will be 1/16 at noon. Past due events will not
# trigger until after the start of 1/17.
my ($sec,$min,$hour,$mday,$mon,$year) = (localtime($opt{'time'}))[0..5];
my $start_of_today = timelocal(0,0,0,$mday,$mon,$year)+1;
($cust_bill->due_date || $cust_bill->_date) < $start_of_today;
}
sub condition_sql {
return '' if $FS::UID::driver_name ne 'Pg';
my( $class, $table, %opt ) = @_;
my ($sec,$min,$hour,$mday,$mon,$year) = (localtime($opt{'time'}))[0..5];
my $start_of_today = timelocal(0,0,0,$mday,$mon,$year)+1;
FS::cust_bill->due_date_sql . " < $start_of_today";
}
1;
More information about the freeside-commits
mailing list