fix mixin inheritence preventing prorate_delayed packages from billing, RT#14372
[freeside.git] / FS / FS / part_pkg / prorate_Mixin.pm
1 package FS::part_pkg::prorate_Mixin;
2
3 use strict;
4 use vars qw( %info );
5 use Time::Local qw( timelocal );
6
7 %info = ( 
8   'disabled'  => 1,
9   # define all fields that are referenced in this code
10   'fields' => {
11     'add_full_period' => { 
12                 'name' => 'When prorating first month, also bill for one full '.
13                           'period after that',
14                 'type' => 'checkbox',
15     },
16     'prorate_round_day' => { 
17                 'name' => 'When prorating, round to the nearest full day',
18                 'type' => 'checkbox',
19     },
20     'prorate_defer_bill' => {
21                 'name' => 'When prorating, defer the first bill until the '.
22                           'billing day',
23                 'type' => 'checkbox',
24     },
25   },
26   'fieldorder' => [ qw(prorate_defer_bill prorate_round_day add_full_period) ],
27 );
28
29 sub fieldorder {
30   @{ $info{'fieldorder'} }
31 }
32
33 =head1 NAME
34
35 FS::part_pkg::prorate_Mixin - Mixin class for part_pkg:: classes that 
36 need to prorate partial months
37
38 =head1 SYNOPSIS
39
40 package FS::part_pkg::...;
41 use base qw( FS::part_pkg::prorate_Mixin );
42
43 sub calc_recur {
44   ...
45   if( conditions that trigger prorate ) {
46     # sets $$sdate and $param->{'months'}, returns the prorated charge
47     $charges = $self->calc_prorate($cust_pkg, $sdate, $param, $cutoff_day);
48   } 
49   ...
50 }
51
52 =head METHODS
53
54 =item calc_prorate CUST_PKG SDATE DETAILS PARAM CUTOFF_DAY
55
56 Takes all the arguments of calc_recur.  Calculates a prorated charge from 
57 the $sdate to the cutoff day for this package definition, and sets the $sdate 
58 and $param->{months} accordingly.  base_recur() will be called to determine 
59 the base price per billing cycle.
60
61 Options:
62 - add_full_period: Bill for the time up to the prorate day plus one full
63 billing period after that.
64 - prorate_round_day: Round the current time to the nearest full day, 
65 instead of using the exact time.
66 - prorate_defer_bill: Don't bill the prorate interval until the prorate 
67 day arrives.
68
69 =cut
70
71 sub calc_prorate {
72   my ($self, $cust_pkg, $sdate, $details, $param, $cutoff_day) = @_;
73   die "no cutoff_day" unless $cutoff_day;
74   die "can't prorate non-monthly package\n" if $self->freq =~ /\D/;
75
76   my $charge = $self->base_recur($cust_pkg, $sdate) || 0;
77
78     my $mnow = $$sdate;
79
80     # if this is the first bill but the bill date has been set
81     # (by prorate_defer_bill), calculate from the setup date,
82     # and append the setup fee to @$details.
83     if ( $self->option('prorate_defer_bill',1)
84         and ! $cust_pkg->getfield('last_bill') 
85         and $cust_pkg->setup ) {
86       #warn "[calc_prorate] #".$cust_pkg->pkgnum.": running deferred setup\n";
87       $param->{'setup_fee'} = $self->calc_setup($cust_pkg, $$sdate, $details);
88       $mnow = $cust_pkg->setup;
89     }
90
91     my ($mend, $mstart);
92     ($mnow, $mend, $mstart) = $self->_endpoints($mnow, $cutoff_day);
93
94     # next bill date will be figured as $$sdate + one period
95     $$sdate = $mstart;
96
97     my $permonth = $charge / $self->freq;
98     my $months = ( ( $self->freq - 1 ) + ($mend-$mnow) / ($mend-$mstart) );
99
100     # add a full period if currently billing for a partial period
101     if ( ( $self->option('add_full_period',1) 
102         or $self->option('prorate_defer_bill',1) ) # necessary
103         and $months < $self->freq ) {
104       $months += $self->freq;
105       $$sdate = $self->add_freq($mstart);
106     }
107
108     $param->{'months'} = $months;
109     $charge = sprintf('%.2f', $permonth * $months);
110
111   return $charge;
112 }
113
114 =item prorate_setup CUST_PKG SDATE
115
116 Set up the package.  This only has an effect if prorate_defer_bill is 
117 set, in which case it postpones the next bill to the cutoff day.
118
119 =cut
120
121 sub prorate_setup {
122   my $self = shift;
123   my ($cust_pkg, $sdate) = @_;
124   my $cutoff_day = $self->cutoff_day($cust_pkg);
125   if ( ! $cust_pkg->bill
126       and $self->option('prorate_defer_bill',1)
127       and $cutoff_day
128   ) {
129     my ($mnow, $mend, $mstart) = $self->_endpoints($sdate, $cutoff_day);
130     # if today is the cutoff day, set the next bill to right now instead 
131     # of waiting a month.
132     if ( $mnow - $mstart < 86400 ) {
133       $cust_pkg->bill($mnow);
134     }
135     else {
136       $cust_pkg->bill($mend);
137     }
138     return 1;
139   }
140   return 0;
141 }
142
143 =item _endpoints TIME CUTOFF_DAY
144
145 Given a current time and a day of the month to prorate to, return three 
146 times: the start of the prorate interval (usually the current time), the
147 end of the prorate interval (i.e. the cutoff date), and the time one month 
148 before the end of the prorate interval.
149
150 =cut
151
152 sub _endpoints {
153   my ($self, $mnow, $cutoff_day) = @_;
154
155   # only works for freq >= 1 month; probably can't be fixed
156   my ($sec, $min, $hour, $mday, $mon, $year) = (localtime($mnow))[0..5];
157   if( $self->option('prorate_round_day',1) ) {
158     # If the time is 12:00-23:59, move to the next day by adding 18 
159     # hours to $mnow.  Because of DST this can end up from 05:00 to 18:59
160     # but it's always within the next day.
161     $mnow += 64800 if $hour >= 12;
162     # Get the new day, month, and year.
163     ($mday,$mon,$year) = (localtime($mnow))[3..5];
164     # Then set $mnow to midnight on that day.
165     $mnow = timelocal(0,0,0,$mday,$mon,$year);
166   }
167   my $mend;
168   my $mstart;
169   # if cutoff day > 28, force it to the 1st of next month
170   if ( $cutoff_day > 28 ) {
171     $cutoff_day = 1;
172     # and if we are currently after the 28th, roll the current day 
173     # forward to that day
174     if ( $mday > 28 ) {
175       $mday = 1;
176       #set $mnow = $mend so the amount billed will be zero
177       $mnow = timelocal(0,0,0,1,$mon == 11 ? 0 : $mon + 1,$year+($mon==11));
178     }
179   }
180   if ( $mday >= $cutoff_day ) {
181     $mend = 
182       timelocal(0,0,0,$cutoff_day,$mon == 11 ? 0 : $mon + 1,$year+($mon==11));
183     $mstart =
184       timelocal(0,0,0,$cutoff_day,$mon,$year);
185   }
186   else {
187     $mend = 
188       timelocal(0,0,0,$cutoff_day,$mon,$year);
189     $mstart = 
190       timelocal(0,0,0,$cutoff_day,$mon == 0 ? 11 : $mon - 1,$year-($mon==0));
191   }
192   return ($mnow, $mend, $mstart);
193 }
194
195 1;