6be9545ac72d280bd5d6f60a6fe1a8a7bda406b0
[freeside.git] / httemplate / view / cust_main / billing.html
1 <FONT CLASS="fsinnerbox-title"><% mt('Billing information') |h %></FONT>
2 % my $yes = emt('yes');
3 % my $no = emt('no');
4
5 <TABLE CLASS="fsinnerbox">
6
7 % if ( $cust_main->complimentary ) {
8   <TR>
9     <TH ALIGN="right"><% mt('Complimentary') |h %></TH>
10     <TD><% $yes %></TD>
11   </TR>
12 % }
13
14 %( my $balance = $cust_main->balance )
15 %  =~ s/^(\-?)(.*)$/<FONT SIZE=+1>$1<\/FONT>$money_char$2/;
16
17 <TR>
18   <TH ALIGN="right"><% mt('Balance due') |h %></TH>
19   <TD><B><% $balance %></B></TD>
20 </TR>
21
22 % #54: just an arbitrary number i pulled out of my goober.  ideally we'd like
23 % # to consider e.g. a histogram of num_ncancelled_packages for the entire
24 % # customer base, and compare it to a graph of the overhead for generating this
25 % # information.  (and optimize it better, we could get it more from SQL)
26 % if ( $cust_main->num_ncancelled_pkgs < 54 ) {
27 %   my $sth = dbh->prepare("
28 %     SELECT DISTINCT freq FROM cust_pkg LEFT JOIN part_pkg USING (pkgpart)
29 %       WHERE freq IS NOT NULL AND freq != '0'
30 %         AND ( cancel IS NULL OR cancel = 0 )
31 %         AND custnum = ?
32 %   ") or die $DBI::errstr;
33
34 %   $sth->execute($cust_main->custnum) or die $sth->errstr;
35
36 %   #not really a numeric sort because freqs can actually be all sorts of things
37 %   # but good enough for the 99% cases of ordering monthly quarterly annually
38 %   my @freqs = sort { $a <=> $b } map { $_->[0] } @{ $sth->fetchall_arrayref };
39
40 %   foreach my $freq (@freqs) {
41 %     my @cust_pkg = qsearch({
42 %       'table'     => 'cust_pkg',
43 %       'addl_from' => 'LEFT JOIN part_pkg USING (pkgpart)',
44 %       'hashref'   => { 'custnum' => $cust_main->custnum, },
45 %       'extra_sql' => 'AND ( cancel IS NULL OR cancel = 0 )
46 %                       AND freq = '. dbh->quote($freq),
47 %     }) or next;
48
49 %     my $freq_pretty = $cust_pkg[0]->part_pkg->freq_pretty;
50 %
51 %     my $amount = 0;
52 %     foreach my $cust_pkg (@cust_pkg) {
53 %       my $part_pkg = $cust_pkg->part_pkg;
54 %       next if $cust_pkg->susp
55 %            && ! $cust_pkg->option('suspend_bill')
56 %            && ( ! $part_pkg->option('suspend_bill')
57 %                 || $cust_pkg->option('no_suspend_bill')
58 %               );
59 %
60 %       #add recurring amounts for this package and its billing add-ons
61 %       foreach my $l_part_pkg ( $part_pkg->self_and_bill_linked ) {
62 %         $amount += $l_part_pkg->base_recur;
63 %       }
64 %
65 %       #subtract amounts for any active discounts
66 %       #(there should only be one at the moment, otherwise this makes no sense)
67 %       foreach my $cust_pkg_discount ( $cust_pkg->cust_pkg_discount_active ) {
68 %         my $discount = $cust_pkg_discount->discount;
69 %         #and only one of these for each
70 %         $amount -= $discount->amount;
71 %         $amount -= $amount * $discount->percent/100;
72 %       }
73 %
74 %       $amount *= ( $cust_pkg->quantity || 1 );
75 %
76 %     }
77    
78       <TR>
79         <TH ALIGN="right"><% emt( ucfirst($freq_pretty). ' recurring' ) %></TH>
80         <TD><% $money_char. sprintf('%.2f', $amount) %></TD>
81         </TD>
82       </TR>
83 %   }
84
85 % }
86
87 % if ( $conf->exists('cust_main-select-prorate_day') ) {
88 <TR>
89   <TH ALIGN="right"><% mt('Prorate day of month') |h %></TH>
90   <TD><% $cust_main->prorate_day %>
91   </TD>
92 </TR>
93 % }
94
95 % if ( $conf->exists('cust_main-select-billday') 
96 %        && qsearch({ 'table'     => 'cust_payby',
97 %                     'hashref'   => { 'custnum' => $cust_main->custnum, },
98 %                     'extra_sql' => "AND payby IN ( 'CARD', 'CHEK' )",
99 %                     'order_by'  => 'LIMIT 1',
100 %                  })
101 %    )
102 % {
103     <TR>
104       <TH ALIGN="right"><% mt('Payment day of month') |h %></TH>
105       <TD><% $cust_main->billday %>
106       </TD>
107     </TR>
108 % }
109
110 % if ( $cust_main->po_number ) { 
111     <TR>
112       <TH ALIGN="right"><% mt('Purchase Order #') |h %></TH>
113       <TD><% $cust_main->po_number %></TD>
114     </TR>
115 % } 
116
117 % my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
118
119 % unless (    $conf->exists('cust_class-tax_exempt')
120 %          || $conf->exists('tax-cust_exempt-groups-require_individual_nums')
121 %        )
122 % {
123     <TR>
124       <TH ALIGN="right"><% mt('Tax exempt') |h %><% @exempt_groups ? ' ('.emt('all taxes').')' : '' %></TH>
125       <TD><% $cust_main->tax ? $yes : $no %></TD>
126     </TR>
127 % }
128
129 % foreach my $exempt_group ( @exempt_groups ) {
130 %   my $cust_main_exemption = $cust_main->tax_exemption($exempt_group);
131     <TR>
132       <TH ALIGN="right"><% mt('Tax exempt') |h %> (<% $exempt_group %> taxes)</TH>
133       <TD><% $cust_main_exemption ? $yes : $no %>
134         <% $cust_main_exemption ? $cust_main_exemption->exempt_number : '' |h %>
135       </TD>
136     </TR>
137 % }
138
139 % if ( $conf->config('tax_data_vendor') eq 'cch' ) {
140 <TR>
141   <TH ALIGN="right"><% mt('Tax location') |h %></TH>
142 % my $tax_location = $conf->exists('tax-ship_address')
143 %                    ? $cust_main->ship_location
144 %                    : $cust_main->bill_location;
145   <TD><% $tax_location->geocode('cch') %></TD>
146 </TR>
147 % }
148 <TR>
149   <TH ALIGN="right"><% mt('Postal mail invoices') |h %></TH>
150   <TD>
151     <% ( grep { $_ eq 'POST' } @invoicing_list )
152          ? $yes. ( $cust_main->invoice_attn
153                      ? ', attn: '. $cust_main->invoice_attn
154                      : ''
155                  )
156          : $no
157     %>
158   </TD>
159 </TR>
160 <TR>
161   <TH ALIGN="right"><% mt('Email invoices') |h %></TH>
162   <TD>
163     <% $cust_main->invoice_noemail ? $no : $yes %>
164   </TD>
165 </TR>
166 % unless ( $conf->exists('cust-email-high-visibility')) {
167 <TR>
168   <TH ALIGN="right"><% mt('Email address(es)') |h %></TH>
169   <TD>
170     <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %>
171 %   if ( $cust_main->message_noemail ) {
172     <BR>
173     <SPAN STYLE="font-size: small"><% emt('(do not send notices)') %></SPAN>
174 %   }
175   </TD>
176 </TR>
177 % }
178 <TR>
179   <TH ALIGN="right"><% mt('Invoice terms') |h %></TH>
180   <TD>
181     <% $cust_main->invoice_terms
182          || emt('Default').' ('. ( $conf->config('invoice_default_terms', $cust_main->agentnum)
183                                      || emt('Payable upon receipt')
184                                  ).
185                            ')'
186     %>
187   </TD>
188 </TR>
189 <TR>
190   <TH ALIGN="right"><% mt('Credit limit') |h %></TH>
191   <TD>
192 %   my $default_credit_limit = $conf->config('default_credit_limit');
193     <% length($cust_main->credit_limit)
194          ? $money_char. sprintf("%.2f", $cust_main->credit_limit)
195          : $default_credit_limit
196            ? "Default ($money_char". sprintf("%.2f", $default_credit_limit). ")"
197            : emt('Unlimited')
198     %>
199 %   if ( $cust_main->num_cust_main_credit_limit ) {
200       <A HREF="<% $p %>search/cust_main_credit_limit.html?custnum=<% $cust_main->custnum %>">(incidents)</A>
201 %   }
202   </TD>
203 </TR>
204
205 % if ( $conf->exists('voip-cust_cdr_spools') ) { 
206   <TR>
207     <TH ALIGN="right"><% mt('Spool CDRs') |h %></TH>
208     <TD><% $cust_main->spool_cdr ? $yes : $no %></TD>
209   </TR>
210 % } 
211
212 % if ( $conf->exists('voip-cust_cdr_squelch') ) { 
213   <TR>
214     <TH ALIGN="right"><% mt($conf->exists('voip-cdr_email') ? 'Print CDRs' : 'Show CDRs') |h %></TH>
215     <TD><% $cust_main->squelch_cdr ? $no : $yes %></TD>
216   </TR>
217 % } 
218
219 % if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
220    <TR>
221      <TH ALIGN="right"><% mt('Breakdown CDRs by accountcode') |h %></TH>
222      <TD><% $cust_main->accountcode_cdr ? $yes : $no %></TD>
223    </TR>
224 % }
225
226 % if ( $conf->exists('voip-cust_email_csv_cdr') ) { 
227   <TR>
228     <TH ALIGN="right"><% mt('Email CDRs as CSV') |h %></TH>
229     <TD><% $cust_main->email_csv_cdr ? $yes : $no %></TD>
230   </TR>
231 % } 
232
233 % if ( $show_term || $cust_main->cdr_termination_percentage ) {
234   <TR>
235     <TH ALIGN="right"><% mt('CDR termination settlement') |h %></TH>
236     <TD><% $cust_main->cdr_termination_percentage %><% $cust_main->cdr_termination_percentage =~ /\d/ ? '%' : '' %></TD>
237   </TR>
238 % }
239
240 % if ( $cust_main->currency ) {
241   <TR>
242     <TH ALIGN="right"><% mt('Invoicing currency') |h %></TH>
243     <TD><% $cust_main->currency. ': '. code2currency($cust_main->currency) %></TD>
244   </TR>
245 % }
246
247 % if ( $cust_main->locale ) {
248 % my %locale_info = FS::Locales->locale_info($cust_main->locale);
249   <TR>
250     <TH ALIGN="right"><% mt('Invoicing locale') |h %></TH>
251     <TD><% $locale_info{name} . " (" . $locale_info{country} .")" %></TD>
252   </TR>
253 % }
254
255
256 </TABLE>
257 <%init>
258
259 my( $cust_main ) = @_;
260 my @invoicing_list = $cust_main->invoicing_list;
261 my $conf = new FS::Conf;
262 my $money_char = $conf->config('money_char') || '$';
263
264 #false laziness w/edit/cust_main/billing.html
265 my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
266 my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
267 $term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
268 my $show_term = $term_sth->fetchrow_arrayref->[0];
269
270 </%init>