blob: ffc44ec8548195b13c5a76711128af83a5437dd1 (
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
|
<%= $url = "$selfurl?action="; ''; %>
<%= include('header', 'All Invoices') %>
<%=
if ( @invoices ) {
my $th = q!<TH STYLE="background: #ff9999; text-align: left; padding: .1em .5em;">!;
my $thr = q!<TH STYLE="background: #ff9999; text-align: right; padding: .1em .5em;">!;
$OUT .= '<TABLE STYLE="border: 0;" CELLSPACING="0">'.
'<TR>'.$th.'Invoice #</TH>'.$th.'Date</TH>'.$thr.'Charges</TH>'
.$th.'Date Paid</TH>'.$thr.'Owed</TH></TR>';
my $col1 = "#ffffff";
my $col2 = "#dddddd";
my $col = $col1;
foreach my $invoice ( @invoices ) {
my $td = qq!<TD STYLE="background: $col; padding: .1em .5em;">!;
my $tdr = qq!<TD STYLE="background: $col; padding: .1em .5em; text-align: right;">!;
my $a=qq!<A HREF="${url}view_invoice;invnum=!. $invoice->{'invnum'}. '">';
$OUT .=
"<TR>".
$td . $a . $invoice->{'invnum'}. "</A></TD>" .
$td . $a . $invoice->{'date'} . "</A></TD>" .
$tdr . $a . $money_char . $invoice->{'charged'} . "</A></TD>" .
$td . $a . $invoice->{'lastpay'} . "</A></TD>" .
$tdr . $a . $money_char . $invoice->{'owed'} . "</A></TD>" .
'</TR>';
$col = $col eq $col1 ? $col2 : $col1;
}
my $tht = '<TH COLSPAN="4" STYLE="background: #ff9999; padding: .1em .5em; text-align: right;">';
$OUT .= '<TR>'.$tht.'BALANCE DUE</TH>'.$tht.$money_char.$balance.'</TH></TR>';
$OUT .= '</TABLE><BR>';
} else {
$OUT .= '<P>You have no invoices.</P>';
}
%>
<%= include('footer') %>
|