part_pkg option inheritance, part 1
[freeside.git] / FS / FS / part_pkg / prorate.pm
1 package FS::part_pkg::prorate;
2
3 use strict;
4 use vars qw(@ISA %info);
5 use Time::Local qw(timelocal);
6 #use FS::Record qw(qsearch qsearchs);
7 use FS::part_pkg::flat;
8
9 @ISA = qw(FS::part_pkg::flat);
10
11 %info = (
12   'name' => 'First partial month pro-rated, then flat-rate (selectable billing day)',
13   'shortname' => 'Prorate (Nth of month billing)',
14   'inherit_fields' => [ 'flat', 'usage_Mixin', 'global_Mixin' ],
15   'fields' => {
16     'recur_temporality' => {'disabled' => 1},
17     'sync_bill_date' => {'disabled' => 1},
18     'cutoff_day' => { 'name' => 'Billing Day (1 - 28)',
19                       'default' => 1,
20                     },
21
22     'add_full_period'=> { 'name' => 'When prorating first month, also bill '.
23                                     'for one full period after that',
24                           'type' => 'checkbox',
25                         },
26     'prorate_round_day'=> {
27                           'name' => 'When prorating first month, round to '.
28                                     'the nearest full day',
29                           'type' => 'checkbox',
30                         },
31   },
32   'fieldorder' => [ 'cutoff_day', 'add_full_period', 'prorate_round_day' ],
33   'freq' => 'm',
34   'weight' => 20,
35 );
36
37 sub calc_recur {
38   my $self = shift;
39   my $cutoff_day = $self->option('cutoff_day') || 1;
40   return $self->calc_prorate(@_, $cutoff_day) - $self->calc_discount(@_);
41 }
42
43 1;