summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/billing.html
blob: 01e7654d1bb536789fddb8287abf062bfef3e319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<FONT CLASS="fsinnerbox-title"><% mt('Billing information') |h %></FONT>
%# If we can't see the unencrypted card, then bill now is an exercise in
%# frustration (without some sort of job queue magic to send it to a secure
%# machine, anyway)
%if (  $FS::CurrentUser::CurrentUser->access_right('Bill customer now')
%      && ! $cust_main->is_encrypted($cust_main->payinfo)
%   ) { 
%#  (<A HREF="<% $p %>misc/bill.cgi?<% $cust_main->custnum %>"><% mt('Bill now') |h %></A>)
  <& /elements/bill.html,
       custnum   => $cust_main->custnum,
       label     => emt('Bill now'),
       url       => $p.'view/cust_main.cgi?'.$cust_main->custnum,
  &>
% } 

<TABLE CLASS="fsinnerbox">

%( my $balance = $cust_main->balance )
%  =~ s/^(\-?)(.*)$/<FONT SIZE=+1>$1<\/FONT>$money_char$2/;

<TR>
  <TD ALIGN="right"><% mt('Balance due') |h %></TD>
  <TD BGCOLOR="#ffffff"><B><% $balance %></B></TD>
</TR>

% #54: just an arbitrary number i pulled out of my goober.  in reality we'd want
% # to consider e.g. a histogram of num_ncancelled_packages for the entire
% # customer base, and compare it to a graph of the overhead for generating this
% # information.  (and optimize it better, we could get it more from SQL)
% if ( $cust_main->num_ncancelled_pkgs < 54 ) {
%   my $sth = dbh->prepare("
%     SELECT DISTINCT freq FROM cust_pkg LEFT JOIN part_pkg USING (pkgpart)
%       WHERE freq IS NOT NULL AND freq != '0'
%         AND ( cancel IS NULL OR cancel = 0 )
%         AND custnum = ?
%   ") or die $DBI::errstr;
% 
%   $sth->execute($cust_main->custnum) or die $sth->errstr;

%   #not really a numeric sort because freqs can actually be all sorts of things
%   # but good enough for the 99% cases of ordering monthly quarterly annually
%   my @freqs = sort { $a <=> $b } map { $_->[0] } @{ $sth->fetchall_arrayref };
% 
%   foreach my $freq (@freqs) {
%     my @cust_pkg = qsearch({
%       'table'     => 'cust_pkg',
%       'addl_from' => 'LEFT JOIN part_pkg USING (pkgpart)',
%       'hashref'   => { 'custnum' => $cust_main->custnum, },
%       'extra_sql' => 'AND ( cancel IS NULL OR cancel = 0 )
%                       AND freq = '. dbh->quote($freq),
%     }) or next;
% 
%     my $freq_pretty = $cust_pkg[0]->part_pkg->freq_pretty;
%
%     my $amount = 0;
%     foreach my $cust_pkg (@cust_pkg) {
%       my $part_pkg = $cust_pkg->part_pkg;
%       next if $cust_pkg->susp
%            && ! $cust_pkg->option('suspend_bill')
%            && ( ! $part_pkg->option('suspend_bill')
%                 || $cust_pkg->option('no_suspend_bill')
%               );
%
%       #add recurring amounts for this package and its billing add-ons
%       foreach my $l_part_pkg ( $part_pkg->self_and_bill_linked ) {
%         $amount += $l_part_pkg->option('recur_fee');
%       }
%
%       #subtract amounts for any active discounts
%       #(there should only be one at the moment, otherwise this makes no sense)
%       foreach my $cust_pkg_discount ( $cust_pkg->cust_pkg_discount_active ) {
%         my $discount = $cust_pkg_discount->discount;
%         #and only one of these for each
%         $amount -= $discount->amount;
%         $amount -= $amount * $discount->percent/100;
%       }
%
%     }
   
      <TR>
        <TH ALIGN="right"><% emt( ucfirst($freq_pretty). ' recurring' ) %></TH>
        <TD><% $money_char. sprintf('%.2f', $amount) %></TD>
        </TD>
      </TR>
%   }

% }

% if ( $conf->exists('cust_main-select-prorate_day') ) {
<TR>
  <TD ALIGN="right"><% mt('Prorate day of month') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->prorate_day %>
  </TD>
</TR>
% }

% if ( $conf->exists('cust_main-select-billday') 
%    && ($cust_main->payby eq 'CARD' || $cust_main->payby eq 'CHEK') ) {
<TR>
  <TD ALIGN="right"><% mt('Billing day of month') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->billday %>
  </TD>
</TR>
% }

<TR>
  <TD ALIGN="right"><% mt('Billing type') |h %></TD>
  <TD BGCOLOR="#ffffff">
% if ( $cust_main->payby eq 'CARD' || $cust_main->payby eq 'DCRD' ) { 

%   my $autodemand = $cust_main->payby eq 'CARD' ? 'automatic' : 'on-demand';
    <% mt("Credit card ([_1])",$autodemand) |h %>
  </TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Card number') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->paymask %></TD>
</TR>
%
%#false laziness w/elements/select-month_year.html & edit/cust_main/billing.html
%my( $mon, $year );
%my $date = $cust_main->paydate || '12-2037';
%if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
%  ( $mon, $year ) = ( $2, $1 );
%} elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
%  ( $mon, $year ) = ( $1, $3 );
%} else {
%  warn "unrecognized expiration date format: $date";
%  ( $mon, $year ) = ( '', '' );
%}
%

