diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-10-24 00:40:05 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-10-24 00:40:05 -0700 |
commit | ec4ae54938488e037977066b28c6a325272b16fc (patch) | |
tree | 104983666ce725572b51795ee1954baa3d626fca /httemplate/search/report_cust_bill_pkg_discount.html | |
parent | ac67ba5d343e1e704b9e706e2aa19ecd979a5863 (diff) |
discount classes, RT#24911
Diffstat (limited to 'httemplate/search/report_cust_bill_pkg_discount.html')
-rw-r--r-- | httemplate/search/report_cust_bill_pkg_discount.html | 43 |
1 files changed, 24 insertions, 19 deletions
diff --git a/httemplate/search/report_cust_bill_pkg_discount.html b/httemplate/search/report_cust_bill_pkg_discount.html index f9ab901b5..77affd19d 100644 --- a/httemplate/search/report_cust_bill_pkg_discount.html +++ b/httemplate/search/report_cust_bill_pkg_discount.html @@ -1,30 +1,35 @@ -<% include('/elements/header.html', 'Discount report' ) %> +<& /elements/header.html, 'Discount report' &> <FORM ACTION="cust_bill_pkg_discount.html" METHOD="GET"> <TABLE> - <% include( '/elements/tr-select-user.html', - 'label' => 'Discounts by employee: ', - 'access_user' => \%access_user, - ) - %> + <& /elements/tr-select-discount_class.html, + 'field' => 'discount_classnum', + 'pre_options' => [ '0' => 'all' ], + 'empty_label' => '(none)' + &> - <% include( '/elements/tr-select-agent.html', - 'curr_value' => scalar( $cgi->param('agentnum') ), - 'label' => 'for agent: ', - 'disable_empty' => 0, - ) - %> + <& /elements/tr-select-user.html, + 'label' => 'Discounts by employee: ', + 'access_user' => \%access_user, + &> - <% include( '/elements/tr-input-beginning_ending.html' ) %> + <& /elements/tr-select-agent.html, + 'curr_value' => scalar( $cgi->param('agentnum') ), + 'label' => 'for agent: ', + 'disable_empty' => 0, + &> - <% include( '/elements/tr-input-lessthan_greaterthan.html', - 'label' => 'Amount', - 'field' => 'amount', - ) - %> + <& /elements/tr-input-beginning_ending.html &> + +<!-- doesn't actually work yet, needs support in cust_bill_pkg_discount.html + <& /elements/tr-input-lessthan_greaterthan.html, + 'label' => 'Amount', + 'field' => 'amount', + &> +--> </TABLE> @@ -33,7 +38,7 @@ </FORM> -<% include('/elements/footer.html') %> +<& /elements/footer.html &> <%init> die "access denied" |