summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2005-10-20 12:30:13 +0000
committerivan <ivan>2005-10-20 12:30:13 +0000
commitcd936cc9dcf297ff3cf8630516078dcb391f510c (patch)
tree41f4c0261a6ea755c70cdfe17e00d4497f375bc3
parent803369ee5939d4b82a1784b392f2264a05acabf7 (diff)
fix credit for remaining service. fuck Date::Manip
-rw-r--r--FS/FS/cust_pkg.pm2
-rw-r--r--FS/FS/part_pkg/flat.pm33
2 files changed, 15 insertions, 20 deletions
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm
index 0b1a291db..d93b6de88 100644
--- a/FS/FS/cust_pkg.pm
+++ b/FS/FS/cust_pkg.pm
@@ -407,7 +407,7 @@ sub cancel {
if ( $remaining_value > 0 ) {
my $error = $self->cust_main->credit(
$remaining_value,
- 'Credit for unused time on'. $self->part_pkg->pkg,
+ 'Credit for unused time on '. $self->part_pkg->pkg,
);
if ($error) {
$dbh->rollback if $oldAutoCommit;
diff --git a/FS/FS/part_pkg/flat.pm b/FS/FS/part_pkg/flat.pm
index f2f3a8d9a..59b625746 100644
--- a/FS/FS/part_pkg/flat.pm
+++ b/FS/FS/part_pkg/flat.pm
@@ -4,7 +4,6 @@ use strict;
use vars qw(@ISA %info);
#use FS::Record qw(qsearch);
use FS::part_pkg;
-use Date::Manip;
@ISA = qw(FS::part_pkg);
@@ -45,33 +44,29 @@ sub base_recur {
sub calc_remain {
my ($self, $cust_pkg) = @_;
- my $time = time;
+ my $time = time; #should be able to pass this in for credit calculation
my $next_bill = $cust_pkg->getfield('bill') || 0;
my $last_bill = $cust_pkg->last_bill || 0;
return 0 if ! $self->base_recur
|| ! $self->option('unused_credit', 1)
|| ! $last_bill
- || ! $next_bill;
+ || ! $next_bill
+ || $next_bill < $time;
- my $now_date = ParseDate("epoch $time");
- my $last_date = ParseDate("epoch $last_bill");
- my $next_date = ParseDate("epoch $next_bill");
- my $err;
- my $delta = DateCalc($now_date,$next_date,\$err, 0);
- my $days_remaining = Delta_Format($delta, 4, "%dh");
+ my %sec = (
+ 'h' => 3600, # 60 * 60
+ 'd' => 86400, # 60 * 60 * 24
+ 'w' => 604800, # 60 * 60 * 24 * 7
+ 'm' => 2629744, # 60 * 60 * 24 * 365.2422 / 12
+ );
- my $frequency = $self->freq;
+ $self->freq =~ /^(\d+)([hdwm]?)$/
+ or die 'unparsable frequency: '. $self->freq;
+ my $freq_sec = $1 * $sec{$2||'m'};
+ return 0 unless $freq_sec;
- # TODO: Remove this after the frequencies are Data::Manip friendly.
- $frequency .= "m" unless $frequency =~ /[wd]$/;
+ sprintf("%.2f", $self->base_recur * ( $next_bill - $time ) / $freq_sec );
- my $freq_delta = ParseDateDelta($frequency);
- my $days = Delta_Format($freq_delta,4,"%dh");
-
- my $recurring= $self->base_recur;
- my $daily = $recurring/$days;
-
- sprintf("%.2f",($daily * $days_remaining));
}
sub is_free_options {