1 <STYLE TYPE="text/css">
2 .invoice { font-family: sans-serif; font-size: 10pt }
3 .invoice_header { font-size: 10pt }
4 .invoice_headerright TH { border-top: 2px solid #000000; border-bottom: 2px solid #000000 }
5 .invoice_headerright TD { font-size: 10pt; empty-cells: show }
6 .invoice_longtable table { cellspacing: none }
7 .invoice_longtable TH { border-top: 2px solid #000000; border-bottom: 1px solid #000000; padding-left: none; padding-right: none; font-size: 10pt }
8 .invoice_desc TD { border-top: 2px solid #000000; font-weight: bold; font-size: 10pt }
9 .invoice_extdesc TD { font-size: 8pt }
10 .invoice_totaldesc TD { font-size: 10pt; empty-cells: show }
13 <table class="invoice" bgcolor="#ffffff" WIDTH=768 CELLSPACING=8><tr><td>
15 <table class="invoice_header" width="100%">
17 <td><img src="<%= $cid ? "cid:$cid" : "cust_bill-logo.cgi?invnum=$invnum;template=$template" %>"></td>
18 <td align="left"><%= $returnaddress %></td>
20 <table CLASS="invoice_headerright" cellspacing=0>
29 Invoice number<BR>
35 <th colspan=1 align="center">
36 <FONT SIZE="+3">S</FONT><FONT SIZE="+2">TATEMENT</FONT>
48 <b><%= $payname %></b><BR>
49 <%= join('<BR>', grep length($_), $company,
52 "$city, $state $zip",
58 Terms: <%= $terms %><BR>
65 <p><b><font size="+1">C</font><font size="+0">HARGES</font></b>
67 <table class="invoice_longtable" CELLSPACING=0 WIDTH="100%">
69 <th align="center">Ref</th>
70 <th align="left">Description</th>
71 <th align="right">Amount</th>
75 foreach my $line ( @detail_items ) {
77 '<tr class="invoice_desc">'.
78 '<td align="center">'. $line->{'ref'}. '</td>'.
79 '<td align="left">'. $line->{'description'}. '</td>'.
80 '<td align="right">'. $line->{'amount'}. '</td>'.
83 foreach my $ext_desc ( @{$line->{'ext_description'} } ) {
85 '<tr class="invoice_extdesc">'.
87 '<td align="left">- '. $ext_desc. '</td>'.
93 my $style = 'border-top: 3px solid #000000;';
96 foreach my $line ( @total_items ) {
98 $style .= 'border-bottom: 3px solid #000000;'
99 if ++$linenum == scalar(@total_items);
102 '<tr class="invoice_totaldesc">'.
103 qq(<td style="$style"> </td>).
104 qq(<td align="left" style="$style">).
105 $line->{'total_item'}. '</td>'.
106 qq(<td align="right" style="$style">).
107 $line->{'total_amount'}. '</td>'.
121 <hr NOSHADE SIZE=2 COLOR="#000000">
122 <p align="center"><%= $footer %>