blob: 70923b633946aebb587e39abe54c177747e7d2d0 (
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
|
<TR ID="invoice_row" STYLE="display:none;">
<TH ALIGN="right"><% mt('Open invoices') |h %></TH>
<TD COLSPAN=7>
<SELECT
ID = "<% $opt{prefix} %>invoice"
NAME = "<% $opt{prefix} %>invoice"
onChange = "<% $opt{prefix} %>invoice_select_changed(this)"
<% $opt{disabled} %>
>
<OPTION VALUE="select">Select an invoice to pay</OPTION>
% foreach my $record (@records) {
% my $read_date = time2str("%b %o, %Y", $record->_date);
<OPTION VALUE="<% $record->charged %>"><% $record->invnum %> (<% $read_date %>) - <% $record->charged %></OPTION>
% }
</SELECT>
</TD>
</TR>
<%init>
my %opt = @_;
my @records = qsearch( {
'select' => '*',
'table' => 'cust_bill',
'hashref' => { 'custnum' => $opt{custnum} },
'order_by' => 'ORDER BY _date',
});
</%init>
|