380f0b0298079b18ca5f2b3822a889301bdf8556
[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     # or periods up to freq_override if billing for an override interval
102     if ( ($param->{'freq_override'} || 0) > 1 ) {
103       $months += $param->{'freq_override'} - 1;
104     }
105     elsif ( ( $self->option('add_full_period',1) 
106         or $self->option('prorate_defer_bill',1) ) # necessary
107         and $months < $self->freq ) {
108       $months += $self->freq;
109       $$sdate = $self->add_freq($mstart);
110     }
111
112     $param->{'months'} = $months;
113     $charge = sprintf('%.2f', $permonth * $months);
114
115   return $charge;
116 }
117
118 =item prorate_setup CUST_PKG SDATE
119
120 Set up the package.  This only has an effect if prorate_defer_bill is 
121 set, in which case it postpones the next bill to the cutoff day.
122
123 =cut
124
125 sub prorate_setup {
126   my $self = shift;
127   my ($cust_pkg, $sdate) = @_;
128   my $cutoff_day = $self->cutoff_day($cust_pkg);
129   if ( ! $cust_pkg->bill
130       and $self->option('prorate_defer_bill',1)
131       and $cutoff_day
132   ) {
133     my ($mnow, $mend, $mstart) = $self->_endpoints($sdate, $cutoff_day);
134     # if today is the cutoff day, set the next bill to right now instead 
135     # of waiting a month.
136     if ( $mnow - $mstart < 86400 ) {
137       $cust_pkg->bill($mnow);
138     }
139     else {
140       $cust_pkg->bill($mend);
141     }
142     return 1;
143   }
144   return 0;
145 }
146
147 =item _endpoints TIME CUTOFF_DAY
148
149 Given a current time and a day of the month to prorate to, return three 
150 times: the start of the prorate interval (usually the current time), the
151 end of the prorate interval (i.e. the cutoff date), and the time one month 
152 before the end of the prorate interval.
153
154 =cut
155
156 sub _endpoints {
157   my ($self, $mnow, $cutoff_day) = @_;
158
159   # only works for freq >= 1 month; probably can't be fixed
160   my ($sec, $min, $hour, $mday, $mon, $year) = (localtime($mnow))[0..5];
161   if( $self->option('prorate_round_day',1) ) {
162     # If the time is 12:00-23:59, move to the next day by adding 18 
163     # hours to $mnow.  Because of DST this can end up from 05:00 to 18:59
164     # but it's always within the next day.
165     $mnow += 64800 if $hour >= 12;
166     # Get the new day, month, and year.
167     ($mday,$mon,$year) = (localtime($mnow))[3..5];
168     # Then set $mnow to midnight on that day.
169     $mnow = timelocal(0,0,0,$mday,$mon,$year);
170   }
171   my $mend;
172   my $mstart;
173   # if cutoff day > 28, force it to the 1st of next month
174   if ( $cutoff_day > 28 ) {
175     $cutoff_day = 1;
176     # and if we are currently after the 28th, roll the current day 
177     # forward to that day
178     if ( $mday > 28 ) {
179       $mday = 1;
180       #set $mnow = $mend so the amount billed will be zero
181       $mnow = timelocal(0,0,0,1,$mon == 11 ? 0 : $mon + 1,$year+($mon==11));
182     }
183   }
184   if ( $mday >= $cutoff_day ) {
185     $mend = 
186       timelocal(0,0,0,$cutoff_day,$mon == 11 ? 0 : $mon + 1,$year+($mon==11));
187     $mstart =
188       timelocal(0,0,0,$cutoff_day,$mon,$year);
189   }
190   else {
191     $mend = 
192       timelocal(0,0,0,$cutoff_day,$mon,$year);
193     $mstart = 
194       timelocal(0,0,0,$cutoff_day,$mon == 0 ? 11 : $mon - 1,$year-($mon==0));
195   }
196   return ($mnow, $mend, $mstart);
197 }
198
199 1;