X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg%2Fflat.pm;h=0049bd778f8bd8b5dde765b0ee28168b9a19f7bb;hb=ace15413d2fe16ac9eeac3e7e292025b60d40d22;hp=78c5764243436083e99320e6284f22b771c80aff;hpb=e774555a6ae69da65e7774c701232fdf9dd052b1;p=freeside.git diff --git a/FS/FS/part_pkg/flat.pm b/FS/FS/part_pkg/flat.pm index 78c576424..0049bd778 100644 --- a/FS/FS/part_pkg/flat.pm +++ b/FS/FS/part_pkg/flat.pm @@ -25,7 +25,7 @@ tie my %contract_years, 'Tie::IxHash', ( %info = ( 'name' => 'Flat rate (anniversary billing)', 'shortname' => 'Anniversary', - 'inherit_fields' => [ 'usage_Mixin', 'global_Mixin' ], + 'inherit_fields' => [ 'prorate_Mixin', 'usage_Mixin', 'global_Mixin' ], 'fields' => { #false laziness w/voip_cdr.pm 'recur_temporality' => { 'name' => 'Charge recurring fee for period', @@ -56,6 +56,13 @@ tie my %contract_years, 'Tie::IxHash', ( 'the customer\'s next bill date', 'type' => 'checkbox', }, + 'prorate_round_day' => { + 'name' => 'When synchronizing, round the prorated '. + 'period to the nearest full day', + 'type' => 'checkbox', + }, + 'add_full_period' => { 'disabled' => 1 }, # doesn't make sense with sync? + 'suspend_bill' => { 'name' => 'Continue recurring billing while suspended', 'type' => 'checkbox', }, @@ -72,7 +79,8 @@ tie my %contract_years, 'Tie::IxHash', ( 'fieldorder' => [ qw( recur_temporality expire_months adjourn_months contract_end_months - start_1st sync_bill_date prorate_defer_bill + start_1st + sync_bill_date prorate_defer_bill prorate_round_day suspend_bill unsuspend_adjust_bill externalid ), ], @@ -93,7 +101,7 @@ sub price_info { } sub calc_setup { - my($self, $cust_pkg, $sdate, $details ) = @_; + my($self, $cust_pkg, $sdate, $details, $param ) = @_; return 0 if $self->prorate_setup($cust_pkg, $sdate); @@ -107,8 +115,12 @@ sub calc_setup { my $charge = $quantity * $self->unit_setup($cust_pkg, $sdate, $details); - my $param = { 'setup_charge' => $charge }; - my $discount = $self->calc_discount($cust_pkg, $sdate, $details, $param); + my $discount = 0; + if ( $charge > 0 ) { + $param->{'setup_charge'} = $charge; + $discount = $self->calc_discount($cust_pkg, $sdate, $details, $param); + delete $param->{'setup_charge'}; + } sprintf('%.2f', $charge - $discount); } @@ -207,6 +219,8 @@ sub is_free_options { sub is_prepaid { 0; } #no, we're postpaid +sub can_start_date { ! shift->option('start_1st', 1) } + #XXX discounts only on recurring fees for now (no setup/one-time or usage) sub can_discount { my $self = shift;