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 }
17 <table class="invoice" bgcolor="#ffffff" WIDTH=625 CELLSPACING=8><tr><td>
19 <table class="invoice_header" width="100%">
21 <td><img src="<%= $cid ? "cid:$cid" : "cust_bill-logo.cgi?invnum=$invnum;template=$template" %>"></td>
22 <td align="left"><%= $returnaddress %></td>
24 <table CLASS="invoice_headerright" cellspacing=0>
27 <%= emt('Quotation date') %><BR>
33 <%= emt('Quotation #') %><BR>
34 <B><%= $quotationnum %></B>
39 <%= $custnum ? emt('Customer #') : $prospectnum ? emt('Prospect #') : '' %><BR>
40 <B><%= $custnum || $prospectnum %></B>
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>
58 <b><%= $name %></b><BR>
59 <%= join('<BR>', grep length($_), $company,
62 "$city, $state $zip",
67 <%= $ship_enable ? ('<td align="left">'.
68 join('<BR>',grep length($_), '<b>'.emt('Service Address').'</b>',
72 "$ship_city, $ship_state $ship_zip",
77 '</td><tr><td></td><td></td>'
84 $OUT .= qq! <img src="cid:$barcode_cid"><br> !;
87 $OUT .= qq! <img src="cust_bill-barcode.cgi?invnum=$invnum;template=$template"><br> !;
90 <%= $terms ? emt('Terms') . ": $terms" : '' %><BR>
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;
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)).
112 unless ($section->{'summarized'}) {
113 $OUT .= '</table>' if ( $notfirst || $section->{'pretotal'} && !$summary );
114 $OUT .= '<table><tr><td>';
115 my $sectionhead = $section->{'description'} || emt('Charges');
117 '<p class="allcaps"><b><font size="+1">'. substr($sectionhead,0,1).
118 '</font><font size="+0">'. substr($sectionhead,1).
121 '</td></tr></table>';
124 '<table class="invoice_longtable" CELLSPACING=0 WIDTH="100%">'.
127 if ($section->{header_generator}) {
128 my $header = &{$section->{header_generator}}();
130 $columncount = scalar(my @array = split /<\/th><th/i, $header);
132 $OUT .= '<th align="center">' . emt('Ref') . '</th>'.
133 '<th align="left">' . emt('Description') . '</th>'.
135 ? '<th align="left">' . emt('Unit Price') . '</th>'.
136 '<th align="left">' . emt('Quantity') . '</th>'
138 '<th align="right">' . emt('Amount') . '</th>';
144 grep { ( scalar(@sections) > 1
145 ? $section->{'description'} eq $_->{'section'}->{'description'}
151 '<tr class="invoice_desc';
152 if ( $section->{description_generator} ) {
153 $OUT .= &{$section->{description_generator}}($line);
155 $OUT .= ( ($line->{'ref'} && $line->{'ref'} ne $lastref) ? '' : '_more' ).
157 '<td align="center">'.
158 ( $line->{'ref'} ne $lastref ? $line->{'ref'} : '' ). '</td>'.
159 '<td align="left">'. $line->{'description'}. '</td>'.
161 ? '<td align="left">'. $line->{'unit_amount'}. '</td>'.
162 '<td align="left">'. $line->{'quantity'}. '</td>'
166 '<td align="right">'. $line->{'amount'}. '</td>';
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%">';
176 foreach my $ext_desc ( @{$line->{'ext_description'} } ) {
178 '<tr class="invoice_extdesc">'.
179 ( $section->{'description_generator'} ? '<td></td>' : '' ).
181 ( $ext_desc =~ /<\/?TD>/i ? '' : 'colspan=99' ). '>'.
182 ' '. $ext_desc.
186 unless ( $section->{description_generator} ) {
187 $OUT .= '</table></td><td></td>';
194 if ($section->{'description'} || $multisection and !$section->{no_subtotal}) {
195 my $style = 'border-top: 3px solid #000000;'.
196 'border-bottom: 3px solid #000000;';
198 '<tr class="invoice_totaldesc">'.
199 qq(<td style="$style"> </td>);
200 if ($section->{total_generator}) {
201 $OUT .= &{$section->{total_generator}}($section);
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>';
212 if ($section->{'posttotal'}) {
213 $OUT .= '<tr><td align="right" colspan='. $columncount. '>';
215 '<p><font size="+1">'. $section->{'posttotal'}.
218 $OUT .= '</td></tr>';
225 my $style = 'border-top: 3px solid #000000;';
228 foreach my $line ( @total_items ) {
230 $style .= 'border-bottom: 3px solid #000000;'
231 if ++$linenum == scalar(@total_items) - ( $balance_due_below_line ? 1 : 0 );
234 '<tr class="invoice_totaldesc">';
235 if ($section->{total_line_generator}) {
236 $OUT .= &{$section->{total_line_generator}}($line);
238 $OUT .= qq(<td style="$style"> </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>';
258 ? '<FONT SIZE="-1">'.$notes.'</FONT>'
263 <hr NOSHADE SIZE=2 COLOR="#000000">
264 <p align="center" <%= $smallerfooter ? 'STYLE="font-size:75%;"' : '' %>><%= $footer %>