deposit slips
[freeside.git] / httemplate / search / report_customer_cdr_profit.html
1 <% include('/elements/header.html', 'Customer CDRs Profit/Loss Report' ) %>
2
3 <FORM ACTION="customer_cdr_profit.html" METHOD="GET">
4
5   <TABLE BGCOLOR="#cccccc" CELLSPACING=0>
6
7     <% include( '/elements/tr-select-agent.html',
8                  'curr_value'    => scalar( $cgi->param('agentnum') ),
9                  'label'         => 'Agent ',
10                  'disable_empty' => 0,
11              )
12     %>
13
14     <% include('/elements/tr-select-from_to.html' ) %>
15     
16   </TABLE>
17
18 <BR>
19 <INPUT TYPE="submit" VALUE="Get Report">
20
21 </FORM>
22
23 <% include('/elements/footer.html') %>
24 <%init>
25
26 die "access denied"
27   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports')
28       && $FS::CurrentUser::CurrentUser->access_right('List rating data');
29
30 </%init>