add monthly (and other) recurring to billing info, RT#36813
[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.  in reality we'd want
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->option('recur_fee');
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 %     }
75    
76       <TR>
77         <TH ALIGN="right"><% emt( ucfirst($freq_pretty). ' recurring' ) %></TH>
78         <TD><% $money_char. sprintf('%.2f', $amount) %></TD>
79         </TD>
80       </TR>
81 %   }
82
83 % }
84
85 % if ( $conf->exists('cust_main-select-prorate_day') ) {
86 <TR>
87   <TH ALIGN="right"><% mt('Prorate day of month') |h %></TH>
88   <TD><% $cust_main->prorate_day %>
89   </TD>
90 </TR>
91 % }
92
93 % if ( $conf->exists('cust_main-select-billday') 
94 %        && qsearch({ 'table'     => 'cust_payby',
95 %                     'hashref'   => { 'custnum' => $cust_main->custnum, },
96 %                     'extra_sql' => "AND payby IN ( 'CARD', 'CHEK' )",
97 %                     'order_by'  => 'LIMIT 1',
98 %                  })
99 %    )
100 % {
101     <TR>
102       <TH ALIGN="right"><% mt('Payment day of month') |h %></TH>
103       <TD><% $cust_main->billday %>
104       </TD>
105     </TR>
106 % }
107
108 % if ( $cust_main->po_number ) { 
109     <TR>
110       <TH ALIGN="right"><% mt('Purchase Order #') |h %></TH>
111       <TD><% $cust_main->po_number %></TD>
112     </TR>
113 % } 
114
115 % my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
116
117 % unless (    $conf->exists('cust_class-tax_exempt')
118 %          || $conf->exists('tax-cust_exempt-groups-require_individual_nums')
119 %        )
120 % {
121     <TR>
122       <TH ALIGN="right"><% mt('Tax exempt') |h %><% @exempt_groups ? ' ('.emt('all taxes').')' : '' %></TH>
123       <TD><% $cust_main->tax ? $yes : $no %></TD>
124     </TR>
125 % }
126
127 % foreach my $exempt_group ( @exempt_groups ) {
128 %   my $cust_main_exemption = $cust_main->tax_exemption($exempt_group);
129     <TR>
130       <TH ALIGN="right"><% mt('Tax exempt') |h %> (<% $exempt_group %> taxes)</TH>
131       <TD><% $cust_main_exemption ? $yes : $no %>
132         <% $cust_main_exemption ? $cust_main_exemption->exempt_number : '' |h %>
133       </TD>
134     </TR>
135 % }
136
137 % if ( $conf->config('tax_data_vendor') eq 'cch' ) {
138 <TR>
139   <TH ALIGN="right"><% mt('Tax location') |h %></TH>
140 % my $tax_location = $conf->exists('tax-ship_address')
141 %                    ? $cust_main->ship_location
142 %                    : $cust_main->bill_location;
143   <TD><% $tax_location->geocode('cch') %></TD>
144 </TR>
145 % }
146 <TR>
147   <TH ALIGN="right"><% mt('Postal mail invoices') |h %></TH>
148   <TD>
149     <% ( grep { $_ eq 'POST' } @invoicing_list )
150          ? $yes. ( $cust_main->invoice_attn
151                      ? ', attn: '. $cust_main->invoice_attn
152                      : ''
153                  )
154          : $no
155     %>
156   </TD>
157 </TR>
158 <TR>
159   <TH ALIGN="right"><% mt('Email invoices') |h %></TH>
160   <TD>
161     <% $cust_main->invoice_noemail ? $no : $yes %>
162   </TD>
163 </TR>
164 % unless ( $conf->exists('cust-email-high-visibility')) {
165 <TR>
166   <TH ALIGN="right"><% mt('Email address(es)') |h %></TH>
167   <TD>
168     <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %>
169 %   if ( $cust_main->message_noemail ) {
170     <BR>
171     <SPAN STYLE="font-size: small"><% emt('(do not send notices)') %></SPAN>
172 %   }
173   </TD>
174 </TR>
175 % }
176 <TR>
177   <TH ALIGN="right"><% mt('Invoice terms') |h %></TH>
178   <TD>
179     <% $cust_main->invoice_terms
180          || emt('Default').' ('. ( $conf->config('invoice_default_terms', $cust_main->agentnum)
181                                      || emt('Payable upon receipt')
182                                  ).
183                            ')'
184     %>
185   </TD>
186 </TR>
187 <TR>
188   <TH ALIGN="right"><% mt('Credit limit') |h %></TH>
189   <TD>
190 %   my $default_credit_limit = $conf->config('default_credit_limit');
191     <% length($cust_main->credit_limit)
192          ? $money_char. sprintf("%.2f", $cust_main->credit_limit)
193          : $default_credit_limit
194            ? "Default ($money_char". sprintf("%.2f", $default_credit_limit). ")"
195            : emt('Unlimited')
196     %>
197 %   if ( $cust_main->num_cust_main_credit_limit ) {
198       <A HREF="<% $p %>search/cust_main_credit_limit.html?custnum=<% $cust_main->custnum %>">(incidents)</A>
199 %   }
200   </TD>
201 </TR>
202
203 % if ( $conf->exists('voip-cust_cdr_spools') ) { 
204   <TR>
205     <TH ALIGN="right"><% mt('Spool CDRs') |h %></TH>
206     <TD><% $cust_main->spool_cdr ? $yes : $no %></TD>
207   </TR>
208 % } 
209
210 % if ( $conf->exists('voip-cust_cdr_squelch') ) { 
211   <TR>
212     <TH ALIGN="right"><% mt($conf->exists('voip-cdr_email') ? 'Print CDRs' : 'Show CDRs') |h %></TH>
213     <TD><% $cust_main->squelch_cdr ? $no : $yes %></TD>
214   </TR>
215 % } 
216
217 % if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
218    <TR>
219      <TH ALIGN="right"><% mt('Breakdown CDRs by accountcode') |h %></TH>
220      <TD><% $cust_main->accountcode_cdr ? $yes : $no %></TD>
221    </TR>
222 % }
223
224 % if ( $conf->exists('voip-cust_email_csv_cdr') ) { 
225   <TR>
226     <TH ALIGN="right"><% mt('Email CDRs as CSV') |h %></TH>
227     <TD><% $cust_main->email_csv_cdr ? $yes : $no %></TD>
228   </TR>
229 % } 
230
231 % if ( $show_term || $cust_main->cdr_termination_percentage ) {
232   <TR>
233     <TH ALIGN="right"><% mt('CDR termination settlement') |h %></TH>
234     <TD><% $cust_main->cdr_termination_percentage %><% $cust_main->cdr_termination_percentage =~ /\d/ ? '%' : '' %></TD>
235   </TR>
236 % }
237
238 % if ( $cust_main->currency ) {
239   <TR>
240     <TH ALIGN="right"><% mt('Invoicing currency') |h %></TH>
241     <TD><% $cust_main->currency. ': '. code2currency($cust_main->currency) %></TD>
242   </TR>
243 % }
244
245 % if ( $cust_main->locale ) {
246 % my %locale_info = FS::Locales->locale_info($cust_main->locale);
247   <TR>
248     <TH ALIGN="right"><% mt('Invoicing locale') |h %></TH>
249     <TD><% $locale_info{name} . " (" . $locale_info{country} .")" %></TD>
250   </TR>
251 % }
252
253
254 </TABLE>
255 <%init>
256
257 my( $cust_main ) = @_;
258 my @invoicing_list = $cust_main->invoicing_list;
259 my $conf = new FS::Conf;
260 my $money_char = $conf->config('money_char') || '$';
261
262 #false laziness w/edit/cust_main/billing.html
263 my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
264 my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
265 $term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
266 my $show_term = $term_sth->fetchrow_arrayref->[0];
267
268 </%init>