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