summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2007-12-27 23:49:31 +0000
committerivan <ivan>2007-12-27 23:49:31 +0000
commit97418edf65d4cb40b8aa51998c123fd185a27711 (patch)
treefafe201089de8a2cb79847d1b6c67c0cf52c37bc
parent48cab6f96369ca68934796fc374d0e8a5eca8a2c (diff)
fix reporting bug for invisimax in edge case where you have taxclass and empty-taxclass rates for a country/state(/county) and also have a different set of taxclasses for some other country/state
-rwxr-xr-xhttemplate/search/report_tax.cgi23
1 files changed, 15 insertions, 8 deletions
diff --git a/httemplate/search/report_tax.cgi b/httemplate/search/report_tax.cgi
index eddb3da00..3519d722a 100755
--- a/httemplate/search/report_tax.cgi
+++ b/httemplate/search/report_tax.cgi
@@ -312,8 +312,9 @@ foreach my $r (qsearch('cust_main_county', {}, '', $gotcust) ) {
} else {
- my $same_query = "SELECT COUNT(*) FROM cust_main_county WHERE country = ?";
- my @same_param = ( 'country' );
+ my $same_query = 'SELECT taxclass FROM cust_main_county '.
+ ' WHERE taxnum != ? AND country = ?';
+ my @same_param = ( 'taxnum', 'country' );
foreach my $opt_field (qw( state county )) {
if ( $r->$opt_field() ) {
$same_query .= " AND $opt_field = ?";
@@ -323,12 +324,11 @@ foreach my $r (qsearch('cust_main_county', {}, '', $gotcust) ) {
}
}
- my $num_same_region = scalar_sql( $r, \@same_param, $same_query );
-
- if ( $num_same_region > 1 ) {
-
- $mywhere .= " AND taxclass IS NULL";
+ my @taxclasses = list_sql( $r, \@same_param, $same_query );
+ if ( scalar(@taxclasses) ) {
+ $mywhere .= ' AND '. join(' AND ', map ' taxclass != ? ', @taxclasses );
+ push @param, @taxclasses;
}
}
@@ -565,7 +565,14 @@ sub scalar_sql {
$sth->fetchrow_arrayref->[0] || 0;
}
-
+sub list_sql {
+ my( $r, $param, $sql ) = @_;
+ #warn "$sql\n";
+ my $sth = dbh->prepare($sql) or die dbh->errstr;
+ $sth->execute( map $r->$_(), @$param )
+ or die "Unexpected error executing statement $sql: ". $sth->errstr;
+ map $_->[0], @{ $sth->fetchall_arrayref };
+}
my $dateagentlink = "begin=$beginning;end=$ending";
$dateagentlink .= ';agentnum='. $cgi->param('agentnum')