link new tax report to cust_credit_bill_pkg for credits, RT#12332
[freeside.git] / httemplate / search / cust_credit_bill_pkg.html
index f346035..c699547 100644 (file)
@@ -347,17 +347,15 @@ my $join_pkg;
 
 my $join_cust_bill_pkg = 'LEFT JOIN cust_bill_pkg USING ( billpkgnum';
 if ( $cgi->param('iscredit') eq 'rate' ) {
-  $join_pkg .= ', billpkgtaxratelocationnum )';
+  $join_cust_bill_pkg .= ', billpkgtaxratelocationnum )';
 } elsif ( $conf->exists('tax-pkg_address') ) {
-  $join_pkg .= ', billpkgtaxlocationnum )';
+  $join_cust_bill_pkg .= ', billpkgtaxlocationnum )';
   push @where, "billpkgtaxratelocationnum IS NULL";
 } else {
-  $join_pkg .= ' )';
+  $join_cust_bill_pkg .= ' )';
   push @where, "billpkgtaxratelocationnum IS NULL";
 }
 
- )';
-
 if ( $cgi->param('nottax') ) {
 
   $join_pkg =  ' LEFT JOIN cust_pkg USING ( pkgnum )