diff options
author | mark <mark> | 2010-04-08 01:15:26 +0000 |
---|---|---|
committer | mark <mark> | 2010-04-08 01:15:26 +0000 |
commit | 8a10cadd86e9c721fd6f81e2e28b4d0ccfd0d8da (patch) | |
tree | 4f4a082dd5bfa4badb9f5df98607fbd8affd9287 /httemplate/graph/report_cust_pkg_cost.html | |
parent | 8b2b3f00e7c857de3a9bab764c415478acc83e27 (diff) |
RT#1382: beginning of package cost report
Diffstat (limited to 'httemplate/graph/report_cust_pkg_cost.html')
-rw-r--r-- | httemplate/graph/report_cust_pkg_cost.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/httemplate/graph/report_cust_pkg_cost.html b/httemplate/graph/report_cust_pkg_cost.html new file mode 100644 index 000000000..553db096b --- /dev/null +++ b/httemplate/graph/report_cust_pkg_cost.html @@ -0,0 +1,26 @@ +<% include('/elements/header.html', 'Package Costs Report' ) %> + +<FORM ACTION="cust_pkg_cost.cgi" METHOD="GET"> + +<TABLE> + +<% include('/elements/tr-select-from_to.html' ) %> + +<% include('/elements/tr-select-agent.html', + 'label' => 'For agent: ', + 'disable_empty' => 0, + ) +%> + +</TABLE> + +<BR><INPUT TYPE="submit" VALUE="Display"> +</FORM> + +<% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Financial reports'); + +</%init> |