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=625 CELLSPACING=8><tr><td>
15 <table class="invoice_header" width="100%">
17 <td><img src="<%= $cid ? "cid:$cid" : "cust_bill-logo.cgi?$template" %>"></td>
18 <td align="left"><%= $returnaddress %></td>
20 <table CLASS="invoice_headerright" cellspacing=0>
36 <B><%= $custnum %></B>
41 <th colspan=3 align="center">
42 <FONT SIZE="+3">I</FONT><FONT SIZE="+2">NVOICE</FONT>
54 <b><%= $payname %></b><BR>
55 <%= join('<BR>', grep length($_), $company,
58 "$city, $state $zip",
63 <%= $ship_enable ? ('<td align="left">'.
64 join('<BR>',grep length($_), '<b>Service Address</b>',
68 "$ship_city, $ship_state $ship_zip",
73 '</td><tr><td></td><td></td>'
78 Terms: <%= $terms %><BR>
85 <p><b><font size="+1">C</font><font size="+0">HARGES</font></b>
87 <table class="invoice_longtable" CELLSPACING=0 WIDTH="100%">
89 <th align="center">Ref</th>
90 <th align="left">Description</th>
92 ? '<th align="left">Unit Price</th>'.
93 '<th align="left">Quantity</th>'
97 <th align="right">Amount</th>
101 foreach my $line ( @detail_items ) {
103 '<tr class="invoice_desc">'.
104 '<td align="center">'. $line->{'ref'}. '</td>'.
105 '<td align="left">'. $line->{'description'}. '</td>'.
107 ? '<td align="left">'. $line->{'unit_amount'}. '</td>'.
108 '<td align="left">'. $line->{'quantity'}. '</td>'
111 '<td align="right">'. $line->{'amount'}. '</td>'.
114 if ( @{$line->{'ext_description'} } ) {
115 $OUT .= '<tr class="invoice_extdesc"><td></td><td';
116 $OUT .= $unitprices ? ' colspan=3>' : '>';
117 $OUT .= '<table width="100%">';
118 foreach my $ext_desc ( @{$line->{'ext_description'} } ) {
120 '<tr class="invoice_extdesc">'.
121 '<td align="left"> '. $ext_desc. '</td>'.
124 $OUT .= '</table></td><td></td></tr>';
128 my $style = 'border-top: 3px solid #000000;';
131 foreach my $line ( @total_items ) {
133 $style .= 'border-bottom: 3px solid #000000;'
134 if ++$linenum == scalar(@total_items);
137 '<tr class="invoice_totaldesc">'.
138 qq(<td style="$style"> </td>).
139 qq(<td align="left" style="$style").
140 ( $unitprices ? ' colspan=3>' : '>' ).
141 $line->{'total_item'}. '</td>'.
142 qq(<td align="right" style="$style">).
143 $line->{'total_amount'}. '</td>'.
157 <hr NOSHADE SIZE=2 COLOR="#000000">
158 <p align="center"><%= $footer %>