summaryrefslogtreecommitdiff
path: root/httemplate/search/report_newtax.cgi
diff options
context:
space:
mode:
authorivan <ivan>2011-04-11 07:02:50 +0000
committerivan <ivan>2011-04-11 07:02:50 +0000
commit1bb612df42aec08974f67ff333a5e0d2a2fc3ba3 (patch)
tree9889dea71d9186ceb81bb6dc138c8cf6db59a4da /httemplate/search/report_newtax.cgi
parent3baa02c55101a3ad6c18d294c67a009e33ae6930 (diff)
slight refactor onvendor tax report: add tax_rate_location->location_sql, RT#12320
Diffstat (limited to 'httemplate/search/report_newtax.cgi')
-rwxr-xr-xhttemplate/search/report_newtax.cgi23
1 files changed, 12 insertions, 11 deletions
diff --git a/httemplate/search/report_newtax.cgi b/httemplate/search/report_newtax.cgi
index 559d89ded..f185c7fd9 100755
--- a/httemplate/search/report_newtax.cgi
+++ b/httemplate/search/report_newtax.cgi
@@ -89,12 +89,9 @@ if ( $cgi->param('agentnum') =~ /^(\d+)$/ ) {
$where .= ' AND cust_main.agentnum = '. $agent->agentnum;
}
-# my ( $location_sql, @location_param ) = FS::cust_pkg->location_sql;
-# $where .= " AND $location_sql";
-#my @taxparam = ( 'itemdesc', @location_param );
-# now something along the lines of geocode matching ?
-#$where .= FS::cust_pkg->_location_sql_where('cust_tax_location');;
-my @taxparam = ( 'itemdesc', 'tax_rate_location.state', 'tax_rate_location.county', 'tax_rate_location.city', 'cust_bill_pkg_tax_rate_location.locationtaxid' );
+#my @taxparam = ( 'itemdesc', 'tax_rate_location.state', 'tax_rate_location.county', 'tax_rate_location.city', 'cust_bill_pkg_tax_rate_location.locationtaxid' );
+my @taxparams = qw( city county state locationtaxid );
+my @params = ('itemdesc', @taxparams);
my $select = 'DISTINCT itemdesc,locationtaxid,tax_rate_location.state,tax_rate_location.county,tax_rate_location.city';
@@ -110,7 +107,7 @@ foreach my $t (qsearch({ table => 'cust_bill_pkg',
})
)
{
- my @params = map { my $f = $_; $f =~ s/.*\.//; $f } @taxparam;
+ #my @params = map { my $f = $_; $f =~ s/.*\.//; $f } @taxparam;
my $label = join('~', map { $t->$_ } @params);
$label = 'Tax'. $label if $label =~ /^~/;
unless ( exists( $taxes{$label} ) ) {
@@ -121,23 +118,27 @@ foreach my $t (qsearch({ table => 'cust_bill_pkg',
join(';', map { "$_=". uri_escape($t->$_) } @params);
my $taxwhere = "FROM cust_bill_pkg $addl_from $where AND payby != 'COMP' ".
- "AND ". join( ' AND ', map { "( $_ = ? OR ? = '' AND $_ IS NULL)" } @taxparam );
+ "AND ". FS::tax_rate_location->location_sql( map { $_ => $t->$_ }
+ @taxparams
+ );
my $sql = "SELECT SUM(amount) $taxwhere AND cust_bill_pkg.pkgnum = 0";
- my $x = scalar_sql($t, [ map { $_, $_ } @params ], $sql );
+ my $x = scalar_sql($t, [], $sql );
$tax += $x;
$taxes{$label}->{'tax'} += $x;
my $creditfrom = " JOIN cust_credit_bill_pkg USING (billpkgnum,billpkgtaxratelocationnum) ";
my $creditwhere = "FROM cust_bill_pkg $addl_from $creditfrom $where ".
"AND payby != 'COMP' ".
- "AND ". join( ' AND ', map { "( $_ = ? OR ? = '' AND $_ IS NULL)" } @taxparam );
+ "AND ". FS::tax_rate_location->location_sql( map { $_ => $t->$_ }
+ @taxparams
+ );
$sql = "SELECT SUM(cust_credit_bill_pkg.amount) ".
" $creditwhere AND cust_bill_pkg.pkgnum = 0";
- my $y = scalar_sql($t, [ map { $_, $_ } @params ], $sql );
+ my $y = scalar_sql($t, [], $sql );
$credit += $y;
$taxes{$label}->{'credit'} += $y;