diff options
author | Mark Wells <mark@freeside.biz> | 2012-03-22 22:08:54 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2012-03-22 22:08:54 -0700 |
commit | 9f97c81b19a3184ea68df32aaea43808b22e10f0 (patch) | |
tree | 91f707ca2c521d513856283bc021d54e2a07d13a /httemplate/graph/report_cust_signup.html | |
parent | 69bf020f03918910e0e34260d6e5a9d984f0414d (diff) |
customer signup report, #17050
Diffstat (limited to 'httemplate/graph/report_cust_signup.html')
-rw-r--r-- | httemplate/graph/report_cust_signup.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/httemplate/graph/report_cust_signup.html b/httemplate/graph/report_cust_signup.html new file mode 100644 index 000000000..9d3f5006b --- /dev/null +++ b/httemplate/graph/report_cust_signup.html @@ -0,0 +1,37 @@ +<% include('/elements/header.html', 'Customer Signup Summary' ) %> + +<FORM ACTION="cust_signup.html" METHOD="GET"> + +<TABLE> + +<% include('/elements/tr-select-from_to.html' ) %> + +<% include('/elements/tr-select-agent.html', + 'curr_value' => scalar($cgi->param('agentnum')), + 'label' => 'For agent: ', + 'disable_empty' => 0, + ) +%> + +<% include('/elements/tr-select-part_referral.html', + 'curr_value' => scalar($cgi->param('refnum')), + 'label' => 'Advertising source: ', + 'disable_empty' => 0, + 'pre_options' => [ 'all' => 'all (aggregate)' ], + 'empty_label' => 'all (breakdown)', + ) +%> + +</TABLE> + +<BR><INPUT TYPE="submit" VALUE="Display"> +</FORM> + +<% include('/elements/footer.html') %> +<%init> + +#XXX use a different ACL for package churn? +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Financial reports'); + +</%init> |