combine ticket notification scrips, #15353
[freeside.git] / httemplate / search / 477partIIA.html
1 <% include( 'elements/search.html',
2                   'html_init'        => $html_init,
3                   'name'             => 'lines',
4                   'query'            => $query,
5                   'count_query'      => 'SELECT 11',
6                   'really_disable_download' => 1,
7                   'disable_download' => 1,
8                   'nohtmlheader'     => 1,
9                   'disable_total'    => 1,
10                   'header'           => [ @headers ],
11                   'xml_elements'     => [ @xml_elements ],
12                   'fields'           => [ @fields ],
13               )
14 %>
15 <%init>
16
17 my $curuser = $FS::CurrentUser::CurrentUser;
18
19 die "access denied"
20   unless $curuser->access_right('List packages');
21
22 my $html_init = '<H2>Part IIA</H2>';
23 my %search_hash = ();
24   
25 for ( qw(agentnum magic) ) {
26   $search_hash{$_} = $cgi->param($_) if $cgi->param($_);
27 }
28 $search_hash{'classnum'} = [ $cgi->param('classnum') ];
29
30 my @row_option = grep { /^\d+$/ } $cgi->param('part2a_row_option')
31   if $cgi->param('part2a_row_option');
32
33 # fudge in two rows of LD carrier
34 unshift @row_option, $row_option[0];
35
36 # fudge in the first pair of rows
37 unshift @row_option, '';
38 unshift @row_option, '';
39
40 my $query = 'SELECT '. join(' UNION SELECT ', 1..11);
41
42 my $total_count = 0;
43 my $column_value = sub {
44   my $row = shift;
45
46   my @report_option = ( $row_option[$row - 1] || '' );
47
48   my $sql_query = FS::cust_pkg->search(
49     { %search_hash, 'report_option' => join(',', @report_option) }
50   );
51
52   my $count_sql = delete($sql_query->{'count_query'});
53   if ( $row == 2 || $row == 4 ) {
54     $count_sql =~ s/COUNT\(\*\) FROM/sum(COALESCE(CASE WHEN cust_main.company IS NULL OR cust_main.company = '' THEN   CASE WHEN part_pkg.fcc_ds0s IS NOT NULL AND part_pkg.fcc_ds0s > 0 THEN part_pkg.fcc_ds0s WHEN pkg_class.fcc_ds0s IS NOT NULL AND pkg_class.fcc_ds0s > 0 THEN pkg_class.fcc_ds0s ELSE 0 END   ELSE 0 END, 0) ) FROM/
55       or die "couldn't parse count_sql";
56   } else {
57     $count_sql =~ s/COUNT\(\*\) FROM/sum(COALESCE(CASE WHEN part_pkg.fcc_ds0s IS NOT NULL AND part_pkg.fcc_ds0s > 0 THEN part_pkg.fcc_ds0s WHEN pkg_class.fcc_ds0s IS NOT NULL AND pkg_class.fcc_ds0s > 0 THEN pkg_class.fcc_ds0s ELSE 0 END, 0)) FROM/
58       or die "couldn't parse count_sql";
59   }
60
61   my $count_sth = dbh->prepare($count_sql)
62     or die "Error preparing $count_sql: ". dbh->errstr;
63   $count_sth->execute
64     or die "Error executing $count_sql: ". $count_sth->errstr;
65   my $count_arrayref = $count_sth->fetchrow_arrayref;
66   my $count = $count_arrayref->[0];
67
68   $total_count = $count if $row == 1;
69   $count = sprintf('%.2f', $total_count ? 100*$count/$total_count : 0)
70     if $row != 1;
71
72   return "$count";
73 };
74
75 my @headers = (
76   '',
77   'End user lines',
78   'UNE-P replacement',
79   'UNE (unswitched)',
80   'UNE-P',
81 );
82
83 my @xml_elements = (
84   sub { my $row = shift; my $rownum = $row->[0] + 1; "PartII_${rownum}a" },
85   sub { my $row = shift; my $rownum = $row->[0] + 1; "PartII_${rownum}b" },
86   sub { my $row = shift; my $rownum = $row->[0] + 1; "PartII_${rownum}c" },
87   sub { my $row = shift; my $rownum = $row->[0] + 1; "PartII_${rownum}d" },
88 );
89
90
91 my @rows = (
92   'lines',
93   '% residential',
94   '% LD carrier',
95   '% residential and LD carrier',
96   '% own loops',
97   '% obtained unswitched UNE loops',
98   '% UNE-P',
99   '% UNE-P replacement',
100   '% FTTP',
101   '% coax',
102   '% wireless',
103 );
104
105 my @fields = (
106   sub { my $row = shift; $rows[$row->[0] - 1]; },
107   sub { my $row = shift; &{$column_value}($row->[0]); },
108   sub { 0; },
109   sub { 0; },
110   sub { 0; },
111 );
112
113 shift @fields if $cgi->param('_type') eq 'xml';
114 </%init>