merging RT 4.0.6
[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 timelocal_nocheck );
6 use Date::Format qw( time2str );
7 use List::Util qw( min );
8
9 %info = ( 
10   'disabled'  => 1,
11   # define all fields that are referenced in this code
12   'fields' => {
13     'add_full_period' => { 
14                 'name' => 'When prorating first month, also bill for one full '.
15                           'period after that',
16                 'type' => 'checkbox',
17     },
18     'prorate_round_day' => { 
19                 'name' => 'When prorating, round to the nearest full day',
20                 'type' => 'checkbox',
21     },
22     'prorate_defer_bill' => {
23                 'name' => 'When prorating, defer the first bill until the '.
24                           'billing day',
25                 'type' => 'checkbox',
26     },
27     'prorate_verbose' => {
28                 'name' => 'Show prorate details on the invoice',
29                 'type' => 'checkbox',
30     },
31   },
32   'fieldorder' => [ qw(prorate_defer_bill prorate_round_day 
33                        add_full_period prorate_verbose) ],
34 );
35
36 sub fieldorder {
37   @{ $info{'fieldorder'} }
38 }
39
40 =head1 NAME
41
42 FS::part_pkg::prorate_Mixin - Mixin class for part_pkg:: classes that 
43 need to prorate partial months
44
45 =head1 SYNOPSIS
46
47 package FS::part_pkg::...;
48 use base qw( FS::part_pkg::prorate_Mixin );
49
50 sub calc_recur {
51   ...
52   if( conditions that trigger prorate ) {
53     # sets $$sdate and $param->{'months'}, returns the prorated charge
54     $charges = $self->calc_prorate($cust_pkg, $sdate, $param, $cutoff_day);
55   } 
56   ...
57 }
58
59 =head METHODS
60
61 =item calc_prorate CUST_PKG SDATE DETAILS PARAM CUTOFF_DAY
62
63 Takes all the arguments of calc_recur.  Calculates a prorated charge from 
64 the $sdate to the cutoff day for this package definition, and sets the $sdate 
65 and $param->{months} accordingly.  base_recur() will be called to determine 
66 the base price per billing cycle.
67
68 Options:
69 - add_full_period: Bill for the time up to the prorate day plus one full
70 billing period after that.
71 - prorate_round_day: Round the current time to the nearest full day, 
72 instead of using the exact time.
73 - prorate_defer_bill: Don't bill the prorate interval until the prorate 
74 day arrives.
75 - prorate_verbose: Generate details to explain the prorate calculations.
76
77 =cut
78
79 sub calc_prorate {
80   my ($self, $cust_pkg, $sdate, $details, $param, @cutoff_days) = @_;
81   die "no cutoff_day" unless @cutoff_days;
82   die "can't prorate non-monthly package\n" if $self->freq =~ /\D/;
83
84   my $money_char = FS::Conf->new->config('money_char') || '$';
85
86   my $charge = $self->base_recur($cust_pkg, $sdate) || 0;
87
88   my $add_period = $self->option('add_full_period',1);
89
90   my $mnow = $$sdate;
91
92   # if this is the first bill but the bill date has been set
93   # (by prorate_defer_bill), calculate from the setup date,
94   # append the setup fee to @$details, and make sure to bill for 
95   # a full period after the bill date.
96   if ( $self->option('prorate_defer_bill',1)
97          && ! $cust_pkg->getfield('last_bill') 
98          && $cust_pkg->setup
99      )
100   {
101     #warn "[calc_prorate] #".$cust_pkg->pkgnum.": running deferred setup\n";
102     $param->{'setup_fee'} = $self->calc_setup($cust_pkg, $$sdate, $details);
103     $mnow = $cust_pkg->setup;
104     $add_period = 1;
105   }
106
107   # if the customer alreqady has a billing day-of-month established,
108   # and it's a valid cutoff day, try to respect it
109   my $next_bill_day;
110   if ( my $next_bill = $cust_pkg->cust_main->next_bill_date ) {
111     $next_bill_day = (localtime($next_bill))[3];
112     if ( grep {$_ == $next_bill_day} @cutoff_days ) {
113       # by removing all other cutoff days from the list
114       @cutoff_days = ($next_bill_day);
115     }
116   }
117
118   my ($mend, $mstart);
119   ($mnow, $mend, $mstart) = $self->_endpoints($mnow, @cutoff_days);
120
121   # next bill date will be figured as $$sdate + one period
122   $$sdate = $mstart;
123
124   my $permonth = $charge / $self->freq;
125   my $months = ( ( $self->freq - 1 ) + ($mend-$mnow) / ($mend-$mstart) );
126
127   if ( $self->option('prorate_verbose',1) 
128       and $months > 0 and $months < $self->freq ) {
129     push @$details, 
130           'Prorated (' . time2str('%b %d', $mnow) .
131             ' - ' . time2str('%b %d', $mend) . '): ' . $money_char . 
132             sprintf('%.2f', $permonth * $months + 0.00000001 );
133   }
134
135   # add a full period if currently billing for a partial period
136   # or periods up to freq_override if billing for an override interval
137   if ( ($param->{'freq_override'} || 0) > 1 ) {
138     $months += $param->{'freq_override'} - 1;
139   } 
140   elsif ( $add_period && $months < $self->freq) {
141
142     if ( $self->option('prorate_verbose',1) ) {
143       # calculate the prorated and add'l period charges
144       push @$details,
145         'First full month: ' . $money_char . 
146           sprintf('%.2f', $permonth);
147     }
148
149     $months += $self->freq;
150     $$sdate = $self->add_freq($mstart);
151   }
152
153   $param->{'months'} = $months;
154                                                   #so 1.005 rounds to 1.01
155   $charge = sprintf('%.2f', $permonth * $months + 0.00000001 );
156
157   return $charge;
158 }
159
160 =item prorate_setup CUST_PKG SDATE
161
162 Set up the package.  This only has an effect if prorate_defer_bill is 
163 set, in which case it postpones the next bill to the cutoff day.
164
165 =cut
166
167 sub prorate_setup {
168   my $self = shift;
169   my ($cust_pkg, $sdate) = @_;
170   my @cutoff_days = $self->cutoff_day($cust_pkg);
171   if ( ! $cust_pkg->bill
172       and $self->option('prorate_defer_bill',1)
173       and @cutoff_days
174   ) {
175     my ($mnow, $mend, $mstart) = $self->_endpoints($sdate, @cutoff_days);
176     # If today is the cutoff day, set the next bill and setup both to 
177     # midnight today, so that the customer will be billed normally for a 
178     # month starting today.
179     if ( $mnow - $mstart < 86400 ) {
180       $cust_pkg->setup($mstart);
181       $cust_pkg->bill($mstart);
182     }
183     else {
184       $cust_pkg->bill($mend);
185     }
186     return 1;
187   }
188   return 0;
189 }
190
191 =item _endpoints TIME CUTOFF_DAY
192
193 Given a current time and a day of the month to prorate to, return three 
194 times: the start of the prorate interval (usually the current time), the
195 end of the prorate interval (i.e. the cutoff date), and the time one month 
196 before the end of the prorate interval.
197
198 =cut
199
200 sub _endpoints {
201   my $self = shift;
202   my $mnow = shift;
203   my @cutoff_days = sort {$a <=> $b} @_;
204
205   # only works for freq >= 1 month; probably can't be fixed
206   my ($sec, $min, $hour, $mday, $mon, $year) = (localtime($mnow))[0..5];
207   if( $self->option('prorate_round_day',1) ) {
208     # If the time is 12:00-23:59, move to the next day by adding 18 
209     # hours to $mnow.  Because of DST this can end up from 05:00 to 18:59
210     # but it's always within the next day.
211     $mnow += 64800 if $hour >= 12;
212     # Get the new day, month, and year.
213     ($mday,$mon,$year) = (localtime($mnow))[3..5];
214     # Then set $mnow to midnight on that day.
215     $mnow = timelocal(0,0,0,$mday,$mon,$year);
216   }
217   my $mend;
218   my $mstart;
219   # select the first cutoff day that's on or after the current day
220   my $cutoff_day = min( grep { $_ >= $mday } @cutoff_days );
221   # if today is after the last cutoff, choose the first one
222   $cutoff_day ||= $cutoff_days[0];
223
224   # then, if today is on or after the selected day, set period to
225   # (cutoff day this month) - (cutoff day next month)
226   if ( $mday >= $cutoff_day ) {
227     $mend = 
228       timelocal_nocheck(0,0,0,$cutoff_day,$mon == 11 ? 0 : $mon + 1,$year+($mon==11));
229     $mstart =
230       timelocal_nocheck(0,0,0,$cutoff_day,$mon,$year);
231   }
232   # otherwise, set period to (cutoff day last month) - (cutoff day this month)
233   else {
234     $mend = 
235       timelocal_nocheck(0,0,0,$cutoff_day,$mon,$year);
236     $mstart = 
237       timelocal_nocheck(0,0,0,$cutoff_day,$mon == 0 ? 11 : $mon - 1,$year-($mon==0));
238   }
239   return ($mnow, $mend, $mstart);
240 }
241
242 1;