This commit was generated by cvs2svn to compensate for changes in r8593,
[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_summary TH { border-bottom: 2px solid #000000 }
7 .invoice_summary TD { font-size: 10pt; empty-cells: show }
8 .invoice_longtable table { cellspacing: none }
9 .invoice_longtable TH { border-top: 2px solid #000000; border-bottom: 1px solid #000000; padding-left: none; padding-right: none; font-size: 10pt }
10 .invoice_desc TD { border-top: 2px solid #000000; font-weight: bold; font-size: 10pt }
11 .invoice_desc_more TD { font-weight: bold; font-size: 10pt }
12 .invoice_extdesc TD { font-size: 8pt }
13 .invoice_totaldesc TD { font-size: 10pt; empty-cells: show }
14 </STYLE>
15
16 <table class="invoice" bgcolor="#ffffff" WIDTH=625 CELLSPACING=8><tr><td>
17
18   <table class="invoice_header" width="100%">
19     <tr>
20      <td><img src="<%= $cid ? "cid:$cid" : "cust_bill-logo.cgi?invnum=$invnum;template=$template" %>"></td>
21      <td align="left"><%= $returnaddress %></td>
22       <td align="right">
23         <table CLASS="invoice_headerright" cellspacing=0>
24           <tr>
25             <td align="center">
26               Invoice&nbsp;date<BR>
27               <B><%= $date %></B>
28             </td>
29             <td>
30             </td>
31             <td align="center">
32               Invoice&nbsp;#<BR>
33               <B><%= $invnum %></B>
34             </td>
35             <td>
36             </td>
37             <td align="center">
38               Customer #<BR>
39               <B><%= $custnum %></B>
40             </td>
41           </tr>
42           <tr>
43             <th>&nbsp;</th>
44             <th colspan=3 align="center">
45               <FONT SIZE="+3"><%= $notice_name ? substr($notice_name, 0, 1) : 'I' %></FONT><FONT SIZE="+2"><%= $notice_name ? uc(substr($notice_name, 1)) : 'NVOICE' %></FONT>
46             </th>
47             <th>&nbsp;</th>
48           </tr>
49         </table>
50       </td>
51     </tr>
52
53     <tr>
54       <td>
55       </td>
56       <td align="left">
57         <b><%= $payname %></b><BR>
58         <%= join('<BR>', grep length($_), $company,
59                                           $address1,
60                                           $address2,
61                                           "$city,&nbsp;$state&nbsp;&nbsp;$zip",
62                                           $country,
63                 )
64         %>
65       </td>
66       <%= $ship_enable ? ('<td align="left">'.
67                           join('<BR>',grep length($_), '<b>Service Address</b>',
68                                                        $ship_company,
69                                                        $ship_address1,
70                                                        $ship_address2,
71                                                        "$ship_city,&nbsp;$ship_state&nbsp;$ship_zip",
72                                                        $ship_country,
73                                                        ' ',
74                                                        ' ',
75                               ).
76                            '</td><tr><td></td><td></td>'
77                          )
78                        : ''
79       %>
80       <td align="right">
81         Terms: <%= $terms %><BR>
82         <%= $po_line %>
83       </td>
84     </tr>
85
86   </table>
87   <%= $summary %>
88   <%=
89       foreach my $section ( grep { !$summary || $_->{description} ne $finance_section } @sections ) {
90         if ($section->{'pretotal'} && !$summary) {
91           $OUT .=
92             '<table width="100%"><tr><td>'.
93             '<p align="right"><b><font size="+1">'.
94             uc(substr($section->{'pretotal'},0,1)).
95             '</font><font size="+0">'. uc(substr($section->{'pretotal'},1)).
96             '</font></b>'.
97             '<p>'.
98             '</td></tr></table>';
99         }
100         unless ($section->{'summarized'}) {
101           $OUT .= '<table><tr><td>';
102           if ($section->{'description'}) {
103             $OUT .=
104               '<p><b><font size="+1">'. uc(substr($section->{'description'},0,1)).
105               '</font><font size="+0">'. uc(substr($section->{'description'},1)).
106               '</font></b>'.
107               '<p>';
108           }else{
109             $OUT .=
110               '<p><b><font size="+1">C</font><font size="+0">HARGES</font></b>'.
111               '<p>';
112           }
113           $OUT .= '</td></tr></table>';
114
115           $OUT .=
116             '<table class="invoice_longtable" CELLSPACING=0 WIDTH="100%">'.
117             '<tr>';
118
119           if ($section->{header_generator}) {
120             $OUT .= &{$section->{header_generator}}();
121           } else {
122             $OUT .=  '<th align="center">Ref</th>'.
123                      '<th align="left">Description</th>'.
124                         ( $unitprices 
125                           ? '<th align="left">Unit Price</th>'.
126                             '<th align="left">Quantity</th>'
127                           : ''
128                         ). 
129                       '<th align="right">Amount</th>';
130           }
131             '</tr>';
132
133           my $lastref = 0;
134           foreach my $line (
135             grep { ( scalar(@sections) > 1 
136                    ? $section->{'description'} eq $_->{'section'}->{'description'}
137                    : 1
138                  ) }
139             @detail_items )
140           {
141             $OUT .=
142               '<tr class="invoice_desc';
143             if ( $section->{description_generator} ) {
144               $OUT .= &{$section->{description_generator}}($line);
145             } else {
146               $OUT .=  ( ($line->{'ref'} && $line->{'ref'} ne $lastref) ? '' : '_more' ).
147                        '">'.
148                        '<td align="center">'. 
149                        ( $line->{'ref'} ne $lastref ? $line->{'ref'} : '' ). '</td>'.
150                        '<td align="left">'. $line->{'description'}. '</td>'.
151                        ( $unitprices 
152                            ? '<td align="left">'. $line->{'unit_amount'}. '</td>'.
153                              '<td align="left">'. $line->{'quantity'}. '</td>'
154                            : ''
155                        ).
156
157                        '<td align="right">'. $line->{'amount'}. '</td>';
158             }
159             $OUT .= '</tr>';
160             $lastref = $line->{'ref'};
161             if ( @{$line->{'ext_description'} } ) {
162               $OUT .= '<tr class="invoice_extdesc"><td></td><td';
163               $OUT .= $unitprices ? ' colspan=3>' : '>';
164               $OUT .= '<table width="100%">';
165               foreach my $ext_desc ( @{$line->{'ext_description'} } ) {
166                 $OUT .=
167                   '<tr class="invoice_extdesc">'.
168                     '<td align="left" '.
169                          ( $ext_desc =~ /<\/?TD>/i ? '' : 'colspan=99' ). '>'.
170                       '&nbsp;&nbsp;'. $ext_desc.
171                     '</td>'.
172                   '</tr>'
173               }
174               $OUT .= '</table></td><td></td></tr>';
175             }
176           }
177
178
179           if (scalar(@sections) > 1) {
180             my $style = 'border-top: 3px solid #000000;'.
181                         'border-bottom: 3px solid #000000;';
182             $OUT .=
183               '<tr class="invoice_totaldesc">'.
184               qq(<td style="$style">&nbsp;</td>);
185             if ($section->{total_generator}) {
186               $OUT .= &{$section->{total_generator}}($section);
187             } else {
188               $OUT .= qq(<td align="left" style="$style"). 
189                       ( $unitprices ? ' colspan=3>' : '>' ).
190                       $section->{'description'}. ' Total </td>'.
191                       qq(<td align="right" style="$style">).
192                       $section->{'subtotal'}. '</td>';
193             }
194             $OUT .= '</tr>';
195           }
196         } 
197         if ($section->{'posttotal'}) {
198           $OUT .= '<tr><td align="right" colspan=5>';
199           $OUT .=
200             '<p><font size="+1">'. $section->{'posttotal'}.
201             '</font>'.
202             '<p>';
203           $OUT .= '</td></tr>';
204         }
205
206       }
207
208       my $style = 'border-top: 3px solid #000000;';
209       my $linenum = 0;
210
211       foreach my $line ( @total_items ) {
212
213         $style .= 'border-bottom: 3px solid #000000;'
214           if ++$linenum == scalar(@total_items);
215
216         $OUT .=
217           '<tr class="invoice_totaldesc">';
218         if ($section->{total_line_generator}) {
219           $OUT .= &{$section->{total_line_generator}}($line);
220         } else {
221           $OUT .= qq(<td style="$style">&nbsp;</td>).
222                   qq(<td align="left" style="$style").
223                   ( $unitprices ? ' colspan=3>' : '>' ).
224                     $line->{'total_item'}. '</td>'.
225                   qq(<td align="right" style="$style">).
226                     $line->{'total_amount'}. '</td>';
227         }
228         $OUT .= '</tr>';
229
230         $style='';
231
232       }
233
234     %>
235   </table>
236   <br><br>
237
238 <%= length($summary)
239       ? ''
240       : ( $smallernotes
241             ? '<FONT SIZE="-1">'.$notes.'</FONT>'
242             : $notes
243         )
244 %>
245
246   <hr NOSHADE SIZE=2 COLOR="#000000">
247   <p align="center" <%= $smallerfooter ? 'STYLE="font-size:75%;"' : '' %>><%= $footer %>
248
249 </td></tr></table>