[freeside-commits] freeside/FS/FS/part_pkg voip_cdr.pm,1.60,1.61
Jeff Finucane,420,,
jeff at wavetail.420.am
Thu Apr 2 08:46:51 PDT 2009
Update of /home/cvs/cvsroot/freeside/FS/FS/part_pkg
In directory wavetail.420.am:/tmp/cvs-serv11872
Modified Files:
voip_cdr.pm
Log Message:
prorating for the fixed recurring portion of voip
Index: voip_cdr.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_pkg/voip_cdr.pm,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- voip_cdr.pm 2 Apr 2009 02:36:41 -0000 1.60
+++ voip_cdr.pm 2 Apr 2009 15:46:49 -0000 1.61
@@ -12,7 +12,7 @@
use FS::rate_prefix;
use FS::rate_detail;
- at ISA = qw(FS::part_pkg::flat);
+ at ISA = qw(FS::part_pkg::prorate);
$DEBUG = 0;
@@ -55,6 +55,11 @@
'type' => 'checkbox',
},
+ 'cutoff_day' => { 'name' => 'Billing Day (1 - 28) for prorating. Leave'.
+ ' blank to charge full first month instead.',
+ 'default' => '',
+ },
+
'rating_method' => { 'name' => 'Region rating method',
'type' => 'radio',
'options' => \%rating_method,
@@ -175,7 +180,7 @@
},
'fieldorder' => [qw(
setup_fee recur_fee recur_temporality unused_credit
- rating_method ratenum ignore_unrateable
+ cutoff_day rating_method ratenum ignore_unrateable
default_prefix
disable_src
domestic_prefix international_prefix
@@ -200,7 +205,8 @@
#false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
sub calc_recur {
- my($self, $cust_pkg, $sdate, $details, $param ) = @_;
+ my $self = shift;
+ my($cust_pkg, $sdate, $details, $param ) = @_;
#my $last_bill = $cust_pkg->last_bill;
my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
@@ -544,8 +550,13 @@
} #if ( $spool_cdr && length($downstream_cdr) )
- $charges += $self->option('recur_fee')
- if $param->{'increment_next_bill'};
+ if ($param->{'increment_next_bill'}) {
+ if ( $self->option('cutoff_day', 1) ) {
+ $charges += $self->SUPER::calc_recur(@_);
+ } else {
+ $charges += $self->option('recur_fee')
+ }
+ }
$charges;
}
More information about the freeside-commits
mailing list