summaryrefslogtreecommitdiff
path: root/FS/FS/part_pkg
diff options
context:
space:
mode:
authormark <mark>2012-02-07 01:35:19 +0000
committermark <mark>2012-02-07 01:35:19 +0000
commit8f3fc38083332407e7ea1ef6c01ea547947c98e7 (patch)
treee3e4d11770c0773f135b9864de8d5d8509bd741d /FS/FS/part_pkg
parent2158e6d923efb1207e3c4cea44eceda9b16d497e (diff)
show prorate details on invoice, #16010
Diffstat (limited to 'FS/FS/part_pkg')
-rw-r--r--FS/FS/part_pkg/prorate.pm6
-rw-r--r--FS/FS/part_pkg/prorate_Mixin.pm27
2 files changed, 31 insertions, 2 deletions
diff --git a/FS/FS/part_pkg/prorate.pm b/FS/FS/part_pkg/prorate.pm
index 320fdb6..f930d41 100644
--- a/FS/FS/part_pkg/prorate.pm
+++ b/FS/FS/part_pkg/prorate.pm
@@ -32,8 +32,12 @@ use FS::part_pkg::flat;
'name' => 'Defer the first bill until the billing day',
'type' => 'checkbox',
},
+ 'prorate_verbose' => {
+ 'name' => 'Show prorate details on the invoice',
+ 'type' => 'checkbox',
+ },
},
- 'fieldorder' => [ 'cutoff_day', 'prorate_defer_bill', 'add_full_period', 'prorate_round_day' ],
+ 'fieldorder' => [ 'cutoff_day', 'prorate_defer_bill', 'add_full_period', 'prorate_round_day', 'prorate_verbose' ],
'freq' => 'm',
'weight' => 20,
);
diff --git a/FS/FS/part_pkg/prorate_Mixin.pm b/FS/FS/part_pkg/prorate_Mixin.pm
index 63b63d7..0f40576 100644
--- a/FS/FS/part_pkg/prorate_Mixin.pm
+++ b/FS/FS/part_pkg/prorate_Mixin.pm
@@ -3,6 +3,7 @@ package FS::part_pkg::prorate_Mixin;
use strict;
use vars qw( %info );
use Time::Local qw( timelocal );
+use Date::Format qw( time2str );
%info = (
'disabled' => 1,
@@ -22,8 +23,13 @@ use Time::Local qw( timelocal );
'billing day',
'type' => 'checkbox',
},
+ 'prorate_verbose' => {
+ 'name' => 'Show prorate details on the invoice',
+ 'type' => 'checkbox',
+ },
},
- 'fieldorder' => [ qw(prorate_defer_bill prorate_round_day add_full_period) ],
+ 'fieldorder' => [ qw(prorate_defer_bill prorate_round_day
+ add_full_period prorate_verbose) ],
);
sub fieldorder {
@@ -65,6 +71,7 @@ billing period after that.
instead of using the exact time.
- prorate_defer_bill: Don't bill the prorate interval until the prorate
day arrives.
+- prorate_verbose: Generate details to explain the prorate calculations.
=cut
@@ -73,6 +80,8 @@ sub calc_prorate {
die "no cutoff_day" unless $cutoff_day;
die "can't prorate non-monthly package\n" if $self->freq =~ /\D/;
+ my $money_char = FS::Conf->new->config('money_char') || '$';
+
my $charge = $self->base_recur($cust_pkg, $sdate) || 0;
my $add_period = $self->option('add_full_period',1);
@@ -103,12 +112,28 @@ sub calc_prorate {
my $permonth = $charge / $self->freq;
my $months = ( ( $self->freq - 1 ) + ($mend-$mnow) / ($mend-$mstart) );
+ if ( $self->option('prorate_verbose',1)
+ and $months > 0 and $months < $self->freq ) {
+ push @$details,
+ 'Prorated (' . time2str('%b %d', $mnow) .
+ ' - ' . time2str('%b %d', $mend) . '): ' . $money_char .
+ sprintf('%.2f', $permonth * $months + 0.00000001 );
+ }
+
# add a full period if currently billing for a partial period
# or periods up to freq_override if billing for an override interval
if ( ($param->{'freq_override'} || 0) > 1 ) {
$months += $param->{'freq_override'} - 1;
}
elsif ( $add_period && $months < $self->freq) {
+
+ if ( $self->option('prorate_verbose',1) ) {
+ # calculate the prorated and add'l period charges
+ push @$details,
+ 'First full month: ' . $money_char .
+ sprintf('%.2f', $permonth);
+ }
+
$months += $self->freq;
$$sdate = $self->add_freq($mstart);
}