Merge branch 'master' of git.freeside.biz:/home/git/freeside
[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 </TABLE>
26
27 <BR><INPUT TYPE="submit" VALUE="Display">
28 </FORM>
29
30 <% include('/elements/footer.html') %>
31 <%init>
32
33 #XXX use a different ACL for package churn?
34 die "access denied"
35   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
36
37 </%init>