<TR>
  <TD ALIGN="right"><% mt('Expiration') |h %></TD>
  <TD BGCOLOR="#ffffff"><% "$mon/$year" %></TD>
</TR>
% if ( $cust_main->paystart_month ) { 

  <TR>
    <TD ALIGN="right"><% mt('Start date') |h %></TD>
    <TD BGCOLOR="#ffffff"><% $cust_main->paystart_month. '/'. $cust_main->paystart_year %>
  </TR>
% } elsif ( $cust_main->payissue ) { 

  <TR>
    <TD ALIGN="right"><% mt('Issue #') |h %></TD>
    <TD BGCOLOR="#ffffff"><% $cust_main->payissue %>
  </TR>
% } 


<TR>
  <TD ALIGN="right"><% mt('Name on card') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD>
</TR>
% } elsif ( $cust_main->payby eq 'CHEK' || $cust_main->payby eq 'DCHK') {
%     my( $account, $aba ) = split('@', $cust_main->paymask );
%  my $branch = '';
%  ($branch,$aba) = split('\.',$aba) if $conf->config('echeck-country') eq 'CA';


% my $autodemand = $cust_main->payby eq 'CHEK' ? 'automatic' : 'on-demand';
    <% mt("Electronic check ([_1])",$autodemand) |h %>
  </TD>
</TR>

%  #false laziness w/edit/cust_main/billing.html and misc/payment.cgi
%  my $routing_label = $conf->config('echeck-country') eq 'US'
%                        ? 'ABA/Routing number'
%                        : 'Routing number';

<TR>
  <TD ALIGN="right"><% mt($routing_label) |h %></TD>
  <TD BGCOLOR="#ffffff"><% $aba %></TD>
</TR>

% if ( $conf->config('echeck-country') eq 'CA' ) {
<TR>
  <TD ALIGN="right"><% mt('Branch number') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $branch %></TD>
<TR>
% }

  <TD ALIGN="right"><% mt('Account number') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $account %></TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Account type') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->paytype %></TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Bank name') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD>
