1 <& /search/elements/search.html,
2 'html_init' => '<H2>Part VI</H2>',
3 'html_foot' => $html_foot,
5 'query' => [ @sql_query ],
6 'count_query' => $count_query,
7 'order_by' => 'ORDER BY censustract',
18 'technology_code_other',
24 'url' => $opt{url} || '',
25 'xml_row_element' => 'Datarow',
26 'really_disable_download' => 1,
27 'filename' => $opt{filename},
31 my $curuser = $FS::CurrentUser::CurrentUser;
34 unless $curuser->access_right('List packages');
39 my %state_pkgcount = ();
44 my $num = ($cgi->param('offset') =~ /^(\d+)$/) ? $1 : 0;
45 unless ( $cgi->param('_type') eq 'xml' ) {
47 push @fields, sub { ++$num };
56 'Technology code other',
58 'Percentage residential',
61 sub { my $row = shift;
62 my $state = substr($row->censustract, 0, 2);
63 $state_hash{$state}++;
64 substr($row->censustract, 2, 3) || 'None';
66 sub { my $row = shift;
67 substr($row->censustract, 5) || 'None';
72 sub { $cgi->param('_type') eq 'xml' ? '0' : '' },#broken
73 sub { my $row = shift;
74 my $state = substr($row->censustract, 0, 2);
75 $state_pkgcount{$state} += $row->quantity;
78 sub { my $row = shift; sprintf "%.3f", $row->residential },
84 for ( qw(agentnum state) ) {
85 $search_hash{$_} = $cgi->param($_) if $cgi->param($_);
88 $search_hash{'active'} = [ $opt{date}, $opt{date} ];
89 $search_hash{'country'} = 'US';
90 $search_hash{'classnum'} = [ $cgi->param('classnum') ]
91 if grep { $_ eq 'classnum' } $cgi->param;
93 my @column_option = grep { /^\d+$/ } $cgi->param('part1_column_option')
94 if $cgi->param('part1_column_option');
96 my @row_option = grep { /^\d+$/ } $cgi->param('part1_row_option')
97 if $cgi->param('part1_row_option');
99 my @technology_option = &FS::Report::FCC_477::parse_technology_option($cgi);
102 foreach my $row ( @row_option ) {
104 foreach my $column ( @column_option ) {
106 foreach my $technology ( @technology_option ) {
108 next unless $technology;
109 my @report_option = ();
110 push @report_option, $row if $row;
111 push @report_option, $column if $column;
112 push @report_option, $technology;
113 my $report_option = join(',', @report_option) if @report_option;
115 my $sql_query = FS::cust_pkg->search(
117 ($report_option ? ( 'report_option' => $report_option ) : () ),
120 my $extracolumns = "$rowcount AS upload, $columncount AS download, $tech_code as technology_code";
121 my $percent = "CASE WHEN count(*) > 0 THEN 100-100*cast(count(cust_main.company) as numeric)/cast(count(*) as numeric) ELSE cast(0 as numeric) END AS residential";
122 $sql_query->{select} = "count(*) AS quantity, $extracolumns, cust_location.censustract, $percent";
123 $sql_query->{order_by} = " GROUP BY cust_location.censustract ";
124 push @sql_query, $sql_query;
131 my $count_query = 'SELECT count(*) FROM ( ('.
132 join( ') UNION ALL (',
133 map { my $addl_from = $_->{addl_from};
134 my $extra_sql = $_->{extra_sql};
135 my $order_by = $_->{order_by};
136 "SELECT cust_location.censustract from cust_pkg $addl_from
137 $extra_sql $order_by";
143 my $link = 'cust_pkg.cgi?'. join(';',
145 my @values = ref($search_hash{$_})
146 ? @{ $search_hash{$_} }
148 map { "$key=$_" } @values;
153 my $link_suffix = sub { my $row = shift;
154 my $result = 'censustract='. $row->censustract. ';';
156 @row_option[$row->upload - 1],
157 @column_option[$row->download - 2],
158 @technology_option[$row->technology_code - 1],
160 $result .= 'report_option='. join(',',@ro) if @ro;
164 for (1..8) { push @links, [ $link, $link_suffix ]; }
167 my $html_foot = sub {
168 if (scalar(keys %state_hash) > 1) {
170 my $roa_r = join(',', grep $_, @row_option);
171 $roa_r = ";report_option_any_r=$roa_r" if $roa_r;
173 my $roa_c = join(',', grep $_, @column_option);
174 $roa_c = ";report_option_any_c=$roa_c" if $roa_c;
176 my $roa_t = join(',', grep $_, @technology_option);
177 $roa_t = ";report_option_any_t=$roa_t" if $roa_t;
179 '<BR><B>WARNING: multiple states found</B><BR>'.
180 '<TABLE BORDER=0>'. #nicer formatting someday
181 join('', map { '<TR>'.
183 ( &FS::Report::FCC_477::statenum2state($_) || 'None' ).
186 qq(<A HREF="${link}censustract2=$_$roa_r$roa_c$roa_t">).
189 $state_hash{$_}. ' census tracts'.