X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FTaxEngine%2Fsuretax.pm;h=0f6c69de354d8768f1726607b339cb1ca0efd8b4;hb=e5b2660aefd03bc4b32386e1c38c53814c002c8d;hp=4e7edd575e14e79058cb2569260e8f6e9628e653;hpb=32eacfe9022ab9edb6fd986618ac2d3949fc7dcd;p=freeside.git diff --git a/FS/FS/TaxEngine/suretax.pm b/FS/FS/TaxEngine/suretax.pm index 4e7edd575..0f6c69de3 100644 --- a/FS/FS/TaxEngine/suretax.pm +++ b/FS/FS/TaxEngine/suretax.pm @@ -4,7 +4,7 @@ use strict; use base 'FS::TaxEngine'; use FS::Conf; use FS::Record qw(qsearch qsearchs dbh); -use JSON; +use Cpanel::JSON::XS; use XML::Simple qw(XMLin); use LWP::UserAgent; use HTTP::Request::Common; @@ -14,7 +14,7 @@ our $DEBUG = 1; # prints progress messages # $DEBUG = 2; # prints decoded request and response (noisy, be careful) # $DEBUG = 3; # prints raw response from the API, ridiculously unreadable -our $json = JSON->new->pretty(1); +our $json = Cpanel::JSON::XS->new->pretty(1); our %taxproduct_cache; @@ -77,7 +77,7 @@ sub build_request { ($self->{bill_zip}, $self->{bill_plus4}) = split('-', $cust_main->bill_location->zip); - $self->{regcode} = $REGCODE{ $conf->config('suretax-regulatory_code') }; + $self->{regcode} = $REGCODE{ $conf->config('suretax-regulatory_code', $agentnum) }; %taxproduct_cache = (); @@ -137,8 +137,17 @@ sub build_item { my @items; my $recur_without_usage = $cust_bill_pkg->recur; + # use the _configured_ tax location as 'Zipcode' (respecting + # tax-ship_address and tax-pkg_address configs) my $location = $cust_bill_pkg->tax_location; - my ($svc_zip, $svc_plus4) = split('-', $location->zip); + my ($zip, $plus4) = split('-', $location->zip); + + # and the _real_ location as 'P2PZipcode' + my $svc_location = $location; + if ( $cust_bill_pkg->pkgnum ) { + $svc_location = $cust_bill_pkg->cust_pkg->cust_location; + } + my ($svc_zip, $svc_plus4) = split('-', $svc_location->zip); my $startdate = DateTime->from_epoch( epoch => $cust_bill->_date )->strftime('%m-%d-%Y'); @@ -150,8 +159,8 @@ sub build_item { 'OrigNumber' => '', 'TermNumber' => '', 'BillToNumber' => '', - 'Zipcode' => $self->{bill_zip}, - 'Plus4' => ($self->{bill_plus4} ||= '0000'), + 'Zipcode' => $zip, + 'Plus4' => ($plus4 ||= '0000'), 'P2PZipcode' => $svc_zip, 'P2PPlus4' => ($svc_plus4 ||= '0000'), # we don't support Order Placement/Approval zip codes @@ -204,27 +213,31 @@ sub build_item { while ( my $cdr = $cdrs->fetch ) { my $calldate = DateTime->from_epoch( epoch => $cdr->startdate )->strftime('%m-%d-%Y'); - # determine the tax situs rule; it's different (probably more accurate) - # if the call has PSTN phone numbers at both ends - my $tsr = $TSR_CALL_OTHER; - if ( $cdr->charged_party =~ /^\d{10}$/ and - $cdr->src =~ /^\d{10}$/ and - $cdr->dst =~ /^\d{10}$/ ) { - $tsr = $TSR_CALL_NPANXX; - } my %hash = ( %base_item, 'LineNumber' => 'C' . $cdr->acctid, - 'OrigNumber' => $cdr->src, - 'TermNumber' => $cdr->dst, - 'BillToNumber' => $cdr->charged_party, + 'OrigNumber' => '', + 'TermNumber' => '', + 'BillToNumber' => '', 'TransDate' => $calldate, 'Revenue' => $cdr->rated_price, # 4 decimal places 'Units' => 0, # right? 'CallDuration' => $cdr->duration, - 'TaxSitusRule' => $tsr, + 'TaxSitusRule' => $TSR_CALL_OTHER, 'TransTypeCode' => $taxproduct, ); + # determine the tax situs rule; it's different (probably more accurate) + # if the call has PSTN phone numbers at both ends + if ( $cdr->charged_party =~ /^\d{10}$/ and + $cdr->src =~ /^\d{10}$/ and + $cdr->dst =~ /^\d{10}$/ and + !$cdr->is_tollfree ) { + $hash{TaxSitusRule} = $TSR_CALL_NPANXX; + $hash{OrigNumber} = $cdr->src; + $hash{TermNumber} = $cdr->dst; + $hash{BillToNumber} = $cdr->charged_party; + } + push @items, \%hash; } # while ($cdrs->fetch) @@ -245,11 +258,13 @@ sub build_item { if !$taxproduct; my $tsr = $TSR_GENERAL; + # when billing on cancellation there are no units + my $units = $self->{cancel} ? 0 : $cust_bill_pkg->units; my %hash = ( %base_item, 'LineNumber' => 'R' . $billpkgnum, 'Revenue' => $recur_without_usage, # 4 decimal places - 'Units' => $cust_bill_pkg->units, + 'Units' => $units, 'TaxSitusRule' => $tsr, 'TransTypeCode' => $taxproduct, );