1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
% if ( $conf->exists('old_fcc_report') ) {
% $m->clear_buffer;
% $m->print($cgi->redirect($fsurl . 'search/old477/report_477.html'));
% $m->abort;
% }
<& /elements/header.html, 'FCC Form 477 Report' &>
<FORM ACTION="477.html" METHOD="GET">
<TABLE BGCOLOR="#cccccc" CELLSPACING=0>
<TR>
<TH CLASS="background" COLSPAN=2 ALIGN="left">
<FONT SIZE="+1">Report options</FONT>
</TH>
</TR>
<& /elements/tr-select-agent.html,
'curr_value' => scalar( $cgi->param('agentnum') ),
'disable_empty' => 0,
&>
<& /elements/tr-input-date-field.html, {
'label' => 'As of date',
'name' => 'date',
'value' => '',
'format' => '%m/%d/%Y'
} &>
<& /elements/tr-checkbox-multiple.html,
'label' => 'Enable parts',
'field' => 'parts',
'labels' => {
6 => 'Part 6 (Fixed Broadband Subscription)',
#7 => 'Part 7 (Mobile Wireless Broadband Subscription),
#8 => 'Part 8 (Mobile Local Telephone Subscription),
9 => 'Part 9 (Local Exchange Telephone Subscription)',
10 => 'Part 10 (Interconnected VoIP Subscription)',
11 => 'Part 11 (Voice Telephone Subscription Detail)',
},
options => [ 6, 9, 10, 11 ],
&>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Get Report">
</FORM>
<& /elements/footer.html &>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('List packages');
my $conf = FS::Conf->new;
</%init>
|