agent-virtualize quick payment entry
[freeside.git] / httemplate / misc / batch-cust_pay.html
1 <% include('/elements/header.html', 'Quick payment entry') %>
2
3 <% include('/elements/error.html') %>
4
5 <FORM ACTION="process/batch-cust_pay.cgi" NAME="OneTrueForm" METHOD="POST" onsubmit="document.OneTrueForm.submit.disabled=true;">
6
7 <!-- <B>Batch</B> <INPUT TYPE="text" NAME="paybatch"><BR><BR> -->
8
9 <% include( "/elements/customer-table.html",
10               header => [ '', 'Amount', 'Check #', '' ],
11               fields => [ sub {'$'}, 'paid', 'payinfo', 'error', ],
12               types  => [ 'immutable', '', '', 'immutable', ],
13               sizes  => [ 0, 8, 10, 0, ],
14               param  => { () },
15           )
16 %>
17
18 <!-- <BR>
19 <INPUT TYPE="button" VALUE="TEST addrow" onclick="addRow()"> -->
20
21 <BR>
22 <INPUT TYPE="submit" NAME="submit" VALUE="Post payment batch">
23
24 </FORM>
25
26 <% include('/elements/footer.html') %>
27
28 <%init>
29
30 die "access denied"
31   unless $FS::CurrentUser::CurrentUser->access_right('Post payment batch');
32
33 </%init>