blob: 4f391fde8e8b2ee4f175f1cc966ebb43b5667af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<& /elements/header.html, mt('Payables Report') &>
<FORM ACTION="vend_bill.html" METHOD="GET">
<TABLE BGCOLOR="#cccccc" CELLSPACING=0>
<TR>
<TD ALIGN="right" VALIGN="center"><% mt('Date') |h %></TD>
<TD>
<TABLE>
<& /elements/tr-input-beginning_ending.html,
prefix => '_date',
layout => 'horiz',
&>
</TABLE>
</TD>
</TR>
<TR>
<TD ALIGN="right" VALIGN="center"><% mt('Payment date') |h %></TD>
<TD>
<TABLE>
<& /elements/tr-input-beginning_ending.html,
prefix => 'payment_date',
layout => 'horiz',
&>
</TABLE>
</TD>
</TR>
<& /elements/tr-select-vend_class.html,
&>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">
</FORM>
<& /elements/footer.html &>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
</%init>
|