separate one-time from recurring charges in Customer Accounting Summary, #19732
[freeside.git] / httemplate / search / report_customer_accounting_summary.html
1 <% include('/elements/header.html', 'Customer Accounting Summary Report' ) %>
2
3 <FORM ACTION="customer_accounting_summary.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-part_referral.html',
15                  'curr_value'    => scalar( $cgi->param('refnum') ),
16                  'label'         => 'Advertising source ',
17                  'disable_empty' => 0,
18                  'empty_label'   => 'all',
19              )
20     %>
21
22     <% include('/elements/tr-select-from_to.html' ) %>
23     
24     <% include( '/elements/tr-select-cust_main-status.html',
25                 'label' => 'Customer Status'
26     ) %>
27
28     <& /elements/tr-checkbox.html,
29         'label' => 'Separate setup fees',
30         'field' => 'setuprecur',
31         'value' => 1,
32     &>
33
34     
35   </TABLE>
36
37 <BR>
38 <INPUT TYPE="submit" VALUE="Get Report">
39
40 </FORM>
41
42 <% include('/elements/footer.html') %>
43 <%init>
44
45 die "access denied"
46   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
47
48 </%init>