diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-04-14 12:16:53 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-04-14 12:16:53 -0700 |
commit | a9f4e76c1d2392514c4172dd869fd101e3a9c6ec (patch) | |
tree | 8e2de1ab0e97bd10aaec22e37d745184418085e6 /httemplate/search/cust_bill.html | |
parent | d37fb0b5f49c46e0df95212ae8660a8423809305 (diff) |
add customer class to A/R report, fix "(none)" selection in other reports, RT#22540
Diffstat (limited to 'httemplate/search/cust_bill.html')
-rwxr-xr-x | httemplate/search/cust_bill.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_bill.html b/httemplate/search/cust_bill.html index 88cdaf5ab..473aed311 100755 --- a/httemplate/search/cust_bill.html +++ b/httemplate/search/cust_bill.html @@ -97,7 +97,7 @@ if ( $cgi->param('invnum') =~ /^\s*(FS-)?(\d+)\s*$/ ) { $search{'refnum'} = $1; } - if ( $cgi->param('cust_classnum') ) { +if ( grep { $_ eq 'cust_classnum' } $cgi->param ) { $search{'cust_classnum'} = [ $cgi->param('cust_classnum') ]; } |