X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg%2Fflat.pm;h=c1690f87d26a3af03783c7f09f2d2cbbb71647a0;hb=5fdd19665fb7c0ad425a99d3dbf9ad7e27fbf44a;hp=04f4951c5e6eba82f2c0ced50944237f79a9eff0;hpb=a3083358ecc9b9b7f9294847cbea30652b48d8e8;p=freeside.git diff --git a/FS/FS/part_pkg/flat.pm b/FS/FS/part_pkg/flat.pm index 04f4951c5..c1690f87d 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); @@ -106,7 +114,15 @@ sub calc_setup { my $quantity = $cust_pkg->quantity || 1; my $charge = $quantity * $self->unit_setup($cust_pkg, $sdate, $details); - sprintf('%.2f', $charge); + + 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); } sub unit_setup {