summaryrefslogtreecommitdiff
path: root/FS/FS/TaxEngine/internal.pm
blob: d680af86e9cd1e62bb860040eefd26571a84641d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
package FS::TaxEngine::internal;

use strict;
use base 'FS::TaxEngine';
use FS::Record qw(dbh qsearch qsearchs);
use FS::Conf;
use vars qw( $conf );

FS::UID->install_callback(sub {
    $conf = FS::Conf->new;
});

=head1 SUMMARY

FS::TaxEngine::internal: the classic Freeside "internal tax engine".
Uses tax rates and localities defined in L<FS::cust_main_county>.

=cut

my %part_pkg_cache;

sub add_sale {
  my ($self, $cust_bill_pkg) = @_;

  my $part_item = $cust_bill_pkg->part_X;
  my $location = $cust_bill_pkg->tax_location
    or return;
  my $custnum = $self->{cust_main}->custnum;

  push @{ $self->{items} }, $cust_bill_pkg;

  my %taxhash = map { $_ => $location->get($_) }
                qw( district county state country );
  # city names in cust_main_county are uppercase
  $taxhash{'city'} = uc($location->get('city'));

  $taxhash{'taxclass'} = $part_item->taxclass;

  my @taxes = (); # entries are cust_main_county objects
  my %taxhash_elim = %taxhash;
  my @elim = qw( district city county state );

  # WA state district city names are not stable in the WA tax tables
  # Allow districts to match with just a district id
  if ( $taxhash{district} ) {
    @taxes = qsearch( cust_main_county => {
      district => $taxhash{district},
      taxclass => $taxhash{taxclass},
    });
    if ( !scalar(@taxes) && $taxhash{taxclass} ) {
      qsearch( cust_main_county => {
        district => $taxhash{district},
        taxclass => '',
      });
    }
  }

  do {

    #first try a match with taxclass
    if ( !scalar(@taxes) ) {
      @taxes = qsearch( 'cust_main_county', \%taxhash_elim );
    }

    if ( !scalar(@taxes) && $taxhash_elim{'taxclass'} ) {
      #then try a match without taxclass
      my %no_taxclass = %taxhash_elim;
      $no_taxclass{ 'taxclass' } = '';
      @taxes = qsearch( 'cust_main_county', \%no_taxclass );
    }

    $taxhash_elim{ shift(@elim) } = '';
  } while ( !scalar(@taxes) && scalar(@elim) );

  foreach my $tax (@taxes) {
    my $taxnum = $tax->taxnum;
    $self->{taxes}->{$taxnum} ||= [ $tax ];
    $cust_bill_pkg->set_exemptions( $tax, 'custnum' => $custnum );
    push @{ $self->{taxes}->{$taxnum} }, $cust_bill_pkg;
  }
}

