diff options
Diffstat (limited to 'httemplate/graph/report_cust_bill_pkg_discount.html')
-rw-r--r-- | httemplate/graph/report_cust_bill_pkg_discount.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/httemplate/graph/report_cust_bill_pkg_discount.html b/httemplate/graph/report_cust_bill_pkg_discount.html new file mode 100644 index 000000000..c599e71f1 --- /dev/null +++ b/httemplate/graph/report_cust_bill_pkg_discount.html @@ -0,0 +1,31 @@ +<% include('/elements/header.html', 'Discount Report' ) %> + +<FORM ACTION="cust_bill_pkg_discount.html" METHOD="GET"> + +<TABLE> + +<% include('/elements/tr-select-from_to.html' ) %> + +<% include('/elements/tr-select-agent.html', + 'label' => 'For agent: ', + 'disable_empty' => 0, + ) +%> + +%# anything about line items, discounts or packages really +%# otaker? +%# package class? +%# discount picker? (discount classes and categories? eek!) + +</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> |