event refactor, landing on HEAD!
[freeside.git] / httemplate / search / report_cust_pay_batch.html
1 <% include('/elements/header.html', 'Batch payment report' ) %>
2
3 <FORM ACTION="cust_pay_batch.cgi" METHOD="GET">
4
5 <TABLE>
6
7   <TR>
8     <TD ALIGN="right">Payments of type: </TD>
9     <TD>
10       <SELECT NAME="payby">
11         <OPTION VALUE="">all</OPTION>
12         <OPTION VALUE="CARD">credit card</OPTION>
13         <OPTION VALUE="CHEK">electronic check / ACH</OPTION>
14       </SELECT>
15     </TD>
16   </TR>
17
18   <% include( '/elements/tr-select-agent.html',
19                  'curr_value' => scalar( $cgi->param('agentnum') ),
20                  'label'      => 'For agent: ',
21              )
22   %>
23
24   <% include( '/elements/tr-input-beginning_ending.html' ) %>
25
26   <TR>
27     <TD ALIGN="right"><INPUT TYPE="checkbox" NAME="dcln" VALUE="1" CHECKED></TD>
28     <TD>Include approved items</TD>
29   </TR>
30 </TABLE>
31
32 <BR>
33 <INPUT TYPE="submit" VALUE="Get Report">
34
35 </FORM>
36
37 <% include('/elements/footer.html') %>
38 <%init>
39
40 die "access denied"
41   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
42
43 </%init>