stray closing /TABLE in the no-ticket case
[freeside.git] / httemplate / graph / report_cust_bill_pkg_detail.html
1 <% include('/elements/header.html', 'Usage Sales Report' ) %>
2
3 <FORM ACTION="cust_bill_pkg_detail.cgi" METHOD="GET">
4
5 <TABLE>
6
7 <% include('/elements/tr-select-from_to.html' ) %>
8
9 <% include('/elements/tr-select-agent.html',
10              'label'         => 'For agent: ',
11              'disable_empty' => 0,
12           )
13 %>
14
15 <% include('/elements/tr-select-pkg_class.html',
16               'pre_options' => [ '0' => 'all' ],
17               'empty_label' => '(empty class)',
18            )
19 %>
20
21 <TR>
22   <TD ALIGN="right"><INPUT TYPE="checkbox" NAME="use_override" VALUE="1"></TD>
23   <TD>Separate sub-packages from parents</TD>
24 </TR>
25
26 <% include('/elements/tr-select-table.html',
27               'label'        => 'Usage class: ',
28               'element_name' => 'usageclass',
29               'table'        => 'usage_class',
30               'name_col'     => 'classname',
31               'hashref'      => { 'disabled' => '' },
32               'pre_options'  => [ '0' => 'all' ],
33               'empty_label'  => '(empty class)',
34            )
35 %>
36
37 </TABLE>
38
39 <BR><INPUT TYPE="submit" VALUE="Display">
40 </FORM>
41
42 <% include('/elements/footer.html') %>
43 <%init>
44
45 die "access denied"
46   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
47
48 </%init>