</TR>
% if ( $conf->exists('show_bankstate') ) {
<TR>
  <TD ALIGN="right"><% $paystate_label %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->paystate || '&nbsp;&nbsp;&nbsp;' %></TD>
</TR>
% }
% } elsif ( $cust_main->payby eq 'LECB' ) {
%     $cust_main->payinfo =~ /^(\d{3})(\d{3})(\d{4})$/;
%     my $payinfo = "$1-$2-$3";

    <% mt('Phone bill billing') |h %> 
  </TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Phone number') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $payinfo %></TD>
</TR>
% } elsif ( $cust_main->payby eq 'BILL' ) { 

    <% mt('Billing') |h %> 
  </TD>
</TR>
% if ( $cust_main->payinfo ) { 

<TR>
  <TD ALIGN="right"><% mt('P.O.') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->payinfo %></TD>
</TR>
% } 


<TR>
  <TD ALIGN="right"><% mt('Attention') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->payname |h %></TD>
</TR>
% } elsif ( $cust_main->payby eq 'COMP' ) { 

    <% mt('Complimentary') |h %> 
  </TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Authorized by') |h %></TD>
  <TD BGCOLOR="#ffffff"><% $cust_main->payinfo %></TD>
</TR>
%
%#false laziness w/above etc.
%my( $mon, $year );
%my $date = $cust_main->paydate || '12-2037';
%if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
%  ( $mon, $year ) = ( $2, $1 );
%} elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
%  ( $mon, $year ) = ( $1, $3 );
%} else {
%  warn "unrecognized expiration date format: $date";
%  ( $mon, $year ) = ( '', '' );
%}
%

<TR>
  <TD ALIGN="right"><% mt('Expiration') |h %></TD>
  <TD BGCOLOR="#ffffff"><% "$mon/$year" %></TD>
</TR>
% } 

% my $yes = emt('yes');
% my $no = emt('no');

% my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');

% unless (    $conf->exists('cust_class-tax_exempt')
%          || $conf->exists('tax-cust_exempt-groups-require_individual_nums')
%        )
% {
    <TR>
      <TD ALIGN="right"><% mt('Tax exempt') |h %><% @exempt_groups ? ' ('.emt('all taxes').')' : '' %></TD>
      <TD BGCOLOR="#ffffff"><% $cust_main->tax ? $yes : $no %></TD>
    </TR>
% }

% foreach my $exempt_group ( @exempt_groups ) {
%   my $cust_main_exemption = $cust_main->tax_exemption($exempt_group);
    <TR>
      <TD ALIGN="right"><% mt('Tax exempt') |h %> (<% $exempt_group %> taxes)</TD>
      <TD BGCOLOR="#ffffff"><% $cust_main_exemption ? $yes : $no %>
        <% $cust_main_exemption ? $cust_main_exemption->exempt_number : '' |h %>
      </TD>
    </TR>
% }

% if ( $conf->exists('enable_taxproducts') ) {
<TR>
  <TD ALIGN="right"><% mt('Tax location') |h %></TD>
% my $tax_location = $conf->exists('tax-ship_address')
%                    ? $cust_main->ship_location
%                    : $cust_main->bill_location;
  <TD BGCOLOR="#ffffff"><% $tax_location->geocode('cch') %></TD>
</TR>
% }
<TR>
  <TD ALIGN="right"><% mt('Postal mail invoices') |h %></TD>
  <TD BGCOLOR="#ffffff">
    <% ( grep { $_ eq 'POST' } @invoicing_list ) ? $yes : $no %>
  </TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Fax invoices') |h %></TD>
  <TD BGCOLOR="#ffffff">
    <% ( grep { $_ eq 'FAX' } @invoicing_list ) ? $yes : $no %>
  </TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Email invoices') |h %></TD>
  <TD BGCOLOR="#ffffff">
    <% $cust_main->invoice_noemail ? $no : $yes %>
  </TD>
