summaryrefslogtreecommitdiff
path: root/FS/FS/part_pkg/sesmon_hour.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/part_pkg/sesmon_hour.pm')
-rw-r--r--FS/FS/part_pkg/sesmon_hour.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/FS/FS/part_pkg/sesmon_hour.pm b/FS/FS/part_pkg/sesmon_hour.pm
index acc034b..22ece95 100644
--- a/FS/FS/part_pkg/sesmon_hour.pm
+++ b/FS/FS/part_pkg/sesmon_hour.pm
@@ -14,9 +14,9 @@ use FS::part_pkg::flat;
'setup_fee' => { 'name' => 'Setup fee for this package',
'default' => 0,
},
- 'recur_flat' => { 'name' => 'Base recurring fee for this package',
- 'default' => 0,
- },
+ 'recur_fee' => { 'name' => 'Base recurring fee for this package',
+ 'default' => 0,
+ },
'unused_credit' => { 'name' => 'Credit the customer for the unused portion'.
' of service at cancellation',
'type' => 'checkbox',
@@ -28,9 +28,9 @@ use FS::part_pkg::flat;
'default' => 0,
},
},
- 'fieldorder' => [ 'setup_fee', 'recur_flat', 'unused_credit', 'recur_included_hours', 'recur_hourly_charge' ],
+ 'fieldorder' => [ 'setup_fee', 'recur_fee', 'unused_credit', 'recur_included_hours', 'recur_hourly_charge' ],
#'setup' => 'what.setup_fee.value',
- #'recur' => '\'my $hours = $cust_pkg->seconds_since($cust_pkg->bill || 0) / 3600 - \' + what.recur_included_hours.value + \'; $hours = 0 if $hours < 0; \' + what.recur_flat.value + \' + \' + what.recur_hourly_charge.value + \' * $hours;\'',
+ #'recur' => '\'my $hours = $cust_pkg->seconds_since($cust_pkg->bill || 0) / 3600 - \' + what.recur_included_hours.value + \'; $hours = 0 if $hours < 0; \' + what.recur_fee.value + \' + \' + what.recur_hourly_charge.value + \' * $hours;\'',
'weight' => 80,
);
@@ -41,7 +41,7 @@ sub calc_recur {
$hours -= $self->option('recur_included_hours');
$hours = 0 if $hours < 0;
- $self->option('recur_flat') + $hours * $self->option('recur_hourly_charge');
+ $self->option('recur_fee') + $hours * $self->option('recur_hourly_charge');
}
@@ -51,7 +51,7 @@ sub is_free_options {
sub base_recur {
my($self, $cust_pkg) = @_;
- $self->option('recur_flat');
+ $self->option('recur_fee');
}
1;