diff options
Diffstat (limited to 'httemplate/search/report_customer_accounting_summary.html')
| -rwxr-xr-x | httemplate/search/report_customer_accounting_summary.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/httemplate/search/report_customer_accounting_summary.html b/httemplate/search/report_customer_accounting_summary.html new file mode 100755 index 000000000..d20f756c8 --- /dev/null +++ b/httemplate/search/report_customer_accounting_summary.html @@ -0,0 +1,33 @@ +<% include('/elements/header.html', 'Customer Accounting Summary Report' ) %> + +<FORM ACTION="customer_accounting_summary.html" METHOD="GET"> + + <TABLE BGCOLOR="#cccccc" CELLSPACING=0> + + <% include( '/elements/tr-select-agent.html', + 'curr_value' => scalar( $cgi->param('agentnum') ), + 'label' => 'Agent ', + 'disable_empty' => 0, + ) + %> + + <% include('/elements/tr-select-from_to.html' ) %> + + <% include( '/elements/tr-select-cust_main-status.html', + 'label' => 'Customer Status' + ) %> + + </TABLE> + +<BR> +<INPUT TYPE="submit" VALUE="Get Report"> + +</FORM> + +<% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Financial reports'); + +</%init> |
