Merge branch '20150325-cust_main-CurrentUser' of https://github.com/fozzmoo/Freeside...
[freeside.git] / FS / FS / TaxEngine / internal.pm
1 package FS::TaxEngine::internal;
2
3 use strict;
4 use base 'FS::TaxEngine';
5 use FS::Record qw(dbh qsearch qsearchs);
6
7 =head1 SUMMARY
8
9 FS::TaxEngine::internal: the classic Freeside "internal tax engine".
10 Uses tax rates and localities defined in L<FS::cust_main_county>.
11
12 =cut
13
14 my %part_pkg_cache;
15
16 sub add_sale {
17   my ($self, $cust_bill_pkg) = @_;
18
19   my $part_item = $cust_bill_pkg->part_X;
20   my $location = $cust_bill_pkg->tax_location;
21   my $custnum = $self->{cust_main}->custnum;
22
23   push @{ $self->{items} }, $cust_bill_pkg;
24
25   my @loc_keys = qw( district city county state country );
26   my %taxhash = map { $_ => $location->get($_) } @loc_keys;
27
28   $taxhash{'taxclass'} = $part_item->taxclass;
29
30   my @taxes = (); # entries are cust_main_county objects
31   my %taxhash_elim = %taxhash;
32   my @elim = qw( district city county state );
33   do {
34
35     #first try a match with taxclass
36     @taxes = qsearch( 'cust_main_county', \%taxhash_elim );
37
38     if ( !scalar(@taxes) && $taxhash_elim{'taxclass'} ) {
39       #then try a match without taxclass
40       my %no_taxclass = %taxhash_elim;
41       $no_taxclass{ 'taxclass' } = '';
42       @taxes = qsearch( 'cust_main_county', \%no_taxclass );
43     }
44
45     $taxhash_elim{ shift(@elim) } = '';
46   } while ( !scalar(@taxes) && scalar(@elim) );
47
48   foreach my $tax (@taxes) {
49     my $taxnum = $tax->taxnum;
50     $self->{taxes}->{$taxnum} ||= [ $tax ];
51     $cust_bill_pkg->set_exemptions( $tax, 'custnum' => $custnum );
52     push @{ $self->{taxes}->{$taxnum} }, $cust_bill_pkg;
53   }
54 }
55
56 sub taxline {
57   my ($self, %opt) = @_;
58   my $tax_object = $opt{tax};
59   my $taxables = $opt{sales};
60   my $taxnum = $tax_object->taxnum;
61   my $exemptions = $self->{exemptions}->{$taxnum} ||= [];
62   
63   my $name = $tax_object->taxname || 'Tax';
64   my $taxable_cents = 0;
65   my $tax_cents = 0;
66
67   my $cust_main = $self->{cust_main};
68   my $custnum   = $cust_main->custnum;
69   my $invoice_time = $self->{invoice_time};
70
71   # set a flag if the customer is tax-exempt
72   my $exempt_cust;
73   my $conf = FS::Conf->new;
74   if ( $conf->exists('cust_class-tax_exempt') ) {
75     my $cust_class = $cust_main->cust_class;
76     $exempt_cust = $cust_class->tax if $cust_class;
77   } else {
78     $exempt_cust = $cust_main->tax;
79   }
80   # set a flag if the customer is exempt from this tax here
81   my $exempt_cust_taxname = $cust_main->tax_exemption($tax_object->taxname)
82     if $tax_object->taxname;
83
84   # Gather any exemptions that are already attached to these cust_bill_pkgs
85   # so that we can deduct them from the customer's monthly limit.
86   my @existing_exemptions = @{ $exemptions };
87   push @existing_exemptions, @{ $_->cust_tax_exempt_pkg }
88     foreach @$taxables;
89
90   my $tax_item = FS::cust_bill_pkg->new({
91       'pkgnum'    => 0,
92       'recur'     => 0,
93       'sdate'     => '',
94       'edate'     => '',
95       'itemdesc'  => $name,
96   });
97   my @tax_location;
98
99   foreach my $cust_bill_pkg (@$taxables) {
100
101     my $cust_pkg  = $cust_bill_pkg->cust_pkg;
102     my $part_pkg  = $cust_bill_pkg->part_pkg;
103     my @new_exemptions;
104     my $taxable_charged = $cust_bill_pkg->setup + $cust_bill_pkg->recur
105       or next; # don't create zero-amount exemptions
106
107     # XXX the following procedure should probably be in cust_bill_pkg
108
109     if ( $exempt_cust ) {
110
111       push @new_exemptions, FS::cust_tax_exempt_pkg->new({
112           amount => $taxable_charged,
113           exempt_cust => 'Y',
114         });
115       $taxable_charged = 0;
116
117     } elsif ( $exempt_cust_taxname ) {
118
119       push @new_exemptions, FS::cust_tax_exempt_pkg->new({
120           amount => $taxable_charged,
121           exempt_cust_taxname => 'Y',
122         });
123       $taxable_charged = 0;
124
125     }
126
127     if ( ($part_pkg->setuptax eq 'Y' or $tax_object->setuptax eq 'Y')
128         and $cust_bill_pkg->setup > 0 and $taxable_charged > 0 ) {
129
130       push @new_exemptions, FS::cust_tax_exempt_pkg->new({
131           amount => $cust_bill_pkg->setup,
132           exempt_setup => 'Y'
133       });
134       $taxable_charged -= $cust_bill_pkg->setup;
135
136     }
137     if ( ($part_pkg->recurtax eq 'Y' or $tax_object->recurtax eq 'Y')
138         and $cust_bill_pkg->recur > 0 and $taxable_charged > 0 ) {
139
140       push @new_exemptions, FS::cust_tax_exempt_pkg->new({
141           amount => $cust_bill_pkg->recur,
142           exempt_recur => 'Y'
143       });
144        $taxable_charged -= $cust_bill_pkg->recur;
145
146     }
147
148     if ( $tax_object->exempt_amount && $tax_object->exempt_amount > 0
149       and $taxable_charged > 0 ) {
150       # If the billing period extends across multiple calendar months, 
151       # there may be several months of exemption available.
152       my $sdate = $cust_bill_pkg->sdate || $invoice_time;
153       my $start_month = (localtime($sdate))[4] + 1;
154       my $start_year  = (localtime($sdate))[5] + 1900;
155       my $edate = $cust_bill_pkg->edate || $invoice_time;
156       my $end_month   = (localtime($edate))[4] + 1;
157       my $end_year    = (localtime($edate))[5] + 1900;
158
159       # If the partial last month + partial first month <= one month,
160       # don't use the exemption in the last month
161       # (unless the last month is also the first month, e.g. one-time
162       # charges)
163       if ( (localtime($sdate))[3] >= (localtime($edate))[3]
164            and ($start_month != $end_month or $start_year != $end_year)
165      ) {
166         $end_month--;
167         if ( $end_month == 0 ) {
168           $end_year--;
169           $end_month = 12;
170         }
171       }
172
173       # number of months of exemption available
174       my $freq = ($end_month - $start_month) +
175                  ($end_year  - $start_year) * 12 +
176                  1;
177
178       # divide equally among all of them
179       my $permonth = sprintf('%.2f', $taxable_charged / $freq);
180
181       #call the whole thing off if this customer has any old
182       #exemption records...
183       my @cust_tax_exempt =
184         qsearch( 'cust_tax_exempt' => { custnum=> $custnum } );
185       if ( @cust_tax_exempt ) {
186         return
187           'this customer still has old-style tax exemption records; '.
188           'run bin/fs-migrate-cust_tax_exempt?';
189       }
190
191       my ($mon, $year) = ($start_month, $start_year);
192       while ($taxable_charged > 0.005 and
193              ($year < $end_year or
194                ($year == $end_year and $mon <= $end_month)
195              )
196       ) {
197
198         # find the sum of the exemption used by this customer, for this tax,
199         # in this month
200         my $sql = "
201           SELECT SUM(amount)
202             FROM cust_tax_exempt_pkg
203               LEFT JOIN cust_bill_pkg USING ( billpkgnum )
204               LEFT JOIN cust_bill     USING ( invnum     )
205             WHERE custnum = ?
206              AND taxnum  = ?
207               AND year    = ?
208               AND month   = ?
209               AND exempt_monthly = 'Y'
210         ";
211         my $sth = dbh->prepare($sql) or
212           return "fatal: can't lookup existing exemption: ". dbh->errstr;
213         $sth->execute(
214           $custnum,
215           $tax_object->taxnum,
216           $year,
217           $mon,
218         ) or
219           return "fatal: can't lookup existing exemption: ". dbh->errstr;
220         my $existing_exemption = $sth->fetchrow_arrayref->[0] || 0;
221
222         # add any exemption we're already using for another line item
223        foreach ( grep { $_->taxnum == $tax_object->taxnum &&
224                          $_->exempt_monthly eq 'Y'   &&
225                          $_->month  == $mon          &&
226                          $_->year   == $year
227                        } @existing_exemptions
228                 )
229         {
230           $existing_exemption += $_->amount;
231         }
232
233         my $remaining_exemption =
234           $tax_object->exempt_amount - $existing_exemption;
235         if ( $remaining_exemption > 0 ) {
236           my $addl = $remaining_exemption > $permonth
237             ? $permonth
238             : $remaining_exemption;
239           $addl = $taxable_charged if $addl > $taxable_charged;
240
241           push @new_exemptions, FS::cust_tax_exempt_pkg->new({
242               amount          => sprintf('%.2f', $addl),
243               exempt_monthly  => 'Y',
244               year            => $year,
245               month           => $mon,
246             });
247           $taxable_charged -= $addl;
248         }
249         # if they're using multiple months of exemption for a multi-month
250         # package, then record the exemptions in separate months
251         $mon++;
252         if ( $mon > 12 ) {
253           $mon -= 12;
254           $year++;
255         }
256
257       }
258     } # if exempt_amount
259
260     $_->taxnum($tax_object->taxnum) foreach @new_exemptions;
261
262     # attach them to the line item
263     push @{ $cust_bill_pkg->cust_tax_exempt_pkg }, @new_exemptions;
264     push @existing_exemptions, @new_exemptions;
265
266     $taxable_charged = sprintf( "%.2f", $taxable_charged);
267     next if $taxable_charged == 0;
268
269     my $this_tax_cents = int($taxable_charged * $tax_object->tax);
270     my $location = FS::cust_bill_pkg_tax_location->new({
271         'taxnum'      => $tax_object->taxnum,
272         'taxtype'     => ref($tax_object),
273         'cents'       => $this_tax_cents,
274         'pkgnum'      => $cust_bill_pkg->pkgnum,
275         'locationnum' => $cust_bill_pkg->cust_pkg->tax_locationnum,
276         'taxable_cust_bill_pkg' => $cust_bill_pkg,
277         'tax_cust_bill_pkg'     => $tax_item,
278     });
279     push @tax_location, $location;
280
281     $taxable_cents += $taxable_charged;
282     $tax_cents += $this_tax_cents;
283   } #foreach $cust_bill_pkg
284
285   # now round and distribute
286   my $extra_cents = sprintf('%.2f', $taxable_cents * $tax_object->tax / 100)
287                             * 100 - $tax_cents;
288   # make sure we have an integer
289   $extra_cents = sprintf('%.0f', $extra_cents);
290   if ( $extra_cents < 0 ) {
291     die "nonsense extra_cents value $extra_cents";
292   }
293   $tax_cents += $extra_cents;
294   my $i = 0;
295   foreach (@tax_location) { # can never require more than a single pass, yes?
296     my $cents = $_->get('cents');
297     if ( $extra_cents > 0 ) {
298       $cents++;
299       $extra_cents--;
300     }
301     $_->set('amount', sprintf('%.2f', $cents/100));
302   }
303   $tax_item->set('setup' => sprintf('%.2f', $tax_cents / 100));
304   $tax_item->set('cust_bill_pkg_tax_location', \@tax_location);
305
306   return $tax_item;
307 }
308
309 sub info {
310  +{
311     batch       => 0,
312     override    => 0,
313     rate_table  => 'cust_main_county',
314     link_table  => 'cust_bill_pkg_tax_location',
315   }
316 }
317
318 1;