diff options
author | Mark Wells <mark@freeside.biz> | 2012-12-31 14:03:43 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-12-31 14:03:43 -0800 |
commit | c7286ce9036d71665c2bfed9de93f87309b72d35 (patch) | |
tree | 59ef48f8fd7688cf7039a0d2e5500b84ae076543 /httemplate/search/cust_bill.html | |
parent | a14db43cc4ec18badd0aff4fbc3e6738f4f63f6c (diff) |
filter by customer class on all financial reports, #20573
Diffstat (limited to 'httemplate/search/cust_bill.html')
-rwxr-xr-x | httemplate/search/cust_bill.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/search/cust_bill.html b/httemplate/search/cust_bill.html index 406486a85..3c0530e4f 100755 --- a/httemplate/search/cust_bill.html +++ b/httemplate/search/cust_bill.html @@ -97,6 +97,10 @@ if ( $cgi->param('invnum') =~ /^\s*(FS-)?(\d+)\s*$/ ) { $search{'refnum'} = $1; } + if ( $cgi->param('cust_classnum') ) { + $search{'cust_classnum'} = [ $cgi->param('cust_classnum') ]; + } + if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { $search{'custnum'} = $1; } |