diff options
author | mark <mark> | 2012-01-18 02:48:03 +0000 |
---|---|---|
committer | mark <mark> | 2012-01-18 02:48:03 +0000 |
commit | 5697bba078d6f9e263775bc2d887cc1ce3ff873d (patch) | |
tree | 2523653352b55604174c8c462089a685d567e9f5 /httemplate/search/svc_acct.cgi | |
parent | 57fe641524a2e3057f577074b26ab75b24534bbc (diff) |
search services by tower/sector, #15950
Diffstat (limited to 'httemplate/search/svc_acct.cgi')
-rwxr-xr-x | httemplate/search/svc_acct.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/search/svc_acct.cgi b/httemplate/search/svc_acct.cgi index 12d5991ea..be649a5f8 100755 --- a/httemplate/search/svc_acct.cgi +++ b/httemplate/search/svc_acct.cgi @@ -119,6 +119,10 @@ for (qw( domain domsvc agentnum custnum popnum svcpart cust_fields )) { $search_hash{$_} = $cgi->param($_) if length($cgi->param($_)); } +for (qw( towernum sectornum )) { + $search_hash{$_} = [ $cgi->param($_) ] if $cgi->param($_); +} + my $timepermonth = ''; my $orderby = 'ORDER BY svcnum'; |