From: Ivan Kohler Date: Thu, 6 Dec 2012 02:15:27 +0000 (-0800) Subject: support custnum param even though we wound up not using it here, RT#18676 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=fd4322f01b8c53b3f1f9e54ca15184930b0443de support custnum param even though we wound up not using it here, RT#18676 --- diff --git a/httemplate/search/cust_bill_pkg.cgi b/httemplate/search/cust_bill_pkg.cgi index 4c0fa4a56..ed3444027 100644 --- a/httemplate/search/cust_bill_pkg.cgi +++ b/httemplate/search/cust_bill_pkg.cgi @@ -200,6 +200,11 @@ if ( $cgi->param('refnum') =~ /^(\d+)$/ ) { push @where, "cust_main.refnum = $1"; } +# custnum +if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { + push @where, "cust_main.custnum = $1"; +} + # the non-tax case if ( $cgi->param('nottax') ) {