invoice sections by location, #23820
[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; font-size: 12pt }
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           $OUT .= '<p class="allcaps"><b>';
116           my $sectionhead;
117           if ( $section->{'location'} ) {
118             $sectionhead = $section->{'location'}{'address1'};
119             $sectionhead .= ', '.$section->{'location'}{'address2'}
120               if length($section->{'location'}{'address2'});
121             $sectionhead .= ', ' .
122                             $section->{'location'}{'city'} . ', ' .
123                             $section->{'location'}{'state'} . ' ' .
124                             $section->{'location'}{'zip'};
125             $OUT .= $sectionhead;
126           } else {
127             $sectionhead = $section->{'description'} || emt('Charges');
128             $OUT .= '<font size="+1">'. substr($sectionhead,0,1).
129               '</font><font size="+0">'. substr($sectionhead,1).
130           
131               '</font>';
132           }
133           $OUT .= '</b></p></td></tr></table>';
134
135           $OUT .=
136             '<table class="invoice_longtable" CELLSPACING=0 WIDTH="100%">'.
137             '<tr>';
138
139           if ($section->{header_generator}) {
140             my $header = &{$section->{header_generator}}();
141             $OUT .= $header;
142             $columncount = scalar(my @array = split /<\/th><th/i, $header);
143           } else {
144             $OUT .=  '<th align="center">' . emt('Ref') . '</th>'.
145                      '<th align="left">' . emt('Description') . '</th>'.
146                      ( $unitprices 
147                        ? '<th align="right">' . emt('Unit Price') . '</th>'.
148                          '<th align="right">' . emt('Quantity') . '</th>'
149                         : '' ).
150                      '<th align="right">' . emt('Amount') . '</th>';
151           }
152             $OUT .= '</tr>';
153
154           my $lastref = 0;
155           foreach my $line (
156             grep { ( scalar(@sections) > 1 
157                    ? $section->{'description'} eq $_->{'section'}->{'description'}
158                    : 1
159                  ) }
160             @detail_items )
161           {
162             $OUT .=
163               '<tr class="invoice_desc';
164             if ( $section->{description_generator} ) {
165               $OUT .= &{$section->{description_generator}}($line);
166             } else {
167               $OUT .=  ( ($line->{'ref'} && $line->{'ref'} ne $lastref) ? '' : '_more' ).
168                        '">'.
169                        '<td align="center">'. 
170                        ( $line->{'ref'} ne $lastref ? $line->{'ref'} : '' ). '</td>'.
171                        '<td align="left">'. $line->{'description'}. '</td>'.
172                        ( $unitprices 
173                            ? '<td align="right">'. $line->{'unit_amount'}. '</td>'.
174                              '<td align="right">'. $line->{'quantity'}. '</td>'
175                            : ''
176                        ).
177
178                        '<td align="right">'. $line->{'amount'}. '</td>';
179             }
180             $OUT .= '</tr>';
181             $lastref = $line->{'ref'};
182             if ( @{$line->{'ext_description'} } ) {
183               unless ( $section->{description_generator} ) {
184                 $OUT .= '<tr class="invoice_extdesc"><td></td><td';
185                 $OUT .= $unitprices ? ' colspan=3' : '';
186                 $OUT .= '><table width="100%">';
187               }
188               foreach my $ext_desc ( @{$line->{'ext_description'} } ) {
189                 $OUT .=
190                   '<tr class="invoice_extdesc">'.
191                     ( $section->{'description_generator'} ? '<td></td>' : '' ).
192                     '<td align="left" '.
193                          ( $ext_desc =~ /<\/?TD>/i ? '' : 'colspan=99' ). '>'.
194                       '&nbsp;&nbsp;'. $ext_desc.
195                     '</td>'.
196                   '</tr>'
197               }
198               unless ( $section->{description_generator} ) {
199                 $OUT .= '</table></td><td></td>';
200               }
201               $OUT .= '</tr>';
202             }
203           }
204
205
206           if ($section->{'description'} || $multisection and !$section->{no_subtotal}) {
207             my $style = 'border-top: 3px solid #000000;'.
208                         'border-bottom: 3px solid #000000;';
209             $OUT .=
210               '<tr class="invoice_totaldesc">'.
211               qq(<td style="$style">&nbsp;</td>);
212             if ($section->{total_generator}) {
213               $OUT .= &{$section->{total_generator}}($section);
214             } else {
215               $OUT .= qq(<td align="left" style="$style"). 
216                       ( $unitprices ? ' colspan=3>' : '>' ).
217                       $section->{'description'}. ' ' . emt('Total') . '</td>'.
218                       qq(<td align="right" style="$style">).
219                       $section->{'subtotal'}. '</td>';
220             }
221             $OUT .= '</tr>';
222           }
223         } 
224         if ($section->{'posttotal'}) {
225           $OUT .= '<tr><td align="right" colspan='. $columncount. '>';
226           $OUT .=
227             '<p><font size="+1">'. $section->{'posttotal'}.
228             '</font>'.
229             '<p>';
230           $OUT .= '</td></tr>';
231         }
232
233         $notfirst++;
234
235       }
236
237       my $style = 'border-top: 3px solid #000000;';
238       my $linenum = 0;
239
240       foreach my $line ( @total_items ) {
241
242         $style .= 'border-bottom: 3px solid #000000;'
243           if ++$linenum == scalar(@total_items) - ( $balance_due_below_line ? 1 : 0 );
244
245         $OUT .=
246           '<tr class="invoice_totaldesc">';
247         if ($section->{total_line_generator}) {
248           $OUT .= &{$section->{total_line_generator}}($line);
249         } else {
250           $OUT .= qq(<td style="$style">&nbsp;</td>).
251                   qq(<td align="left" style="$style" colspan=").
252                     ( $columncount - 2 ). '">'.
253                     $line->{'total_item'}. '</td>'.
254                   qq(<td align="right" style="$style">).
255                     $line->{'total_amount'}. '</td>';
256         }
257         $OUT .= '</tr>';
258
259         $style='';
260
261       }
262
263     %>
264   </table>
265   <br><br>
266
267 <%= length($summary)
268       ? ''
269       : ( $smallernotes
270             ? '<FONT SIZE="-1">'.$notes.'</FONT>'
271             : $notes
272         )
273 %>
274
275   <hr NOSHADE SIZE=2 COLOR="#000000">
276   <p align="center" <%= $smallerfooter ? 'STYLE="font-size:75%;"' : '' %>><%= $footer %>
277
278 </td></tr></table>