55ebc0be21018fdf64eed289c1da75e1c3f2ad79
[freeside.git] / httemplate / search / 477partV.html
1 <% include( 'elements/search.html',
2                   'html_init'         => $html_init,
3                   'name'              => 'zip code',
4                   'query'             => $sql_query,
5                   'count_query'       => $count_query,
6                   'nohtmlheader'      => 1,
7                   'disable_total'     => 1,
8                   'header'            => [ 'zip code' ],
9                   'xml_elements'      => [ 'zip codes' ],
10                   'no_field_elements' => 1,
11                   'fields'            => [ 'zip' ],
12                   'url'               => $opt{url} || '',
13                   'disable_download'  => 1,
14
15               )
16 %>
17 <%init>
18
19 my $curuser = $FS::CurrentUser::CurrentUser;
20
21 die "access denied"
22   unless $curuser->access_right('List packages');
23
24 my %opt = @_;
25 my $html_init = '<H2>Part V</H2>';
26 my %search_hash = ();
27 my @sql_query = ();
28 my @count_query = ();
29   
30 for ( qw(agentnum magic) ) {
31   $search_hash{$_} = $cgi->param($_) if $cgi->param($_);
32 }
33 $search_hash{'classnum'} = [ $cgi->param('classnum') ];
34 $search_hash{report_option} = $cgi->param('partv_report_option')
35   if $cgi->param('partv_report_option');
36
37 my $sql_query = FS::cust_pkg->search( { %search_hash, 'fcc_line' => 1 });
38 $sql_query->{select} = 'DISTINCT substr(zip,1,5) as zip';
39 $sql_query->{order_by} = 'ORDER BY substr(zip,1,5)';
40 my $count_query = delete($sql_query->{'count_query'});
41 $count_query =~ s/COUNT\(\*\)/count(DISTINCT substr(zip,1,5))/;
42 $count_query =~ s/ORDER BY [.\w]+//;
43
44 </%init>