fix prorates & recurring fees with recur_Common-using packages, RT#11993
[freeside.git] / FS / FS / part_pkg / flat.pm
1 package FS::part_pkg::flat;
2
3 use strict;
4 use base qw( FS::part_pkg 
5              FS::part_pkg::prorate_Mixin
6              FS::part_pkg::discount_Mixin
7            );
8 use vars qw( %info %usage_recharge_fields @usage_recharge_fieldorder );
9 use Tie::IxHash;
10 use List::Util qw(min); # max);
11 #use FS::Record qw(qsearch);
12 use FS::UI::bytecount;
13 use FS::Conf;
14
15 tie my %temporalities, 'Tie::IxHash',
16   'upcoming'  => "Upcoming (future)",
17   'preceding' => "Preceding (past)",
18 ;
19
20 tie my %contract_years, 'Tie::IxHash', (
21   '' => '(none)',
22   map { $_*12 => $_ } (1..5),
23 );
24
25 %info = (
26   'name' => 'Flat rate (anniversary billing)',
27   'shortname' => 'Anniversary',
28   'inherit_fields' => [ 'usage_Mixin', 'global_Mixin' ],
29   'fields' => {
30     #false laziness w/voip_cdr.pm
31     'recur_temporality' => { 'name' => 'Charge recurring fee for period',
32                              'type' => 'select',
33                              'select_options' => \%temporalities,
34                            },
35
36     #used in cust_pkg.pm so could add to any price plan
37     'expire_months' => { 'name' => 'Auto-add an expiration date this number of months out',
38                        },
39     'adjourn_months'=> { 'name' => 'Auto-add a suspension date this number of months out',
40                        },
41     'contract_end_months'=> { 
42                         'name' => 'Auto-add a contract end date this number of years out',
43                         'type' => 'select',
44                         'select_options' => \%contract_years,
45                       },
46     #used in cust_pkg.pm so could add to any price plan where it made sense
47     'start_1st'     => { 'name' => 'Auto-add a start date to the 1st, ignoring the current month.',
48                          'type' => 'checkbox',
49                        },
50     'sync_bill_date' => { 'name' => 'Prorate first month to synchronize '.
51                                     'with the customer\'s other packages',
52                           'type' => 'checkbox',
53                         },
54     'suspend_bill' => { 'name' => 'Continue recurring billing while suspended',
55                         'type' => 'checkbox',
56                       },
57     'unsuspend_adjust_bill' => 
58                         { 'name' => 'Adjust next bill date forward when '.
59                                     'unsuspending',
60                           'type' => 'checkbox',
61                         },
62
63     'externalid' => { 'name'   => 'Optional External ID',
64                       'default' => '',
65                     },
66   },
67   'fieldorder' => [ qw( recur_temporality 
68                         expire_months adjourn_months
69                         contract_end_months
70                         start_1st sync_bill_date
71                         suspend_bill unsuspend_adjust_bill
72                         externalid ),
73                   ],
74   'weight' => 10,
75 );
76
77 sub price_info {
78     my $self = shift;
79     my $conf = new FS::Conf;
80     my $money_char = $conf->config('money_char') || '$';
81     my $setup = $self->option('setup_fee') || 0;
82     my $recur = $self->option('recur_fee', 1) || 0;
83     my $str = '';
84     $str = $money_char . $setup . ' one-time' if $setup;
85     $str .= ', ' if ($setup && $recur);
86     $str .= $money_char . $recur . ' recurring ' if $recur;
87     $str;
88 }
89
90 sub calc_setup {
91   my($self, $cust_pkg, $sdate, $details ) = @_;
92
93   my $i = 0;
94   my $count = $self->option( 'additional_count', 'quiet' ) || 0;
95   while ($i < $count) {
96     push @$details, $self->option( 'additional_info' . $i++ );
97   }
98
99   my $quantity = $cust_pkg->quantity || 1;
100
101   sprintf("%.2f", $quantity * $self->unit_setup($cust_pkg, $sdate, $details) );
102 }
103
104 sub unit_setup {
105   my($self, $cust_pkg, $sdate, $details ) = @_;
106
107   $self->option('setup_fee') || 0;
108 }
109
110 sub calc_recur {
111   my $self = shift;
112   my($cust_pkg, $sdate, $details, $param ) = @_;
113
114   #my $last_bill = $cust_pkg->last_bill;
115   my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
116
117   return 0
118     if $self->option('recur_temporality', 1) eq 'preceding' && $last_bill == 0;
119
120   my $charge = $self->base_recur($cust_pkg, $sdate);
121   if ( $self->option('sync_bill_date',1) ) {
122     my $next_bill = $cust_pkg->cust_main->next_bill_date;
123     if ( defined($next_bill) ) {
124       my $cutoff_day = (localtime($next_bill))[3];
125       $charge = $self->calc_prorate(@_, $cutoff_day);
126     }
127   }
128   elsif ( $param->{freq_override} ) {
129     # XXX not sure if this should be mutually exclusive with sync_bill_date.
130     # Given the very specific problem that freq_override is meant to 'solve',
131     # it probably should.
132     $charge *= $param->{freq_override} if $param->{freq_override};
133   }
134
135   my $discount = $self->calc_discount($cust_pkg, $sdate, $details, $param);
136   return sprintf('%.2f', $charge - $discount);
137 }
138
139 sub base_recur {
140   my($self, $cust_pkg, $sdate) = @_;
141   $self->option('recur_fee', 1) || 0;
142 }
143
144 sub base_recur_permonth {
145   my($self, $cust_pkg) = @_;
146
147   return 0 unless $self->freq =~ /^\d+$/ && $self->freq > 0;
148
149   sprintf('%.2f', $self->base_recur($cust_pkg) / $self->freq );
150 }
151
152 sub calc_remain {
153   my ($self, $cust_pkg, %options) = @_;
154
155   my $time;
156   if ($options{'time'}) {
157     $time = $options{'time'};
158   } else {
159     $time = time;
160   }
161
162   my $next_bill = $cust_pkg->getfield('bill') || 0;
163
164   return 0 if    ! $self->base_recur($cust_pkg, \$time)
165               || ! $next_bill
166               || $next_bill < $time;
167
168   my %sec = (
169     'h' =>    3600, # 60 * 60
170     'd' =>   86400, # 60 * 60 * 24
171     'w' =>  604800, # 60 * 60 * 24 * 7
172     'm' => 2629744, # 60 * 60 * 24 * 365.2422 / 12 
173   );
174
175   $self->freq =~ /^(\d+)([hdwm]?)$/
176     or die 'unparsable frequency: '. $self->freq;
177   my $freq_sec = $1 * $sec{$2||'m'};
178   return 0 unless $freq_sec;
179
180   sprintf("%.2f", $self->base_recur($cust_pkg, \$time) * ( $next_bill - $time ) / $freq_sec );
181
182 }
183
184 sub is_free_options {
185   qw( setup_fee recur_fee );
186 }
187
188 sub is_prepaid { 0; } #no, we're postpaid
189
190 #XXX discounts only on recurring fees for now (no setup/one-time or usage)
191 sub can_discount {
192   my $self = shift;
193   $self->freq =~ /^\d+$/ && $self->freq > 0;
194 }
195
196 sub usage_valuehash {
197   my $self = shift;
198   map { $_, $self->option($_) }
199     grep { $self->option($_, 'hush') } 
200     qw(seconds upbytes downbytes totalbytes);
201 }
202
203 sub reset_usage {
204   my($self, $cust_pkg, %opt) = @_;
205   warn "   resetting usage counters" if defined($opt{debug}) && $opt{debug} > 1;
206   my %values = $self->usage_valuehash;
207   if ($self->option('usage_rollover', 1)) {
208     $cust_pkg->recharge(\%values);
209   }else{
210     $cust_pkg->set_usage(\%values, %opt);
211   }
212 }
213
214 1;