7ee05a357d3c2e9ac94d51b2774b320041f05476
[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 % my $allowed = emt('allowed');
5 % my $refused = emt('refused');
6
7 <TABLE CLASS="fsinnerbox">
8
9 % if ( $cust_main->complimentary ) {
10   <TR>
11     <TH ALIGN="right"><% mt('Complimentary') |h %></TH>
12     <TD><% $yes %></TD>
13   </TR>
14 % }
15
16 %( my $balance = $cust_main->balance )
17 %  =~ s/^(\-?)(.*)$/<FONT SIZE=+1>$1<\/FONT>$money_char$2/;
18
19 <TR>
20   <TH ALIGN="right"><% mt('Balance due') |h %></TH>
21   <TD><B><% $balance %></B></TD>
22 </TR>
23
24 <TR ID="recurring_row">
25   <TH ID="recurring_label" ALIGN="right"><% emt( 'Recurring' ) %></TH>
26   <TD ID="recurring_value"><IMG SRC="<% $fsurl %>images/wait-orange.gif"></TD>
27 </TR>
28
29 <& '/elements/xmlhttp.html',
30      'url'  => $fsurl.'misc/xmlhttp-cust_main-display_recurring.html',
31      'subs' => [ 'get_display_recurring'] &>
32
33 <SCRIPT>
34 function set_display_recurring (xmlresult) {
35   var recurring = JSON.parse(xmlresult);
36   var rlabel = document.getElementById('recurring_label');
37   var rvalue = document.getElementById('recurring_value');
38   var rrow   = document.getElementById('recurring_row');
39   if (recurring['error']) {
40     rvalue.innerHTML = '<SPAN STYLE="color: red">Error</SPAN>';
41     console.log('display_recurring error: ' + recurring['error']);
42   } else if (recurring['display_recurring'].length) {
43     for (var ri = 0; ri < recurring['display_recurring'].length; ri++) {
44       var robj = recurring['display_recurring'][ri];
45       var freq_pretty = robj['freq_pretty'].charAt(0).toUpperCase()+robj['freq_pretty'].slice(1)+' recurring';
46       var amount = '<% $money_char %>'+parseFloat(robj['amount']).toFixed(2);
47       if (ri + 1 < recurring['display_recurring'].length) {
48         var rr = document.createElement('TR');
49         var rl = document.createElement('TH');
50         rl.style.textAlign = 'right';
51         rl.innerHTML = freq_pretty;
52         rr.appendChild(rl);
53         var rv = document.createElement('TD');
54         rv.innerHTML = amount;
55         rr.appendChild(rv);
56         rrow.parentNode.insertBefore(rr,rrow);
57       } else {
58         rlabel.innerHTML = freq_pretty;
59         rvalue.innerHTML = amount;
60       }
61     }
62   } else {
63     rrow.parentNode.removeChild(rrow);
64   }
65 }
66 </SCRIPT>
67
68 % # 10 is an arbitrary number, use ajax for customers with many packages
69 % if ( $cust_main->num_billing_pkgs > 10 ) {
70 <& '/elements/xmlhttp.html',
71      'url'  => $fsurl.'misc/xmlhttp-cust_main-display_recurring.html',
72      'subs' => [ 'get_display_recurring'] &>
73 <SCRIPT>
74 get_display_recurring('custnum',<% $cust_main->custnum %>,set_display_recurring);
75 </SCRIPT>
76 % } else {
77 <SCRIPT>
78 set_display_recurring(<% encode_json({'display_recurring' => [ $cust_main->display_recurring ]}) |js_string %>);
79 </SCRIPT>
80 % }
81
82 % if ( $conf->exists('cust_main-select-prorate_day') ) {
83 <TR>
84   <TH ALIGN="right"><% mt('Prorate day of month') |h %></TH>
85   <TD><% $cust_main->prorate_day %>
86   </TD>
87 </TR>
88 % }
89
90 % if ( $conf->exists('cust_main-select-billday') 
91 %        && qsearch({ 'table'     => 'cust_payby',
92 %                     'hashref'   => { 'custnum' => $cust_main->custnum, },
93 %                     'extra_sql' => "AND payby IN ( 'CARD', 'CHEK' )",
94 %                     'order_by'  => 'LIMIT 1',
95 %                  })
96 %    )
97 % {
98     <TR>
99       <TH ALIGN="right"><% mt('Payment day of month') |h %></TH>
100       <TD><% $cust_main->billday %>
101       </TD>
102     </TR>
103 % }
104
105 % if ( $cust_main->po_number ) { 
106     <TR>
107       <TH ALIGN="right"><% mt('Purchase Order #') |h %></TH>
108       <TD><% $cust_main->po_number %></TD>
109     </TR>
110 % } 
111
112 % my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
113
114 % unless (    $conf->exists('cust_class-tax_exempt')
115 %          || $conf->exists('tax-cust_exempt-groups-require_individual_nums')
116 %        )
117 % {
118     <TR>
119       <TH ALIGN="right"><% mt('Tax exempt') |h %><% @exempt_groups ? ' ('.emt('all taxes').')' : '' %></TH>
120       <TD><% $cust_main->tax ? $yes : $no %></TD>
121     </TR>
122 % }
123
124 % foreach my $exempt_group ( @exempt_groups ) {
125 %   my $cust_main_exemption = $cust_main->tax_exemption($exempt_group);
126     <TR>
127       <TH ALIGN="right"><% mt('Tax exempt') |h %> (<% $exempt_group %> taxes)</TH>
128       <TD><% $cust_main_exemption ? $yes : $no %>
129         <% $cust_main_exemption ? $cust_main_exemption->exempt_number : '' |h %>
130       </TD>
131     </TR>
132 % }
133
134 % if ( $conf->config('tax_data_vendor') eq 'cch' ) {
135 <TR>
136   <TH ALIGN="right"><% mt('Tax location') |h %></TH>
137 % my $tax_location = $conf->exists('tax-ship_address')
138 %                    ? $cust_main->ship_location
139 %                    : $cust_main->bill_location;
140   <TD><% $tax_location->geocode('cch') %></TD>
141 </TR>
142 % }
143 <TR>
144   <TH ALIGN="right"><% mt('Postal mail invoices') |h %></TH>
145 % if ( $cust_main->postal_invoice ) {
146   <TD><% $yes .  ( $cust_main->invoice_attn
147                      ? ', attn: '. $cust_main->invoice_attn
148                      : ''
149                  ) %>
150   </TD>
151 % } elsif ( $cust_main->invoice_noemail
152 %           or scalar(@invoicing_list) == 0 ) {
153 %   # alert the user that this customer has no way to receive an invoice
154   <TD CLASS="error"><% $no %></TD>
155 % } else {
156   <TD><% $no %></TD>
157 % }
158   </TD>
159 </TR>
160 <TR>
161   <TH ALIGN="right"><% mt('Email invoices') |h %></TH>
162 % if ( $cust_main->invoice_noemail and ! $cust_main->postal_invoice ) {
163 %   # as above, warn if the customer refuses both email and postal invoices
164   <TD CLASS="error"><% $refused %></TD>
165 % } else {
166   <TD><% $cust_main->invoice_noemail ? $refused : $allowed %></TD>
167 % }
168 </TR>
169 <TR>
170   <TH ALIGN="right"><% mt('Other email notices') |h %></TH>
171   <TD>
172     <% $cust_main->message_noemail ? $refused : $allowed %>
173   </TD>
174 </TR>
175 <TR>
176   <TH ALIGN="right"><% mt('Invoice terms') |h %></TH>
177   <TD>
178     <% $cust_main->invoice_terms
179          || emt('Default').' ('. ( $conf->config('invoice_default_terms', $cust_main->agentnum)
180                                      || emt('Payable upon receipt')
181                                  ).
182                            ')'
183     %>
184   </TD>
185 </TR>
186 <TR>
187   <TH ALIGN="right"><% mt('Credit limit') |h %></TH>
188   <TD>
189 %   my $default_credit_limit = $conf->config('default_credit_limit');
190     <% length($cust_main->credit_limit)
191          ? $money_char. sprintf("%.2f", $cust_main->credit_limit)
192          : $default_credit_limit
193            ? "Default ($money_char". sprintf("%.2f", $default_credit_limit). ")"
194            : emt('Unlimited')
195     %>
196 %   if ( $cust_main->num_cust_main_credit_limit ) {
197       <A HREF="<% $p %>search/cust_main_credit_limit.html?custnum=<% $cust_main->custnum %>">(incidents)</A>
198 %   }
199   </TD>
200 </TR>
201
202 % if ( $conf->exists('voip-cust_cdr_spools') ) { 
203   <TR>
204     <TH ALIGN="right"><% mt('Spool CDRs') |h %></TH>
205     <TD><% $cust_main->spool_cdr ? $yes : $no %></TD>
206   </TR>
207 % } 
208
209 % if ( $conf->exists('voip-cust_cdr_squelch') ) { 
210   <TR>
211     <TH ALIGN="right"><% mt($conf->exists('voip-cdr_email') ? 'Print CDRs' : 'Show CDRs') |h %></TH>
212     <TD><% $cust_main->squelch_cdr ? $no : $yes %></TD>
213   </TR>
214 % } 
215
216 % if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
217    <TR>
218      <TH ALIGN="right"><% mt('Breakdown CDRs by accountcode') |h %></TH>
219      <TD><% $cust_main->accountcode_cdr ? $yes : $no %></TD>
220    </TR>
221 % }
222
223 % if ( my $attach = $conf->config('voip-cdr_email_attach') ) { 
224   <TR>
225     <TH ALIGN="right"><% mt('Email CDRs as '.uc($attach)) |h %></TH>
226     <TD><% $cust_main->email_csv_cdr ? $yes : $no %></TD>
227   </TR>
228 % } 
229
230 % if ( $show_term || $cust_main->cdr_termination_percentage ) {
231   <TR>
232     <TH ALIGN="right"><% mt('CDR termination settlement') |h %></TH>
233     <TD><% $cust_main->cdr_termination_percentage %><% $cust_main->cdr_termination_percentage =~ /\d/ ? '%' : '' %></TD>
234   </TR>
235 % }
236
237 % if ( $cust_main->currency ) {
238   <TR>
239     <TH ALIGN="right"><% mt('Invoicing currency') |h %></TH>
240     <TD><% $cust_main->currency. ': '. code2currency($cust_main->currency) %></TD>
241   </TR>
242 % }
243
244 % if ( $cust_main->locale ) {
245 % my %locale_info = FS::Locales->locale_info($cust_main->locale);
246   <TR>
247     <TH ALIGN="right"><% mt('Invoicing locale') |h %></TH>
248     <TD><% $locale_info{name} . " (" . $locale_info{country} .")" %></TD>
249   </TR>
250 % }
251
252
253 </TABLE>
254 <%init>
255
256 my( $cust_main ) = @_;
257 my @invoicing_list = $cust_main->invoicing_list_emailonly;
258 my $conf = new FS::Conf;
259 my $money_char = $conf->config('money_char') || '$';
260
261 #false laziness w/edit/cust_main/billing.html
262 my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
263 my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
264 $term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
265 my $show_term = $term_sth->fetchrow_arrayref->[0];
266
267 </%init>