select multiple package classes (or report classes) on sales report, RT#24776
[freeside.git] / httemplate / graph / report_cust_signup.html
1 <% include('/elements/header.html', 'Customer Signup Summary' ) %>
2
3 <FORM ACTION="cust_signup.html" METHOD="GET">
4
5 <TABLE>
6
7 <% include('/elements/tr-select-from_to.html' ) %>
8
9 <% include('/elements/tr-select-agent.html',
10              'curr_value'    => scalar($cgi->param('agentnum')),
11              'label'         => 'For agent: ',
12              'disable_empty' => 0,
13           )
14 %>
15
16 <% include('/elements/tr-select-part_referral.html',
17              'curr_value'    => scalar($cgi->param('refnum')),
18              'label'         => 'Advertising source: ',
19              'disable_empty' => 0,
20              'pre_options'   => [ 'all' => 'all (aggregate)' ],
21              'empty_label'   => 'all (breakdown)',
22           )
23 %>
24
25 <& /elements/tr-td-label.html, label => 'Show customer referrals' &>
26 <TD>
27   <INPUT TYPE="checkbox" NAME="indirect" VALUE="Y">
28 </TD>
29 </TR>
30
31 </TABLE>
32
33 <BR><INPUT TYPE="submit" VALUE="Display">
34 </FORM>
35
36 <% include('/elements/footer.html') %>
37 <%init>
38
39 #XXX use a different ACL for package churn?
40 die "access denied"
41   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
42
43 </%init>