From: jeff Date: Fri, 17 Jul 2009 02:29:09 +0000 (+0000) Subject: FSM, another missed file for 477 reporting X-Git-Tag: root_of_svc_elec_features~1006 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=e300f21783a78b911256e04cd7af86b1d57eeb04 FSM, another missed file for 477 reporting --- diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 4e35b91dd..a2ea3c582 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -162,11 +162,15 @@ my $money_char = $conf->config('money_char') || '$'; $search_hash{'query'} = $cgi->keywords; - for my $param (qw(agentnum magic status classnum pkgpart custom)) { - $search_hash{$param} = $cgi->param($param) - if $cgi->param($param); + for ( qw(agentnum magic status classnum pkgpart custom censustract) ) { + $search_hash{$_} = $cgi->param($_) if $cgi->param($_); } + +my @report_option = $cgi->param('report_option') + if $cgi->param('report_option'); +$search_hash{report_option} = join(',', @report_option) if @report_option; + ### # parse dates ###