be03d163554c356980f980c873a7da59be3c37d7
[freeside.git] / conf / invoice_html
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 }
11 </STYLE>
12
13 <table class="invoice" bgcolor="#ffffff" WIDTH=768 CELLSPACING=8><tr><td>
14
15   <table class="invoice_header" width="100%">
16     <tr>
17      <td><img src="<%= $cid ? "cid:$cid" : "cust_bill-logo.cgi?$template" %>"></td>
18      <td align="left"><%= $returnaddress %></td>
19       <td align="right">
20         <table CLASS="invoice_headerright" cellspacing=0>
21           <tr>
22             <td align="right">
23               Invoice&nbsp;date<BR>
24               <B><%= $date %></B>
25             </td>
26             <td>
27             </td>
28             <td align="center">
29               Invoice&nbsp;#<BR>
30               <B><%= $invnum %></B>
31             </td>
32             <td>
33             </td>
34             <td align="center">
35               Customer #<BR>
36               <B><%= $custnum %></B>
37             </td>
38           </tr>
39           <tr>
40             <th>&nbsp;</th>
41             <th colspan=3 align="center">
42               <FONT SIZE="+3">I</FONT><FONT SIZE="+2">NVOICE</FONT>
43             </th>
44             <th>&nbsp;</th>
45           </tr>
46         </table>
47       </td>
48     </tr>
49
50     <tr>
51       <td>
52       </td>
53       <td align="left">
54         <b><%= $payname %></b><BR>
55         <%= join('<BR>', grep length($_), $company,
56                                           $address1,
57                                           $address2,
58                                           "$city,&nbsp;$state&nbsp;&nbsp;$zip",
59                                           $country,
60                 )
61         %>
62       </td>
63       <td align="right">
64         Terms: <%= $terms %><BR>
65         <%= $po_line %>
66       </td>
67     </tr>
68
69   </table>
70
71   <p><b><font size="+1">C</font><font size="+0">HARGES</font></b>
72   <p>
73   <table class="invoice_longtable" CELLSPACING=0 WIDTH="100%">
74     <tr>
75       <th align="center">Ref</th>
76       <th align="left">Description</th>
77       <%= ( $unitprices 
78               ? '<th align="left">Unit Price</th>'.
79                 '<th align="left">Quantity</th>'
80               : ''
81             )
82       %>
83       <th align="right">Amount</th>
84     </tr>
85     <%=
86
87       foreach my $line ( @detail_items ) {
88         $OUT .=
89           '<tr class="invoice_desc">'.
90             '<td align="center">'. $line->{'ref'}. '</td>'.
91             '<td align="left">'. $line->{'description'}. '</td>'.
92             ( $unitprices 
93                 ? '<td align="left">'. $line->{'unit_amount'}. '</td>'.
94                   '<td align="left">'. $line->{'quantity'}. '</td>'
95                 : ''
96             ).
97             '<td align="right">'. $line->{'amount'}. '</td>'.
98           '</tr>'
99         ;
100         if ( @{$line->{'ext_description'} } ) {
101           $OUT .= '<tr class="invoice_extdesc"><td></td><td';
102           $OUT .= $unitprices ? ' colspan=3>' : '>';
103           $OUT .= '<table width="100%">';
104           foreach my $ext_desc ( @{$line->{'ext_description'} } ) {
105             $OUT .=
106               '<tr class="invoice_extdesc">'.
107                 '<td align="left">&nbsp;&nbsp;'. $ext_desc. '</td>'.
108               '</tr>'
109           }
110           $OUT .= '</table></td><td></td></tr>';
111         }
112       }
113
114       my $style = 'border-top: 3px solid #000000;';
115       my $linenum = 0;
116
117       foreach my $line ( @total_items ) {
118
119         $style .= 'border-bottom: 3px solid #000000;'
120           if ++$linenum == scalar(@total_items);
121
122         $OUT .=
123           '<tr class="invoice_totaldesc">'.
124             qq(<td style="$style">&nbsp;</td>).
125             qq(<td align="left" style="$style").
126             ( $unitprices ? ' colspan=3>' : '>' ).
127               $line->{'total_item'}. '</td>'.
128             qq(<td align="right" style="$style">).
129               $line->{'total_amount'}. '</td>'.
130           '</tr>'
131         ;
132
133         $style='';
134
135       }
136
137     %>
138   </table>
139   <br><br>
140
141 <%= $notes %>
142
143   <hr NOSHADE SIZE=2 COLOR="#000000">
144   <p align="center"><%= $footer %>
145
146 </td></tr></table>