Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / search / 477partIIB.html
1 % if ( $cgi->param('_type') eq 'xml' ) {
2 %   my @cols = qw(a b c);
3 %   for ( my $row = 0; $row < scalar(@rows); $row++ ) {
4 %     for my $col (0..2) {
5 %       if ( exists($data[$col][$row]) ) {
6 <PartII_<% $row + 1 %><% $cols[$col] %>>\
7 <% $data[$col][$row] %>\
8 </PartII_<% $row + 1 %><% $cols[$col] %>>
9 %       }
10 %     } #for $col
11 %   } #for $row
12 % } else { # HTML mode
13 % # fake up the search-html.html header
14 <H2>Part IIB</H2>
15 <TABLE>
16   <TR><TD VALIGN="bottom"><BR></TD></TR>
17   <TR><TD COLSPAN=2>
18   <TABLE CLASS="grid" CELLSPACING=0>
19     <TR>
20 % foreach (@headers) {
21       <TH><% $_ %></TH>
22 % }
23     </TR>
24 % my $row = 0;
25 % foreach my $rowhead (@rows) {
26     <TR CLASS="row<% $row % 2 %>"> 
27       <TD STYLE="text-align: left; font-weight: bold"><% $rowhead %></TD>
28 %     for my $col (0..2) {
29       <TD>
30 %       if ( exists($data[$col][$row]) ) {
31       <% $data[$col][$row] %>
32 %       }
33       </TD>
34 %     } # for $col
35     </TR>
36 %   $row++;
37 % } #for $rowhead
38   </TABLE>
39   </TD></TR>
40 </TABLE>
41 % } #XML/HTML
42 <%init>
43
44 my $curuser = $FS::CurrentUser::CurrentUser;
45
46 die "access denied"
47   unless $curuser->access_right('List packages');
48
49 my %search_hash = ();
50
51 $search_hash{'agentnum'} = $cgi->param('agentnum');
52 $search_hash{'state'}    = $cgi->param('state');
53 $search_hash{'classnum'} = [ $cgi->param('classnum') ];
54 $search_hash{'status'}   = 'active';
55
56 my @row_option;
57 foreach ($cgi->param('part2b_row_option')) {
58   push @row_option, (/^\d+$/ ? $_ : undef);
59 }
60
61 my $is_residential = "AND COALESCE(cust_main.company, '') = ''";
62 my $has_report_option = sub {
63   map {
64     defined($row_option[$_]) ?
65     "AND EXISTS(
66       SELECT 1 FROM part_pkg_option 
67       WHERE part_pkg_option.pkgpart = part_pkg.pkgpart
68       AND optionname = 'report_option_" . $row_option[$_]."'
69       AND optionvalue = '1'
70     )" : 'AND FALSE'
71   } @_
72 };
73
74 # an arrayref for each column
75 my @data;
76 # get the skeleton of the query
77 my $sql_query = FS::cust_pkg->search(\%search_hash);
78 my $from_where = $sql_query->{'count_query'};
79 $from_where =~ s/^SELECT COUNT\(\*\) //;
80 # columns 1 and 2
81 my $query_ds0 = "SELECT SUM(COALESCE(part_pkg.fcc_ds0s, pkg_class.fcc_ds0s, 0))
82   $from_where";
83 # column 3
84 my $query_custnum = "SELECT COUNT(DISTINCT cust_pkg.custnum) $from_where";
85
86 my @base_queries = ($query_ds0, $query_ds0, $query_custnum);
87 my @col_conds = (
88   # column 1
89   [
90     '',
91     $is_residential,
92     $has_report_option->(0), # nomadic
93   ],
94   # column 2
95   [
96     '',
97     $is_residential,
98     $has_report_option->(0..5),
99   ],
100   # column 3
101   [
102     ''
103   ]
104 );
105
106 my $col = 0;
107 foreach (@col_conds) {
108   my @col_data;
109   my $row = 0;
110   foreach my $cond (@{ $col_conds[$col] }) {
111     # three parts: the select expression, the VoIP class (column selection),
112     # and the row selection
113     my $query = $base_queries[$col] . 
114                 " AND part_pkg.fcc_voip_class = '".($col+1)."'
115                 $cond";
116     my $count = FS::Record->scalar_sql($query) || 0;
117     if ( $row == 0 ) {
118       $col_data[$row] = $count; # the raw count
119     } else {
120       if ( $col_data[0] == 0 ) {
121         $col_data[$row] = ''; # show nothing in this row, then
122       } else {
123         $col_data[$row] = sprintf('%.2f', 100 * $count / $col_data[0]) . '%';
124       }
125     } #if $row == 0
126     $row++;
127   }
128   $data[$col] = \@col_data;
129   $col++;
130 }
131
132
133 my @rows = (
134   'total number',
135   '% residential',
136   '% nomadic',
137   '% copper',
138   '% FTTP',
139   '% coax',
140   '% wireless',
141   '% other broadband',
142 );
143
144 my @headers = (
145   '',
146   'without broadband',
147   'with broadband',
148   'wholesale',
149 );
150
151 </%init>