invoice_sections_with_taxes per-agent, RT#79636
[freeside.git] / httemplate / search / report_svc_fiber.html
1 <& /elements/header.html, $title &>
2
3 <FORM ACTION="svc_fiber.html" METHOD="GET">
4
5   <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
6     <TR>
7       <TH CLASS="background" COLSPAN=2 ALIGN="left"><FONT SIZE="+1">Search options</FONT></TH>
8     </TR>
9
10     <& /elements/tr-select-table.html,
11       label     => 'OLT',
12       table     => 'fiber_olt',
13       name_col  => 'oltname',
14     &>
15     <& /elements/tr-input-text.html, field => 'shelf', label => 'Shelf' &>
16     <& /elements/tr-input-text.html, field => 'card',  label => 'Card' &>
17     <& /elements/tr-input-text.html, field => 'olt_port', label => 'Port' &>
18
19     <& /elements/tr-td-label.html, label => 'ONT model' &>
20       <TD>
21       <& /elements/select-hardware_type.html,
22           'empty_label' => '(all)'
23        &>
24       </TD>
25     </TR>
26
27     <& /elements/tr-input-text.html, field => 'ont_serial', label => 'Serial number' &>
28     <& /elements/tr-input-text.html, field => 'vlan', label => 'VLAN' &>
29   </TABLE>
30
31 <BR>
32 <INPUT TYPE="submit" VALUE="Search">
33
34 </FORM>
35
36 <& /elements/footer.html &>
37 <%init>
38
39 die "access denied"
40   unless $FS::CurrentUser::CurrentUser->access_right('Services: Fiber');
41
42 my $title = 'Search Fiber Services';
43
44 my @olts = qsearch('fiber_olt', {});
45
46 </%init>
47