diff options
author | Mark Wells <mark@freeside.biz> | 2015-10-08 23:46:58 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-10-08 23:47:21 -0700 |
commit | 37b0f7bbb5737d02444dca82da5c3234be069f20 (patch) | |
tree | fe830177d9bea81eb3a0e6140621876e1a2d68c6 /httemplate/search/cust_credit_bill_pkg.html | |
parent | c729bf54b3e1dc6c63ee2e39843cd304aa825f0c (diff) |
restore credit-date filtering on line item report so we can use it for #37088
Diffstat (limited to 'httemplate/search/cust_credit_bill_pkg.html')
-rw-r--r-- | httemplate/search/cust_credit_bill_pkg.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_credit_bill_pkg.html b/httemplate/search/cust_credit_bill_pkg.html index 5e70c23bd..5facd4ab3 100644 --- a/httemplate/search/cust_credit_bill_pkg.html +++ b/httemplate/search/cust_credit_bill_pkg.html @@ -375,7 +375,7 @@ if ( $cgi->param('report_group') =~ /^(=|!=) (.*)$/ && $cgi->param('istax') ) { } -push @where, 'cust_bill_pkg.pkgnum != 0' if $cgi->param('nottax'); +push @where, '(cust_bill_pkg.pkgnum != 0 OR cust_bill_pkg.feepart is not null)' if $cgi->param('nottax'); push @where, 'cust_bill_pkg.pkgnum = 0' if $cgi->param('istax'); if ( $cgi->param('cust_tax') ) { |