</TR>
% unless ( $conf->exists('cust-email-high-visibility')) {
<TR>
  <TD ALIGN="right"><% mt('Email address(es)') |h %></TD>
  <TD BGCOLOR="#ffffff">
    <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %>
%   if ( $cust_main->message_noemail ) {
    <BR>
    <SPAN STYLE="font-size: small"><% emt('(do not send notices)') %></SPAN>
%   }
  </TD>
</TR>
% }
<TR>
  <TD ALIGN="right"><% mt('Invoice terms') |h %></TD>
  <TD BGCOLOR="#ffffff">
    <% $cust_main->invoice_terms
         || emt('Default').' ('. ( $conf->config('invoice_default_terms', $cust_main->agentnum)
                                     || emt('Payable upon receipt')
                                 ).
                           ')'
    %>
  </TD>
</TR>
<TR>
  <TD ALIGN="right"><% mt('Credit limit') |h %></TD>
  <TD BGCOLOR="#ffffff">
%   my $default_credit_limit = $conf->config('default_credit_limit');
    <% length($cust_main->credit_limit)
         ? $money_char. sprintf("%.2f", $cust_main->credit_limit)
         : $default_credit_limit
           ? "Default ($money_char". sprintf("%.2f", $default_credit_limit). ")"
           : emt('Unlimited')
    %>
%   if ( $cust_main->num_cust_main_credit_limit ) {
      <A HREF="<% $p %>search/cust_main_credit_limit.html?custnum=<% $cust_main->custnum %>">(incidents)</A>
%   }
  </TD>
</TR>

% if ( $conf->exists('voip-cust_cdr_spools') ) { 
  <TR>
    <TD ALIGN="right"><% mt('Spool CDRs') |h %></TD>
    <TD BGCOLOR="#ffffff"><% $cust_main->spool_cdr ? $yes : $no %></TD>
  </TR>
% } 

% if ( $conf->exists('voip-cust_cdr_squelch') ) { 
  <TR>
    <TD ALIGN="right"><% mt($conf->exists('voip-cdr_email') ? 'Print CDRs' : 'Show CDRs') |h %></TD>
    <TD BGCOLOR="#ffffff"><% $cust_main->squelch_cdr ? $no : $yes %></TD>
  </TR>
% } 

% if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
   <TR>
     <TD ALIGN="right"><% mt('Breakdown CDRs by accountcode') |h %></TD>
     <TD BGCOLOR="#ffffff"><% $cust_main->accountcode_cdr ? $yes : $no %></TD>
   </TR>
% }

% if ( $conf->exists('voip-cust_email_csv_cdr') ) { 
  <TR>
    <TD ALIGN="right"><% mt('Email CDRs as CSV') |h %></TD>
    <TD BGCOLOR="#ffffff"><% $cust_main->email_csv_cdr ? $yes : $no %></TD>
  </TR>
% } 

% if ( $show_term || $cust_main->cdr_termination_percentage ) {
  <TR>
    <TD ALIGN="right"><% mt('CDR termination settlement') |h %></TD>
    <TD BGCOLOR="#ffffff"><% $cust_main->cdr_termination_percentage %><% $cust_main->cdr_termination_percentage =~ /\d/ ? '%' : '' %></TD>
  </TR>
% }

% if ( $cust_main->locale ) {
% my %locale_info = FS::Locales->locale_info($cust_main->locale);
  <TR>
    <TD ALIGN="right"><% mt('Invoicing locale') |h %></TD>
    <TD BGCOLOR="#ffffff"><% $locale_info{name} . " (" . $locale_info{country} .")" %></TD>
  </TR>
% }


</TABLE>
<%once>

my $paystate_label = FS::Msgcat::_gettext('paystate');
$paystate_label = 'Bank state' if $paystate_label =~/^paystate$/;

</%once>
<%init>

my( $cust_main ) = @_;
my @invoicing_list = $cust_main->invoicing_list;
my $conf = new FS::Conf;
my $money_char = $conf->config('money_char') || '$';

#false laziness w/edit/cust_main/billing.html
my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
$term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
my $show_term = $term_sth->fetchrow_arrayref->[0];

</%init>