UI spring cleaning: customer edit
[freeside.git] / httemplate / edit / cust_main / billing.html
1 %  my $r = qq!<font color="#ff0000">*</font>&nbsp;!;
2
3   <SCRIPT>
4
5     function tax_changed(what) {
6       var num = document.getElementById(what.id + '_num'); 
7       if ( what.checked ) {
8         num.disabled = false;
9       } else {
10         num.disabled = true;
11       }
12     }
13     
14   </SCRIPT>
15
16   <BR><FONT CLASS="fsinnerbox-title"><% mt('Billing information') |h %></FONT>
17
18   <TABLE CLASS="fsinnerbox">
19
20 %   my $curuser = $FS::CurrentUser::CurrentUser;
21
22 %   ###
23 %   # complimentry flag
24 %   ###
25
26 %   if ( $curuser->access_right('Complimentary customer') ) {
27
28       <TR>
29         <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="complimentary" VALUE="Y" <% $cust_main->complimentary eq "Y" ? 'CHECKED' : '' %>>Complimentary customer
30       </TR>
31
32 %   } else {
33
34       <INPUT TYPE="hidden" NAME="complimentary" VALUE="<% $cust_main->complimentary eq 'Y' ? 'Y' : '' %>">
35
36 %   }
37
38 %   ###
39 %   # tax exemptions
40 %   ###
41
42 %   my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
43 %   if (    $conf->exists('cust_class-tax_exempt')
44 %        || $conf->exists('tax-cust_exempt-groups-require_individual_nums')
45 %        || $conf->config('tax-cust_exempt-groups-num_req') =~ /\w/
46 %        || ! $curuser->access_right('Edit customer tax exemptions')
47 %      )
48 %   {
49
50       <INPUT TYPE="hidden" NAME="tax" VALUE="<% $cust_main->tax eq 'Y' ? 'Y' : '' %>">
51
52 %   } else {
53
54       <TR>
55         <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="tax" VALUE="Y" <% $cust_main->tax eq "Y" ? 'CHECKED' : '' %>> Tax Exempt<% @exempt_groups ? ' (all taxes)' : '' %></TD>
56       </TR>
57
58 %   }
59
60 %   if ( $curuser->access_right('Edit customer tax exemptions') ) {
61 %     foreach my $exempt_group ( @exempt_groups ) {
62 %       my $cust_main_exemption = $cust_main->tax_exemption($exempt_group);
63 %       #escape $exempt_group for NAME etc.
64 %       my $checked = ($cust_main_exemption || $cgi->param("tax_$exempt_group"));
65         <TR>
66           <TD STYLE="white-space:nowrap">&nbsp;&nbsp;<INPUT TYPE="checkbox" NAME="tax_<% $exempt_group %>" ID="tax_<% $exempt_group %>" VALUE="Y" <% $checked ? 'CHECKED' : '' %> onChange="tax_changed(this)"> Tax Exempt (<% $exempt_group %> taxes)</TD>
67           <TD> - Exemption number <INPUT TYPE="text" NAME="tax_<% $exempt_group %>_num" ID="tax_<% $exempt_group %>_num" VALUE="<% $cgi->param("tax_$exempt_group".'_num') || ( $cust_main_exemption ? $cust_main_exemption->exempt_number : '' ) |h %>" <% $checked ? '' : 'DISABLED' %>></TD>
68         </TR>
69 %     }
70 %   }
71
72 %   ###
73 %   # postal invoices
74 %   ###
75
76 % unless ( $conf->exists('emailinvoiceonly') ) {
77
78     <TR>
79       <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="invoicing_list_POST" VALUE="POST" <%
80
81         ( grep { $_ eq 'POST' } @invoicing_list )
82
83           ? 'CHECKED'
84           : ''
85
86         %>> <% mt('Postal mail invoices') |h %> 
87
88       </TD>
89     </TR>
90
91 % }
92
93 %   ###
94 %   # email invoices
95 %   ###
96
97     <TR>
98       <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="invoice_email" VALUE="Y" <%
99
100         ( $cust_main->invoice_noemail eq 'Y' )
101           ? ''
102           : 'CHECKED'
103
104         %>> <% mt('Email invoices') |h %> 
105
106       </TD>
107     </TR>
108
109 % unless ( $conf->exists('cust-email-high-visibility')) {
110    <TR>
111       <TH ALIGN="right" WIDTH="200">
112         <% $conf->exists('cust_main-require_invoicing_list_email', $agentnum) 
113             ? $r : '' %>Email address(es)
114       </TD>
115       <TD WIDTH="408"><INPUT TYPE="text" NAME="invoicing_list" VALUE="<% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) %>">
116       <INPUT TYPE="checkbox" NAME="message_noemail" VALUE="Y" <%
117         ( $cust_main->message_noemail eq 'Y' )
118           ? 'CHECKED'
119           : ''
120         %>> <FONT SIZE="-1"><% emt('Do not send notices') %></FONT>
121       </TD>
122     </TR>
123 % }
124
125 %   ###
126 %   # prorate_day
127 %   ###
128
129 % if ( $conf->exists('cust_main-select-prorate_day') ) {
130     <TR>
131       <TH ALIGN="right" WIDTH="200"><% mt('Prorate day (1-28)') |h %> </TD>
132       <TD>
133         <INPUT TYPE="text" NAME="prorate_day" VALUE="<% $cust_main->prorate_day %>" SIZE=3 MAXLENGTH=2>
134       </TD>
135     </TR>
136 % } else {
137     <INPUT TYPE="hidden" NAME="prorate_day" VALUE="<% $cust_main->prorate_day %>">
138 % }
139
140 %   ###
141 %   # billday
142 %   ###
143
144     <TR>
145       <TH ALIGN="right" WIDTH="200"><% mt('Charge card/e-check on this day of the month') |h %> </TD>
146       <TD>
147         <SELECT NAME="billday">
148           <% billday_options($cust_main->billday) %>
149         </SELECT>
150       </TD>
151     </TR>
152
153 %  sub billday_options {
154 %   my $curr_value = shift;
155 %   my $ret = '';
156 %   for my $billday ( 1 .. 28 ) {
157 %       my $sel = '';
158 %       $sel = "SELECTED='SELECTED'" if $curr_value == $billday;
159 %       $ret .= "<OPTION VALUE='$billday' $sel>$billday</OPTION>";
160 %   }
161 %   $ret;
162 %  }
163
164 %   ###
165 %   # invoice_terms
166 %   ###
167
168     <TR>
169       <TH ALIGN="right" WIDTH="200"><% mt('Invoice terms') |h %> </TD>
170       <TD WIDTH="408">
171         <& /elements/select-terms.html,
172              'curr_value' => $cust_main->invoice_terms,
173              'agentnum'   => $cust_main->agentnum,
174         &>
175       </TD>
176     </TR>
177
178 %   ###
179 %   # credit_limit
180 %   ###
181
182     <TR>
183       <TH ALIGN="right" WIDTH="200"><% mt('Credit limit') |h %> </TD>
184       <TD WIDTH="408">
185         <SCRIPT TYPE="text/javascript">
186 function toggle(obj) {
187   obj.form.credit_limit.disabled = obj.checked;
188 }
189         </SCRIPT>
190         <INPUT TYPE  = "text"
191                NAME  = "credit_limit"
192                VALUE = "<% sprintf('%.2f', $cust_main->credit_limit) %>"
193                <% length($cust_main->credit_limit) ? '' : ' DISABLED' %>
194         >
195 %       my $default_credit_limit = $conf->config('default_credit_limit');
196         <INPUT TYPE  = "checkbox"
197                NAME  = "no_credit_limit"
198                VALUE = 1
199                onClick="toggle(this)"
200                <% length($cust_main->credit_limit) ? '' : ' CHECKED'%>
201         > <FONT SIZE="-1" COLOR="#333333">
202           <% $default_credit_limit
203                ? "Default ($money_char". sprintf("%.2f", $default_credit_limit).
204                  ")"
205                : mt('Unlimited')
206             |h
207           %>
208           </FONT> 
209       </TD>
210     </TR>
211
212 %   ###
213 %   # CDR flags / options
214 %   ###
215
216 % if ( $conf->exists('voip-cust_cdr_spools') ) { 
217       <TR>
218        <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="spool_cdr" VALUE="Y" <% $cust_main->spool_cdr eq "Y" ? 'CHECKED' : '' %>> <% mt('Spool CDRs') |h %></TD>
219       </TR>
220 % } else { 
221       <INPUT TYPE="hidden" NAME="spool_cdr" VALUE="<% $cust_main->spool_cdr %>">
222 % }
223
224 % if ( $conf->exists('voip-cust_cdr_squelch') ) { 
225       <TR>
226        <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="squelch_cdr" VALUE="Y" <% $cust_main->squelch_cdr eq "Y" ? 'CHECKED' : '' %>> <% mt($conf->exists('voip-cdr_email') ? 'Omit CDRs from printed invoices' : 'Omit CDRs from invoices') |h %></TD>
227       </TR>
228 % } else { 
229       <INPUT TYPE="hidden" NAME="squelch_cdr" VALUE="<% $cust_main->squelch_cdr %>">
230 % }
231
232 % if ( $conf->exists('voip-cust_email_csv_cdr') ) { 
233       <TR>
234        <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="email_csv_cdr" VALUE="Y" <% $cust_main->email_csv_cdr eq "Y" ? 'CHECKED' : '' %>> <% mt('Attach CDRs as CSV to emailed invoices') |h %></TD>
235       </TR>
236 % } else { 
237       <INPUT TYPE="hidden" NAME="email_csv_cdr" VALUE="<% $cust_main->email_csv_cdr %>">
238 % }
239
240 % if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
241        <TR>
242         <TD COLSPAN="2">
243             <INPUT TYPE="checkbox" 
244                    NAME="accountcode_cdr" 
245                    VALUE="Y" 
246                    <% $cust_main->accountcode_cdr eq "Y" ? 'CHECKED' : '' %>
247             > <% mt('Breakdown CDRs by accountcode') |h %></TD>
248        </TR>
249 % } else { 
250        <INPUT TYPE="hidden" NAME="accountcode_cdr" VALUE="<% $cust_main->accountcode_cdr %>">
251 % }
252
253 % if ( $show_term || $cust_main->cdr_termination_percentage ) {
254       <TR>
255        <TH ALIGN="right"><% mt('CDR termination settlement') |h %></TD>
256        <TD><INPUT TYPE  = "text"
257                   NAME  = "cdr_termination_percentage"
258                   SIZE  = 6
259                   VALUE = "<% $cust_main->cdr_termination_percentage %>"
260                   STYLE = "text-align:right;"
261         ><B>%</B></TD>
262       </TR>
263 % } else {
264       <INPUT TYPE="hidden" NAME="cdr_termination_percentage" VALUE="<% $cust_main->cdr_termination_percentage %>">
265 % }
266
267 %   ###
268 %   # Invoicing currency
269 %   ###
270
271 %my @currencies = $conf->config('currencies');
272 %if ( scalar(@currencies) ) {
273 %  unshift @currencies, ''; #default
274 %  my %currency_labels = map { $_ => "$_: ". code2currency($_) } @currencies;
275 %  $currency_labels{''} =
276 %    'Default: '. code2currency( $conf->config('currency') || 'USD' );
277
278     <& /elements/tr-select.html, 
279          'label'         => emt('Invoicing currency'),
280          'field'         => 'currency',
281          'options'       => \@currencies,
282          'labels'        => \%currency_labels,
283          'curr_value'    => $cust_main->currency,
284     &>
285 % }
286
287 %   ###
288 %   # Invoicing locale
289 %   ###
290
291 %my @available_locales = $conf->config('available-locales');
292 %if ( scalar(@available_locales) ) {
293 %  push @available_locales, ''
294 %    unless $cust_main->locale && $conf->exists('cust_main-require_locale');
295 %  my %locale_labels = map { 
296 %    my %ll;
297 %    my %info = FS::Locales->locale_info($_);
298 %    $ll{$_} = $info{name} . " (" . $info{country} . ")";
299 %    %ll;
300 %  } FS::Locales->locales;
301 %    
302 %  my $label = ( $conf->exists('cust_main-require_locale') ? $r : '' ).
303 %              emt('Invoicing locale');
304
305     <& /elements/tr-select.html, 
306          'label'         => $label,
307          'field'         => 'locale',
308          'options'       => \@available_locales,
309          'labels'        => \%locale_labels,
310          'curr_value'    => $cust_main->locale,
311     &>
312 % }
313
314   </TABLE>
315   <BR>
316
317   <FONT CLASS="fsinnerbox-title"><% mt('Payment information') |h %></FONT>
318   <& cust_payby.html, 'cust_main'=>$cust_main, &>  
319
320 <%init>
321
322 my( $cust_main, %options ) = @_;
323 my @invoicing_list = @{ $options{'invoicing_list'} };
324 my $payinfo = $options{'payinfo'};
325 my $conf = new FS::Conf;
326
327 my $money_char = $conf->config('money_char') || '$';
328
329 my $show_term = '';
330 if ( $cust_main->custnum ) {
331   #false laziness w/view/cust_main/billing.html
332   my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
333   my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
334   $term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
335   $show_term = $term_sth->fetchrow_arrayref->[0];
336 }
337
338 my $agentnum = $cust_main->agentnum if $cust_main->custnum;
339
340 </%init>