diff options
author | Mark Wells <mark@freeside.biz> | 2012-04-25 11:26:36 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-04-25 11:26:36 -0700 |
commit | 5fd66da492a1b206fa4e944eb0caa2e2642d454a (patch) | |
tree | 0bd9b1b8fc8222572d1bf69d2f4b4d20dc5249f3 /httemplate/search/cust_bill_pkg.cgi | |
parent | 998dcad2d8f4b8e22b9a2f042f006b9167b8cdf3 (diff) |
consider districts in tax liability report, #17051
Diffstat (limited to 'httemplate/search/cust_bill_pkg.cgi')
-rw-r--r-- | httemplate/search/cust_bill_pkg.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/search/cust_bill_pkg.cgi b/httemplate/search/cust_bill_pkg.cgi index 94860d3f2..b08024cb0 100644 --- a/httemplate/search/cust_bill_pkg.cgi +++ b/httemplate/search/cust_bill_pkg.cgi @@ -218,7 +218,7 @@ if ( $cgi->param('taxclass') } -my @loc_param = qw( city county state country ); +my @loc_param = qw( district city county state country ); if ( $cgi->param('out') ) { @@ -266,7 +266,7 @@ if ( $cgi->param('out') ) { my %ph = ( 'county' => dbh->quote($_), map { $_ => dbh->quote( $cgi->param($_) ) } - qw( city state country ) + qw( district city state country ) ); my ( $loc_sql, @param ) = FS::cust_pkg->location_sql; @@ -330,7 +330,7 @@ if ( $cgi->param('out') ) { push @where, FS::tax_rate_location->location_sql( map { $_ => (scalar($cgi->param($_)) || '') } - qw( city county state locationtaxid ) + qw( district city county state locationtaxid ) ); } elsif ( $cgi->param('unearned_now') =~ /^(\d+)$/ ) { |