X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg%2Fprorate.pm;h=a5f9ef6b6e83fa23fe25c9b00a9dbc755ccbe5a1;hb=d62206a94d9d49ef96640e0a8ec492679f8345e9;hp=f6f2abd6f3e91c3cc70f54256c0b8e8a7301f6fa;hpb=581d4b07156ba59e7445235305872c74aa97c6d9;p=freeside.git diff --git a/FS/FS/part_pkg/prorate.pm b/FS/FS/part_pkg/prorate.pm index f6f2abd6f..a5f9ef6b6 100644 --- a/FS/FS/part_pkg/prorate.pm +++ b/FS/FS/part_pkg/prorate.pm @@ -24,28 +24,40 @@ use FS::part_pkg::flat; 'type' => 'checkbox', }, 'prorate_round_day'=> { - 'name' => 'When prorating first month, round to '. - 'the nearest full day', + 'name' => 'Round the prorated period to the nearest '. + 'full day', 'type' => 'checkbox', }, 'prorate_defer_bill'=> { '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, ); -sub cutoff_day { +sub calc_recur { my $self = shift; - $self->option('cutoff_day', 1) || 1; + my $cust_pkg = $_[0]; + + my $charge = $self->calc_prorate(@_, $self->cutoff_day($cust_pkg)); + my $discount = $self->calc_discount(@_); + + sprintf( '%.2f', ($cust_pkg->quantity || 1) * ($charge - $discount) ); + } -sub calc_recur { - my $self = shift; - return $self->calc_prorate(@_) - $self->calc_discount(@_); +sub cutoff_day { + my( $self, $cust_pkg ) = @_; + my $prorate_day = $cust_pkg->cust_main->prorate_day; + $prorate_day ? ( $prorate_day ) + : split(/\s*,\s*/, $self->option('cutoff_day', 1) || '1'); } 1;