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