This commit was generated by cvs2svn to compensate for changes in r11022,
[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     'prorate_defer_bill'=> {
32                         'name' => 'Defer the first bill until the billing day',
33                         'type' => 'checkbox',
34                         },
35   },
36   'fieldorder' => [ 'cutoff_day', 'prorate_defer_bill', 'add_full_period', 'prorate_round_day' ],
37   'freq' => 'm',
38   'weight' => 20,
39 );
40
41 sub calc_recur {
42   my $self = shift;
43   return $self->calc_prorate(@_, $self->cutoff_day) - $self->calc_discount(@_);
44 }
45
46 sub cutoff_day {
47   my $self = shift;
48   $self->option('cutoff_day') || 1;
49 }
50
51 1;