disabling a taxclass, RT#5472
[freeside.git] / httemplate / elements / tr-select-taxclass.html
1 % if ( ! $conf->exists('enable_taxclasses')
2 %      || scalar(@{ $opt{'taxclasses'} }) == 0
3 % ) { 
4
5   <INPUT TYPE="hidden" NAME="<% $opt{'element_name'} || $opt{'field'} || 'taxclass' %>" VALUE="<% $selected_taxclass %>">
6
7 % } else { 
8
9   <TR>
10     <TD ALIGN="right"><% $opt{'label'} || 'Tax class: ' %></TD>
11     <TD>
12       <% include( '/elements/select-taxclass.html', 'curr_value' => $selected_taxclass, %opt ) %>
13     </TD>
14   </TR>
15
16 % } 
17 <%init>
18
19 my( %opt ) = @_;
20 my $conf = new FS::Conf;
21 my $selected_taxclass = $opt{'curr_value'}; # || $opt{'value'} necessary?
22
23 unless ( $opt{'taxclasses'} ) {
24
25   #my $sth = dbh->prepare('SELECT DISTINCT taxclass FROM cust_main_county')
26   my $sth = dbh->prepare("SELECT taxclass FROM part_pkg_taxclass WHERE disabled IS NULL OR disabled = '' OR taxclass = ?")
27     or die dbh->errstr;
28   $sth->execute($selected_taxclass) or die $sth->errstr;
29   my %taxclasses = map { $_->[0] => 1 } @{$sth->fetchall_arrayref};
30   @{ $opt{'taxclasses'} } = grep $_, keys %taxclasses;
31
32 }
33
34 </%init>