sub taxline {
  my ($self, %opt) = @_;
  my $tax_object = $opt{tax};
  my $taxables = $opt{sales};
  my $taxnum = $tax_object->taxnum;
  my $exemptions = $self->{exemptions}->{$taxnum} ||= [];
  
  my $taxable_total = 0;
  my $tax_cents = 0;

  my $round_per_line_item = $conf->exists('tax-round_per_line_item');

  my $cust_main = $self->{cust_main};
  my $custnum   = $cust_main->custnum;
  my $invoice_time = $self->{invoice_time};

  # set a flag if the customer is tax-exempt
  my $exempt_cust;
  my $conf = FS::Conf->new;
  if ( $conf->exists('cust_class-tax_exempt') ) {
    my $cust_class = $cust_main->cust_class;
    $exempt_cust = $cust_class->tax if $cust_class;
  } else {
    $exempt_cust = $cust_main->tax;
  }
  # set a flag if the customer is exempt from this tax here
  my $exempt_cust_taxname = $cust_main->tax_exemption($tax_object->taxname)
    if $tax_object->taxname;

  # Gather any exemptions that are already attached to these cust_bill_pkgs
  # so that we can deduct them from the customer's monthly limit.
  my @existing_exemptions = @{ $exemptions };
  push @existing_exemptions, @{ $_->cust_tax_exempt_pkg }
    foreach @$taxables;

  my @tax_links;

  foreach my $cust_bill_pkg (@$taxables) {

    my @new_exemptions;
    my $taxable_charged = $cust_bill_pkg->setup + $cust_bill_pkg->recur
      or next; # don't create zero-amount exemptions

    ## re-add the discounted amount if the tax needs to be charged pre discount
    if ($tax_object->charge_prediscount) {
      my $discount_amount = 0;
      foreach my $discount (@{$cust_bill_pkg->discounts}) {
        $discount_amount += $discount->amount;
      }
      $taxable_charged += $discount_amount;
    }

    # XXX the following procedure should probably be in cust_bill_pkg

    if ( $exempt_cust ) {

      push @new_exemptions, FS::cust_tax_exempt_pkg->new({
          amount => $taxable_charged,
          exempt_cust => 'Y',
        });
      $taxable_charged = 0;

    } elsif ( $exempt_cust_taxname ) {

      push @new_exemptions, FS::cust_tax_exempt_pkg->new({
          amount => $taxable_charged,
          exempt_cust_taxname => 'Y',
        });
      $taxable_charged = 0;

    }
    
    if ( my $part_pkg = $cust_bill_pkg->part_pkg ) {

      if ( ($part_pkg->setuptax eq 'Y' or $tax_object->setuptax eq 'Y')
          and $cust_bill_pkg->setup > 0 and $taxable_charged > 0 ) {

        push @new_exemptions, FS::cust_tax_exempt_pkg->new({
            amount => $cust_bill_pkg->setup,
            exempt_setup => 'Y'
        });
        $taxable_charged -= $cust_bill_pkg->setup;
      }

      if ( ($part_pkg->recurtax eq 'Y' or $tax_object->recurtax eq 'Y')
          and $cust_bill_pkg->recur > 0 and $taxable_charged > 0 ) {

        push @new_exemptions, FS::cust_tax_exempt_pkg->new({
            amount => $cust_bill_pkg->recur,
            exempt_recur => 'Y'
        });
        $taxable_charged -= $cust_bill_pkg->recur;
      }

    }

    if ( $tax_object->exempt_amount && $tax_object->exempt_amount > 0
      and $taxable_charged > 0 ) {
      # If the billing period extends across multiple calendar months, 
      # there may be several months of exemption available.
      my $sdate = $cust_bill_pkg->sdate || $invoice_time;
      my $start_month = (localtime($sdate))[4] + 1;
      my $start_year  = (localtime($sdate))[5] + 1900;
      my $edate = $cust_bill_pkg->edate || $invoice_time;
      my $end_month   = (localtime($edate))[4] + 1;
      my $end_year    = (localtime($edate))[5] + 1900;

      # If the partial last month + partial first month <= one month,
      # don't use the exemption in the last month
      # (unless the last month is also the first month, e.g. one-time
      # charges)
      if ( (localtime($sdate))[3] >= (localtime($edate))[3]
           and ($start_month != $end_month or $start_year != $end_year)
     ) {
        $end_month--;
        if ( $end_month == 0 ) {
          $end_year--;
          $end_month = 12;
        }
      }

      # number of months of exemption available
      my $freq = ($end_month - $start_month) +
                 ($end_year  - $start_year) * 12 +
                 1;

      # divide equally among all of them
      my $permonth = sprintf('%.2f', $taxable_charged / $freq);

      #call the whole thing off if this customer has any old
      #exemption records...
      my @cust_tax_exempt =
        qsearch( 'cust_tax_exempt' => { custnum=> $custnum } );
      if ( @cust_tax_exempt ) {
        return
          'this customer still has old-style tax exemption records; '.
          'run bin/fs-migrate-cust_tax_exempt?';
      }

      my ($mon, $year) = ($start_month, $start_year);
      while ($taxable_charged > 0.005 and
             ($year < $end_year or
               ($year == $end_year and $mon <= $end_month)
             )
      ) {

        # find the sum of the exemption used by this customer, for this tax,
        # in this month
        my $sql = "
          SELECT SUM(amount)
            FROM cust_tax_exempt_pkg
              LEFT JOIN cust_bill_pkg USING ( billpkgnum )
              LEFT JOIN cust_bill     USING ( invnum     )
            WHERE custnum = ?
             AND taxnum  = ?
              AND year    = ?
              AND month   = ?
              AND exempt_monthly = 'Y'
        ";
        my $sth = dbh->prepare($sql) or
          return "fatal: can't lookup existing exemption: ". dbh->errstr;
        $sth->execute(
          $custnum,
          $tax_object->taxnum,
          $year,
          $mon,
        ) or
          return "fatal: can't lookup existing exemption: ". dbh->errstr;
        my $existing_exemption = $sth->fetchrow_arrayref->[0] || 0;

        # add any exemption we're already using for another line item
       foreach ( grep { $_->taxnum == $tax_object->taxnum &&
                         $_->exempt_monthly eq 'Y'   &&
                         $_->month  == $mon          &&
                         $_->year   == $year
                       } @existing_exemptions
                )
        {
          $existing_exemption += $_->amount;
        }

        my $remaining_exemption =
          $tax_object->exempt_amount - $existing_exemption;
        if ( $remaining_exemption > 0 ) {
          my $addl = $remaining_exemption > $permonth
            ? $permonth
            : $remaining_exemption;
          $addl = $taxable_charged if $addl > $taxable_charged;

          push @new_exemptions, FS::cust_tax_exempt_pkg->new({
              amount          => sprintf('%.2f', $addl),
              exempt_monthly  => 'Y',
              year            => $year,
              month           => $mon,
            });

          $taxable_charged -= $addl;
        }
        # if they're using multiple months of exemption for a multi-month
        # package, then record the exemptions in separate months
        $mon++;
        if ( $mon > 12 ) {
          $mon -= 12;
          $year++;
        }

      }
    } # if exempt_amount

    # attach them to the line item
    foreach my $ex (@new_exemptions) {

      $ex->set('taxnum', $taxnum);

      if ( $cust_bill_pkg->billpkgnum ) {
        # the exempted item is already inserted (it should be, these days) so
        # insert the exemption record now:
        $ex->set('billpkgnum', $cust_bill_pkg->billpkgnum);
        my $error = $ex->insert;
        return "inserting tax exemption record: $error" if $error;

      } else {
        # defer it until the item is inserted
        push @{ $cust_bill_pkg->cust_tax_exempt_pkg }, $ex;
      }
    }

    # and remember we've used the exemption
    push @existing_exemptions, @new_exemptions;

    $taxable_charged = sprintf( "%.2f", $taxable_charged);
    next if $taxable_charged == 0;

    my $this_tax_cents = $taxable_charged * $tax_object->tax;
    if ( $round_per_line_item ) {
      # Round the tax to the nearest cent for each line item, instead of
      # across the whole invoice.
      $this_tax_cents = sprintf('%.0f', $this_tax_cents);
    } else {
      # Otherwise truncate it so that rounding error is always positive.
      $this_tax_cents = int($this_tax_cents);
    }

    my $locationnum;
    if ( my $cust_pkg = $cust_bill_pkg->cust_pkg ) {
      $locationnum = $cust_pkg->tax_locationnum;
    } elsif ( $conf->exists('tax-ship_address') ) {
      $locationnum = $cust_main->ship_locationnum;
    } else {
      $locationnum = $cust_main->bill_locationnum;
    }

    my $location = FS::cust_bill_pkg_tax_location->new({
        'taxnum'                => $tax_object->taxnum,
        'taxtype'               => ref($tax_object),
        'cents'                 => $this_tax_cents,
        'pkgnum'                => $cust_bill_pkg->pkgnum,
        'locationnum'           => $locationnum,
        'taxable_cust_bill_pkg' => $cust_bill_pkg,
    });
    push @tax_links, $location;

    $taxable_total += $taxable_charged;
    $tax_cents += $this_tax_cents;
  } #foreach $cust_bill_pkg

  # calculate tax and rounding error for the whole group: total taxable
  # amount times tax rate (as cents per dollar), minus the tax already
  # charged
  # and force 0.5 to round up
  my $extra_cents = sprintf('%.0f',
    ($taxable_total * $tax_object->tax) - $tax_cents + 0.00000001
  );

  # if we're rounding per item, then ignore that and don't distribute any
  # extra cents.
  if ( $round_per_line_item ) {
    $extra_cents = 0;
  }

  if ( $extra_cents < 0 ) {
    die "nonsense extra_cents value $extra_cents";
  }
  $tax_cents += $extra_cents;
  my $i = 0;
  foreach (@tax_links) { # can never require more than a single pass, yes?
    my $cents = $_->get('cents');
    if ( $extra_cents > 0 ) {
      $cents++;
      $extra_cents--;
    }
    $_->set('amount', sprintf('%.2f', $cents/100));
  }

  return @tax_links;
}

sub info {
 +{
    batch       => 0,
    override    => 0,
    rate_table  => 'cust_main_county',
    link_table  => 'cust_bill_pkg_tax_location',
  }
}

1;