multiple payment options (new complimentary flag), RT#23741
[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   <% &ntable("#cccccc") %>
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>&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       <TD 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         %>> <% emt('Do not send notices') %>
121       </TD>
122     </TR>
123 % }
124
125 %   ###
126 %   # prorate_day
127 %   ###
128
129 % if ( $conf->exists('cust_main-select-prorate_day') ) {
130     <TR>
131       <TD 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       <TD 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       <TD 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       <TD 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         > <% $default_credit_limit
202                ? "Default ($money_char". sprintf("%.2f", $default_credit_limit).
203                  ")"
204                : mt('Unlimited')
205             |h
206           %> 
207       </TD>
208     </TR>
209
210 %   ###
211 %   # CDR flags / options
212 %   ###
213
214 % if ( $conf->exists('voip-cust_cdr_spools') ) { 
215       <TR>
216        <TD COLSPAN="2"><INPUT TYPE="checkbox" NAME="spool_cdr" VALUE="Y" <% $cust_main->spool_cdr eq "Y" ? 'CHECKED' : '' %>> <% mt('Spool CDRs') |h %></TD>
217       </TR>
218 % } else { 
219       <INPUT TYPE="hidden" NAME="spool_cdr" VALUE="<% $cust_main->spool_cdr %>">
220 % }
221
222 % if ( $conf->exists('voip-cust_cdr_squelch') ) { 
223       <TR>
224        <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>
225       </TR>
226 % } else { 
227       <INPUT TYPE="hidden" NAME="squelch_cdr" VALUE="<% $cust_main->squelch_cdr %>">
228 % }
229
230 % if ( $conf->exists('voip-cust_email_csv_cdr') ) { 
231       <TR>
232        <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>
233       </TR>
234 % } else { 
235       <INPUT TYPE="hidden" NAME="email_csv_cdr" VALUE="<% $cust_main->email_csv_cdr %>">
236 % }
237
238 % if ( $conf->exists('voip-cust_accountcode_cdr') ) { 
239        <TR>
240         <TD COLSPAN="2">
241             <INPUT TYPE="checkbox" 
242                    NAME="accountcode_cdr" 
243                    VALUE="Y" 
244                    <% $cust_main->accountcode_cdr eq "Y" ? 'CHECKED' : '' %>
245             > <% mt('Breakdown CDRs by accountcode') |h %></TD>
246        </TR>
247 % } else { 
248        <INPUT TYPE="hidden" NAME="accountcode_cdr" VALUE="<% $cust_main->accountcode_cdr %>">
249 % }
250
251 % if ( $show_term || $cust_main->cdr_termination_percentage ) {
252       <TR>
253        <TD ALIGN="right"><% mt('CDR termination settlement') |h %></TD>
254        <TD><INPUT TYPE  = "text"
255                   NAME  = "cdr_termination_percentage"
256                   SIZE  = 6
257                   VALUE = "<% $cust_main->cdr_termination_percentage %>"
258                   STYLE = "text-align:right;"
259         ><B>%</B></TD>
260       </TR>
261 % } else {
262       <INPUT TYPE="hidden" NAME="cdr_termination_percentage" VALUE="<% $cust_main->cdr_termination_percentage %>">
263 % }
264
265 %   ###
266 %   # Invoicing currency
267 %   ###
268
269 %my @currencies = $conf->config('currencies');
270 %if ( scalar(@currencies) ) {
271 %  unshift @currencies, ''; #default
272 %  my %currency_labels = map { $_ => "$_: ". code2currency($_) } @currencies;
273 %  $currency_labels{''} =
274 %    'Default: '. code2currency( $conf->config('currency') || 'USD' );
275
276     <& /elements/tr-select.html, 
277          'label'         => emt('Invoicing currency'),
278          'field'         => 'currency',
279          'options'       => \@currencies,
280          'labels'        => \%currency_labels,
281          'curr_value'    => $cust_main->currency,
282     &>
283 % }
284
285 %   ###
286 %   # Invoicing locale
287 %   ###
288
289 %my @available_locales = $conf->config('available-locales');
290 %if ( scalar(@available_locales) ) {
291 %  push @available_locales, ''
292 %    unless $cust_main->locale && $conf->exists('cust_main-require_locale');
293 %  my %locale_labels = map { 
294 %    my %ll;
295 %    my %info = FS::Locales->locale_info($_);
296 %    $ll{$_} = $info{name} . " (" . $info{country} . ")";
297 %    %ll;
298 %  } FS::Locales->locales;
299 %    
300 %  my $label = ( $conf->exists('cust_main-require_locale') ? $r : '' ).
301 %              emt('Invoicing locale');
302
303     <& /elements/tr-select.html, 
304          'label'         => $label,
305          'field'         => 'locale',
306          'options'       => \@available_locales,
307          'labels'        => \%locale_labels,
308          'curr_value'    => $cust_main->locale,
309     &>
310 % }
311
312   </TABLE>
313   <BR>
314
315   <FONT CLASS="fsinnerbox-title"><% mt('Payment information') |h %></FONT>
316   <& cust_payby.html, 'cust_main'=>$cust_main, &>  
317
318 <%init>
319
320 my( $cust_main, %options ) = @_;
321 my @invoicing_list = @{ $options{'invoicing_list'} };
322 my $payinfo = $options{'payinfo'};
323 my $conf = new FS::Conf;
324
325 my $money_char = $conf->config('money_char') || '$';
326
327 my $show_term = '';
328 if ( $cust_main->custnum ) {
329   #false laziness w/view/cust_main/billing.html
330   my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1";
331   my $term_sth = dbh->prepare($term_sql)  or die dbh->errstr;
332   $term_sth->execute($cust_main->custnum) or die $term_sth->errstr;
333   $show_term = $term_sth->fetchrow_arrayref->[0];
334 }
335
336 my $agentnum = $cust_main->agentnum if $cust_main->custnum;
337
338 </%init>