fix "monthly recurring" display w/quantities, RT#36813
[freeside.git] / httemplate / view / cust_main / billing.html
1 <FONT CLASS="fsinnerbox-title"><% mt('Billing information') |h %></FONT>
2 %# If we can't see the unencrypted card, then bill now is an exercise in
3 %# frustration (without some sort of job queue magic to send it to a secure
4 %# machine, anyway)
5 %if (  $FS::CurrentUser::CurrentUser->access_right('Bill customer now')
6 %      && ! $cust_main->is_encrypted($cust_main->payinfo)
7 %   ) { 
8 %#  (<A HREF="<% $p %>misc/bill.cgi?<% $cust_main->custnum %>"><% mt('Bill now') |h %></A>)
9   <& /elements/bill.html,
10        custnum   => $cust_main->custnum,
11        label     => emt('Bill now'),
12        url       => $p.'view/cust_main.cgi?'.$cust_main->custnum,
13   &>
14 % } 
15
16 <TABLE CLASS="fsinnerbox">
17
18 %( my $balance = $cust_main->balance )
19 %  =~ s/^(\-?)(.*)$/<FONT SIZE=+1>$1<\/FONT>$money_char$2/;
20
21 <TR>
22   <TD ALIGN="right"><% mt('Balance due') |h %></TD>
23   <TD BGCOLOR="#ffffff"><B><% $balance %></B></TD>
24 </TR>
25
26 % #54: just an arbitrary number i pulled out of my goober.  ideally we'd like
27 % # to consider e.g. a histogram of num_ncancelled_packages for the entire
28 % # customer base, and compare it to a graph of the overhead for generating this
29 % # information.  (and optimize it better, we could get it more from SQL)
30 % if ( $cust_main->num_ncancelled_pkgs < 54 ) {
31 %   my $sth = dbh->prepare("
32 %     SELECT DISTINCT freq FROM cust_pkg LEFT JOIN part_pkg USING (pkgpart)
33 %       WHERE freq IS NOT NULL AND freq != '0'
34 %         AND ( cancel IS NULL OR cancel = 0 )
35 %         AND custnum = ?
36 %   ") or die $DBI::errstr;
37
38 %   $sth->execute($cust_main->custnum) or die $sth->errstr;
39
40 %   #not really a numeric sort because freqs can actually be all sorts of things
41 %   # but good enough for the 99% cases of ordering monthly quarterly annually
42 %   my @freqs = sort { $a <=> $b } map { $_->[0] } @{ $sth->fetchall_arrayref };
43
44 %   foreach my $freq (@freqs) {
45 %     my @cust_pkg = qsearch({
46 %       'table'     => 'cust_pkg',
47 %       'addl_from' => 'LEFT JOIN part_pkg USING (pkgpart)',
48 %       'hashref'   => { 'custnum' => $cust_main->custnum, },
49 %       'extra_sql' => 'AND ( cancel IS NULL OR cancel = 0 )
50 %                       AND freq = '. dbh->quote($freq),
51 %     }) or next;
52
53 %     my $freq_pretty = $cust_pkg[0]->part_pkg->freq_pretty;
54 %
55 %     my $amount = 0;
56 %     foreach my $cust_pkg (@cust_pkg) {
57 %       my $part_pkg = $cust_pkg->part_pkg;
58 %       next if $cust_pkg->susp
59 %            && ! $cust_pkg->option('suspend_bill')
60 %            && ( ! $part_pkg->option('suspend_bill')
61 %                 || $cust_pkg->option('no_suspend_bill')
62 %               );
63 %
64 %       #add recurring amounts for this package and its billing add-ons
65 %       foreach my $l_part_pkg ( $part_pkg->self_and_bill_linked ) {
66 %         $amount += $l_part_pkg->base_recur;
67 %       }
68 %
69 %       #subtract amounts for any active discounts
70 %       #(there should only be one at the moment, otherwise this makes no sense)
71 %       foreach my $cust_pkg_discount ( $cust_pkg->cust_pkg_discount_active ) {
72 %         my $discount = $cust_pkg_discount->discount;
73 %         #and only one of these for each
74 %         $amount -= $discount->amount;
75 %         $amount -= $amount * $discount->percent/100;
76 %       }
77 %
78 %       $amount *= ( $cust_pkg->quantity || 1 );
79 %
80 %     }
81    
82       <TR>
83         <TD ALIGN="right"><% emt( ucfirst($freq_pretty). ' recurring' ) %></TD>
84         <TD BGCOLOR="#ffffff"><% $money_char. sprintf('%.2f', $amount) %></TD>
85         </TD>
86       </TR>
87 %   }
88
89 % }
90
91 % if ( $conf->exists('cust_main-select-prorate_day') ) {
92 <TR>
93   <TD ALIGN="right"><% mt('Prorate day of month') |h %></TD>
94   <TD BGCOLOR="#ffffff"><% $cust_main->prorate_day %>
95   </TD>
96 </TR>
97 % }
98
99 % if ( $conf->exists('cust_main-select-billday') 
100 %    && ($cust_main->payby eq 'CARD' || $cust_main->payby eq 'CHEK') ) {
101 <TR>
102   <TD ALIGN="right"><% mt('Billing day of month') |h %></TD>
103   <TD BGCOLOR="#ffffff"><% $cust_main->billday %>
104   </TD>
105 </TR>
106 % }
107
108 <TR>
109   <TD ALIGN="right"><% mt('Billing type') |h %></TD>
110   <TD BGCOLOR="#ffffff">
111 % if ( $cust_main->payby eq 'CARD' || $cust_main->payby eq 'DCRD' ) { 
112
113 %   my $autodemand = $cust_main->payby eq 'CARD' ? 'automatic' : 'on-demand';
114     <% mt("Credit card ([_1])",$autodemand) |h %>
115   </TD>
116 </TR>
117 <TR>
118   <TD ALIGN="right"><% mt('Card number') |h %></TD>
119   <TD BGCOLOR="#ffffff"><% $cust_main->paymask %></TD>
120 </TR>
121 %
122 %#false laziness w/elements/select-month_year.html & edit/cust_main/billing.html
123 %my( $mon, $year );
124 %my $date = $cust_main->paydate || '12-2037';
125 %if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
126 %  ( $mon, $year ) = ( $2, $1 );
127 %} elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
128 %  ( $mon, $year ) = ( $1, $3 );
129 %} else {
130 %  warn "unrecognized expiration date format: $date";
131 %  ( $mon, $year ) = ( '', '' );
132 %}
133 %
134
135 <TR>
136   <TD ALIGN="right"><% mt('Expiration') |h %></TD>
137   <TD BGCOLOR="#ffffff"><% "$mon/$year" %></TD>
138 </TR>
139 % if ( $cust_main->paystart_month ) { 
140
141   <TR>
142     <TD ALIGN="right"><% mt('Start date') |h %></TD>
143     <TD BGCOLOR="#ffffff"><% $cust_main->paystart_month. '/'. $cust_main->paystart_year %>
144   </TR>
145 % } elsif ( $cust_main->payissue ) { 
146
147   <TR>
148     <TD ALIGN="right"><% mt('Issue #') |h %></TD>
149     <TD BGCOLOR="#ffffff"><% $cust_main->payissue %>
150   </TR>
151 % } 
152
153
154 <TR>
155   <TD ALIGN="right"><% mt('Name on card') |h %></TD>
156   <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD>
157 </TR>
158 % } elsif ( $cust_main->payby eq 'CHEK' || $cust_main->payby eq 'DCHK') {
159 %     my( $account, $aba ) = split('@', $cust_main->paymask );
160 %  my $branch = '';
161 %  ($branch,$aba) = split('\.',$aba) if $conf->config('echeck-country') eq 'CA';
162
163
164 % my $autodemand = $cust_main->payby eq 'CHEK' ? 'automatic' : 'on-demand';
165     <% mt("Electronic check ([_1])",$autodemand) |h %>
166   </TD>
167 </TR>
168
169 %  #false laziness w/edit/cust_main/billing.html and misc/payment.cgi
170 %  my $routing_label = $conf->config('echeck-country') eq 'US'
171 %                        ? 'ABA/Routing number'
172 %                        : 'Routing number';
173
174 <TR>
175   <TD ALIGN="right"><% mt($routing_label) |h %></TD>
176   <TD BGCOLOR="#ffffff"><% $aba %></TD>
177 </TR>
178
179 % if ( $conf->config('echeck-country') eq 'CA' ) {
180 <TR>
181   <TD ALIGN="right"><% mt('Branch number') |h %></TD>
182   <TD BGCOLOR="#ffffff"><% $branch %></TD>
183 <TR>
184 % }
185
186   <TD ALIGN="right"><% mt('Account number') |h %></TD>
187   <TD BGCOLOR="#ffffff"><% $account %></TD>
188 </TR>
189 <TR>
190   <TD ALIGN="right"><% mt('Account type') |h %></TD>
191   <TD BGCOLOR="#ffffff"><% $cust_main->paytype %></TD>
192 </TR>
193 <TR>
194   <TD ALIGN="right"><% mt('Bank name') |h %></TD>
195   <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD>
196 </TR>
197 % if ( $conf->exists('show_bankstate') ) {
198 <TR>
199   <TD ALIGN="right"><% $paystate_label %></TD>
200   <TD BGCOLOR="#ffffff"><% $cust_main->paystate || '&nbsp;&nbsp;&nbsp;' %></TD>
201 </TR>
202 % }
203 % } elsif ( $cust_main->payby eq 'LECB' ) {
204 %     $cust_main->payinfo =~ /^(\d{3})(\d{3})(\d{4})$/;
205 %     my $payinfo = "$1-$2-$3";
206
207     <% mt('Phone bill billing') |h %> 
208   </TD>
209 </TR>
210 <TR>
211   <TD ALIGN="right"><% mt('Phone number') |h %></TD>
212   <TD BGCOLOR="#ffffff"><% $payinfo %></TD>
213 </TR>
214 % } elsif ( $cust_main->payby eq 'BILL' ) { 
215
216     <% mt('Billing') |h %> 
217   </TD>
218 </TR>
219 % if ( $cust_main->payinfo ) { 
220
221 <TR>
222   <TD ALIGN="right"><% mt('P.O.') |h %></TD>
223   <TD BGCOLOR="#ffffff"><% $cust_main->payinfo %></TD>
224 </TR>
225 % } 
226
227
228 <TR>
229   <TD ALIGN="right"><% mt('Attention') |h %></TD>
230   <TD BGCOLOR="#ffffff"><% $cust_main->payname |h %></TD>
231 </TR>
232 % } elsif ( $cust_main->payby eq 'COMP' ) { 
233
234     <% mt('Complimentary') |h %> 
235   </TD>
236 </TR>
237 <TR>
238   <TD ALIGN="right"><% mt('Authorized by') |h %></TD>
239   <TD BGCOLOR="#ffffff"><% $cust_main->payinfo %></TD>
240 </TR>
241 %
242 %#false laziness w/above etc.
243 %my( $mon, $year );
244 %my $date = $cust_main->paydate || '12-2037';
245 %if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
246 %  ( $mon, $year ) = ( $2, $1 );
247 %} elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
248 %  ( $mon, $year ) = ( $1, $3 );
249 %} else {
250 %  warn "unrecognized expiration date format: $date";
251 %  ( $mon, $year ) = ( '', '' );
252 %}
253 %
254
255 <TR>
256   <TD ALIGN="right"><% mt('Expiration') |h %></TD>
257   <TD BGCOLOR="#ffffff"><% "$mon/$year" %></TD>
258 </TR>
259 % } 
260
261 % my $yes = emt('yes');
262 % my $no = emt('no');
263
264 % my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
265
266 % unless (    $conf->exists('cust_class-tax_exempt')
267 %          || $conf->exists('tax-cust_exempt-groups-require_individual_nums')
268 %        )
269 % {
270     <TR>
271       <TD ALIGN="right"><% mt('Tax exempt') |h %><% @exempt_groups ? ' ('.emt('all taxes').')' : '' %></TD>
272       <TD BGCOLOR="#ffffff"><% $cust_main->tax ? $yes : $no %></TD>
273     </TR>
274 % }
275
276 % foreach my $exempt_group ( @exempt_groups ) {
277 %   my $cust_main_exemption = $cust_main->tax_exemption($exempt_group);
278     <TR>
279       <TD ALIGN="right"><% mt('Tax exempt') |h %> (<% $exempt_group %> taxes)</TD>
280       <TD BGCOLOR="#ffffff"><% $cust_main_exemption ? $yes : $no %>
281         <% $cust_main_exemption ? $cust_main_exemption->exempt_number : '' |h %>
282       </TD>
283     </TR>
284 % }
285
286 % if ( $conf->exists('enable_taxproducts') ) {
287 <TR>
288   <TD ALIGN="right"><% mt('Tax location') |h %></TD>
289 % my $tax_location = $conf->exists('tax-ship_address')
290 %                    ? $cust_main->ship_location
291 %                    : $cust_main->bill_location;
292   <TD BGCOLOR="#ffffff"><% $tax_location->geocode('cch') %></TD>
293 </TR>
294 % }
295 <TR>
296   <TD ALIGN="right"><% mt('Postal mail invoices') |h %></TD>
297   <TD BGCOLOR="#ffffff">
298     <% ( grep { $_ eq 'POST' } @invoicing_list ) ? $yes : $no %>
299   </TD>
300 </TR>
301 <TR>
302   <TD ALIGN="right"><% mt('Fax invoices') |h %></TD>
303   <TD BGCOLOR="#ffffff">
304     <% ( grep { $_ eq 'FAX' } @invoicing_list ) ? $yes : $no %>
305   </TD>
306 </TR>
307 <TR>
308   <TD ALIGN="right"><% mt('Email invoices') |h %></TD>
309   <TD BGCOLOR="#ffffff">
310     <% $cust_main->invoice_noemail ? $no : $yes %>
311   </TD>
312 </TR>
313 % unless ( $conf->exists('cust-email-high-visibility')) {
314 <TR>
315   <TD ALIGN="right"><% mt('Email address(es)') |h %></TD>
316   <TD BGCOLOR="#ffffff">
317     <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %>
318 %   if ( $cust_main->message_noemail ) {
319     <BR>
320     <SPAN STYLE="font-size: small"><% emt('(do not send notices)') %></SPAN>
321 %   }
322   </TD>
323 </TR>
324 % }
325 <TR>
326   <TD ALIGN="right"><% mt('Invoice terms') |h %></TD>
327   <TD BGCOLOR="#ffffff">
328     <% $cust_main->invoice_terms
329          || emt('Default').' ('. ( $conf->config('invoice_default_terms', $cust_main->agentnum)
330                                      || emt('Payable upon receipt')
331                                  ).
332                            ')'
333     %>
334   </TD>
335 </TR>
336 <TR>
337   <TD ALIGN="right"><% mt('Credit limit') |h %></TD>
338   <TD BGCOLOR="#ffffff">
339 %   my $default_credit_limit = $conf->config('default_credit_limit');
340     <% length($cust_main->credit_limit)
341          ? $money_char. sprintf("%.2f", $cust_main->credit_limit)
342          : $default_credit_limit
343            ? "Default ($money_char". sprintf("%.2f", $default_credit_limit). ")"
344            : emt('Unlimited')
345     %>
346 %   if ( $cust_main->num_cust_main_credit_limit ) {
347       <A HREF="<% $p %>search/cust_main_credit_limit.html?custnum=<% $cust_main->custnum %>">(incidents)</A>
348 %   }
349   </TD>
350 </TR>
351
352 % if ( $conf->exists('voip-cust_cdr_spools') ) { 
353   <TR>
354     <TD ALIGN="right"><% mt('Spool CDRs') |h %></TD>
355     <TD BGCOLOR="#ffffff"><% $cust_main->spool_cdr ? $yes : $no %></TD>
356   </TR>
357 % } 
358
359 % if ( $conf->exists('voip-cust_cdr_squelch') ) { 
360   <TR>
361     <TD ALIGN="right"><% mt($conf->exists('voip-cdr_email') ? 'Print CDRs' : 'Show CDRs') |h %></TD>
362     <TD BGCOLOR="#ffffff"><% $cust_main->squelch_cdr ? $no : $yes %></TD>
363   </TR>
364 % } 
365
366 % if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
367    <TR>
368      <TD ALIGN="right"><% mt('Breakdown CDRs by accountcode') |h %></TD>
369      <TD BGCOLOR="#ffffff"><% $cust_main->accountcode_cdr ? $yes : $no %></TD>
370    </TR>
371 % }
372
373 % if ( $conf->exists('voip-cust_email_csv_cdr') ) { 
374   <TR>
375     <TD ALIGN="right"><% mt('Email CDRs as CSV') |h %></TD>
376     <TD BGCOLOR="#ffffff"><% $cust_main->email_csv_cdr ? $yes : $no %></TD>
377   </TR>
378 % } 
379
380 % if ( $show_term || $cust_main->cdr_termination_percentage ) {
381   <TR>
382     <TD ALIGN="right"><% mt('CDR termination settlement') |h %></TD>
383     <TD BGCOLOR="#ffffff"><% $cust_main->cdr_termination_percentage %><% $cust_main->cdr_termination_percentage =~ /\d/ ? '%' : '' %></TD>
384   </TR>
385 % }
386
387 % if ( $cust_main->locale ) {
388 % my %locale_info = FS::Locales->locale_info($cust_main->locale);
389   <TR>
390     <TD ALIGN="right"><% mt('Invoicing locale') |h %></TD>
391     <TD BGCOLOR="#ffffff"><% $locale_info{name} . " (" . $locale_info{country} .")" %></TD>
392   </TR>
393 % }
394
395
396 </TABLE>
397 <%once>
398
399 my $paystate_label = FS::Msgcat::_gettext('paystate');
400 $paystate_label = 'Bank state' if $paystate_label =~/^paystate$/;
401
402 </%once>
403 <%init>
404
405 my( $cust_main ) = @_;
406 my @invoicing_list = $cust_main->invoicing_list;
407 my $conf = new FS::Conf;
408 my $money_char = $conf->config('money_char') || '$';
409
410 #false laziness w/edit/cust_main/billing.html
411 my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
412 my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
413 $term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
414 my $show_term = $term_sth->fetchrow_arrayref->[0];
415
416 </%init>