diff options
| author | Jonathan Prykop <jonathan@freeside.biz> | 2016-01-25 22:59:47 -0600 |
|---|---|---|
| committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-01-25 22:59:47 -0600 |
| commit | 9d4be18318e5f4baaaa7fd5f995bc307a8dc7f2b (patch) | |
| tree | a95bd2aee5deef1a6937af200522cc9f9f9445b6 /httemplate/search/report_customer_usage_profit.html | |
| parent | 163d6b01bcfcd1fc78724248ebe6b451ae402d45 (diff) | |
RT#39638: VoIP Usage cost reporting
Diffstat (limited to 'httemplate/search/report_customer_usage_profit.html')
| -rwxr-xr-x | httemplate/search/report_customer_usage_profit.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/httemplate/search/report_customer_usage_profit.html b/httemplate/search/report_customer_usage_profit.html new file mode 100755 index 000000000..f16489b99 --- /dev/null +++ b/httemplate/search/report_customer_usage_profit.html @@ -0,0 +1,29 @@ +<% include('/elements/header.html', 'Customer Usage Profit/Loss Report' ) %> + +<FORM ACTION="customer_usage_profit.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' ) %> + + </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> |
