cf22ff7017493906dbd7e2a4f68e84a83deb4132
[freeside.git] / httemplate / view / cust_main / billing.html
1 <% mt('Billing information') |h %> 
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 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
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 % if ( $conf->exists('cust_main-select-billday') 
27 %    && ($cust_main->payby eq 'CARD' || $cust_main->payby eq 'CHEK') ) {
28 <TR>
29   <TD ALIGN="right"><% mt('Billing day of month') |h %></TD>
30   <TD BGCOLOR="#ffffff"><% $cust_main->billday %>
31   </TD>
32 </TR>
33 % }
34
35 <TR>
36   <TD ALIGN="right"><% mt('Billing type') |h %></TD>
37   <TD BGCOLOR="#ffffff">
38 % if ( $cust_main->payby eq 'CARD' || $cust_main->payby eq 'DCRD' ) { 
39
40 %   my $autodemand = $cust_main->payby eq 'CARD' ? 'automatic' : 'on-demand';
41     <% mt("Credit card ([_1])",$autodemand) |h %>
42   </TD>
43 </TR>
44 <TR>
45   <TD ALIGN="right"><% mt('Card number') |h %></TD>
46   <TD BGCOLOR="#ffffff"><% $cust_main->paymask %></TD>
47 </TR>
48 %
49 %#false laziness w/elements/select-month_year.html & edit/cust_main/billing.html
50 %my( $mon, $year );
51 %my $date = $cust_main->paydate || '12-2037';
52 %if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
53 %  ( $mon, $year ) = ( $2, $1 );
54 %} elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
55 %  ( $mon, $year ) = ( $1, $3 );
56 %} else {
57 %  warn "unrecognized expiration date format: $date";
58 %  ( $mon, $year ) = ( '', '' );
59 %}
60 %
61
62 <TR>
63   <TD ALIGN="right"><% mt('Expiration') |h %></TD>
64   <TD BGCOLOR="#ffffff"><% "$mon/$year" %></TD>
65 </TR>
66 % if ( $cust_main->paystart_month ) { 
67
68   <TR>
69     <TD ALIGN="right"><% mt('Start date') |h %></TD>
70     <TD BGCOLOR="#ffffff"><% $cust_main->paystart_month. '/'. $cust_main->paystart_year %>
71   </TR>
72 % } elsif ( $cust_main->payissue ) { 
73
74   <TR>
75     <TD ALIGN="right"><% mt('Issue #') |h %></TD>
76     <TD BGCOLOR="#ffffff"><% $cust_main->payissue %>
77   </TR>
78 % } 
79
80
81 <TR>
82   <TD ALIGN="right"><% mt('Name on card') |h %></TD>
83   <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD>
84 </TR>
85 % } elsif ( $cust_main->payby eq 'CHEK' || $cust_main->payby eq 'DCHK') {
86 %     my( $account, $aba ) = split('@', $cust_main->paymask );
87 %  my $branch = '';
88 %  ($branch,$aba) = split('\.',$aba) if $conf->exists('cust_main-require-bank-branch');
89
90
91 % my $autodemand = $cust_main->payby eq 'CHEK' ? 'automatic' : 'on-demand';
92     <% mt("Electronic check ([_1])",$autodemand) |h %>
93   </TD>
94 </TR>
95
96 % unless ( $conf->exists('echeck-no_routing') ) {
97   <TR>
98     <TD ALIGN="right"><% mt('ABA/Routing code') |h %></TD>
99     <TD BGCOLOR="#ffffff"><% $aba %></TD>
100   </TR>
101 % }
102
103 % if ( $conf->exists('cust_main-require-bank-branch') ) {
104 <TR>
105   <TD ALIGN="right"><% mt('Branch number') |h %></TD>
106   <TD BGCOLOR="#ffffff"><% $branch %></TD>
107 <TR>
108 % }
109
110   <TD ALIGN="right"><% mt('Account number') |h %></TD>
111   <TD BGCOLOR="#ffffff"><% $account %></TD>
112 </TR>
113 <TR>
114   <TD ALIGN="right"><% mt('Account type') |h %></TD>
115   <TD BGCOLOR="#ffffff"><% $cust_main->paytype %></TD>
116 </TR>
117 <TR>
118   <TD ALIGN="right"><% mt('Bank name') |h %></TD>
119   <TD BGCOLOR="#ffffff"><% $cust_main->payname %></TD>
120 </TR>
121 % if ( $conf->exists('show_bankstate') ) {
122 <TR>
123   <TD ALIGN="right"><% $paystate_label %></TD>
124   <TD BGCOLOR="#ffffff"><% $cust_main->paystate || '&nbsp;&nbsp;&nbsp;' %></TD>
125 </TR>
126 % }
127 % } elsif ( $cust_main->payby eq 'LECB' ) {
128 %     $cust_main->payinfo =~ /^(\d{3})(\d{3})(\d{4})$/;
129 %     my $payinfo = "$1-$2-$3";
130
131     <% mt('Phone bill billing') |h %> 
132   </TD>
133 </TR>
134 <TR>
135   <TD ALIGN="right"><% mt('Phone number') |h %></TD>
136   <TD BGCOLOR="#ffffff"><% $payinfo %></TD>
137 </TR>
138 % } elsif ( $cust_main->payby eq 'BILL' ) { 
139
140     <% mt('Billing') |h %> 
141   </TD>
142 </TR>
143 % if ( $cust_main->payinfo ) { 
144
145 <TR>
146   <TD ALIGN="right"<% mt('>P.O.') |h %></TD>
147   <TD BGCOLOR="#ffffff"><% $cust_main->payinfo %></TD>
148 </TR>
149 % } 
150
151
152 <TR>
153   <TD ALIGN="right"><% mt('Attention') |h %></TD>
154   <TD BGCOLOR="#ffffff"><% $cust_main->payname |h %></TD>
155 </TR>
156 % } elsif ( $cust_main->payby eq 'COMP' ) { 
157
158     <% mt('Complimentary') |h %> 
159   </TD>
160 </TR>
161 <TR>
162   <TD ALIGN="right"><% mt('Authorized by') |h %></TD>
163   <TD BGCOLOR="#ffffff"><% $cust_main->payinfo %></TD>
164 </TR>
165 %
166 %#false laziness w/above etc.
167 %my( $mon, $year );
168 %my $date = $cust_main->paydate || '12-2037';
169 %if ( $date  =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format
170 %  ( $mon, $year ) = ( $2, $1 );
171 %} elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) {
172 %  ( $mon, $year ) = ( $1, $3 );
173 %} else {
174 %  warn "unrecognized expiration date format: $date";
175 %  ( $mon, $year ) = ( '', '' );
176 %}
177 %
178
179 <TR>
180   <TD ALIGN="right"><% mt('Expiration') |h %></TD>
181   <TD BGCOLOR="#ffffff"><% "$mon/$year" %></TD>
182 </TR>
183 % } 
184
185 % my $yes = emt('yes');
186 % my $no = emt('no');
187
188 % my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
189 <TR>
190   <TD ALIGN="right"><% mt('Tax exempt') |h %><% @exempt_groups ? ' ('.emt('all taxes').')' : '' %></TD>
191   <TD BGCOLOR="#ffffff"><% $cust_main->tax ? $yes : $no %></TD>
192 </TR>
193 % foreach my $exempt_group ( @exempt_groups ) {
194 <TR>
195   <TD ALIGN="right"><% mt('Tax exempt') |h %> (<% $exempt_group %> taxes)</TD>
196   <TD BGCOLOR="#ffffff"><% $cust_main->tax_exemption($exempt_group) ? $yes : $no %></TD>
197 </TR>
198 % }
199
200 % if ( $conf->exists('enable_taxproducts') ) {
201 <TR>
202   <TD ALIGN="right"><% mt('Tax location') |h %></TD>
203   <TD BGCOLOR="#ffffff"><% $cust_main->geocode('cch') %></TD>
204 </TR>
205 % }
206 <TR>
207   <TD ALIGN="right"><% mt('Postal invoices') |h %></TD>
208   <TD BGCOLOR="#ffffff">
209     <% ( grep { $_ eq 'POST' } @invoicing_list ) ? $yes : $no %>
210   </TD>
211 </TR>
212 <TR>
213   <TD ALIGN="right"><% mt('FAX invoices') |h %></TD>
214   <TD BGCOLOR="#ffffff">
215     <% ( grep { $_ eq 'FAX' } @invoicing_list ) ? $yes : $no %>
216   </TD>
217 </TR>
218 % unless ( $conf->exists('cust-email-high-visibility')) {
219 <TR>
220   <TD ALIGN="right"><% mt('Email invoices') |h %></TD>
221   <TD BGCOLOR="#ffffff">
222     <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %>
223   </TD>
224 </TR>
225 % }
226 <TR>
227   <TD ALIGN="right"><% mt('Invoice terms') |h %></TD>
228   <TD BGCOLOR="#ffffff">
229     <% $cust_main->invoice_terms || emt('Default').' ('. ( $conf->config('invoice_default_terms') || emt('Payable upon receipt') ). ')' %>
230   </TD>
231 </TR>
232 <TR>
233   <TD ALIGN="right"><% mt('Credit limit') |h %></TD>
234   <TD BGCOLOR="#ffffff">
235     <% length($cust_main->credit_limit) ? 
236         $money_char.sprintf("%.2f", $cust_main->credit_limit) :
237         emt('Unlimited') %>
238   </TD>
239 </TR>
240
241 % if ( $conf->exists('voip-cust_cdr_spools') ) { 
242   <TR>
243     <TD ALIGN="right"><% mt('Spool CDRs') |h %></TD>
244     <TD BGCOLOR="#ffffff"><% $cust_main->spool_cdr ? $yes : $no %></TD>
245   </TR>
246 % } 
247
248 % if ( $conf->exists('voip-cust_cdr_squelch') ) { 
249   <TR>
250     <TD ALIGN="right"><% mt($conf->exists('voip-cdr_email') ? 'Print CDRs' : 'Show CDRs') |h %></TD>
251     <TD BGCOLOR="#ffffff"><% $cust_main->squelch_cdr ? $no : $yes %></TD>
252   </TR>
253 % } 
254
255 % if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
256    <TR>
257      <TD ALIGN="right"><% mt('Breakdown CDRs by accountcode') |h %></TD>
258      <TD BGCOLOR="#ffffff"><% $cust_main->accountcode_cdr ? $yes : $no %></TD>
259    </TR>
260 % }
261
262 % if ( $conf->exists('voip-cust_email_csv_cdr') ) { 
263   <TR>
264     <TD ALIGN="right"><% mt('Email CDRs as CSV') |h %></TD>
265     <TD BGCOLOR="#ffffff"><% $cust_main->email_csv_cdr ? $yes : $no %></TD>
266   </TR>
267 % } 
268
269 % if ( $show_term || $cust_main->cdr_termination_percentage ) {
270   <TR>
271     <TD ALIGN="right"><% mt('CDR termination settlement') |h %></TD>
272     <TD BGCOLOR="#ffffff"><% $cust_main->cdr_termination_percentage %><% $cust_main->cdr_termination_percentage =~ /\d/ ? '%' : '' %></TD>
273   </TR>
274 % }
275
276 </TABLE></TD></TR></TABLE>
277 <%once>
278
279 my $paystate_label = FS::Msgcat::_gettext('paystate');
280 $paystate_label = 'Bank state' if $paystate_label =~/^paystate$/;
281
282 </%once>
283 <%init>
284
285 my( $cust_main ) = @_;
286 my @invoicing_list = $cust_main->invoicing_list;
287 my $conf = new FS::Conf;
288 my $money_char = $conf->config('money_char') || '$';
289
290 #false laziness w/edit/cust_main/billing.html
291 my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
292 my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
293 $term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
294 my $show_term = $term_sth->fetchrow_arrayref->[0];
295
296 </%init>