invoice_sections_with_taxes per-agent, RT#79636
[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                  'disable_empty' => 0
22              )
23   %>
24
25   <% include( '/elements/tr-input-beginning_ending.html' ) %>
26
27   <TR>
28     <TD ALIGN="right"><INPUT TYPE="checkbox" NAME="dcln" VALUE="1" CHECKED></TD>
29     <TD>Include approved items</TD>
30   </TR>
31 </TABLE>
32
33 <BR>
34 <INPUT TYPE="submit" VALUE="Get Report">
35
36 </FORM>
37
38 <% include('/elements/footer.html') %>
39 <%init>
40
41 die "access denied"
42   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
43
44 </%init>