diff options
author | ivan <ivan> | 2006-08-23 22:25:39 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-08-23 22:25:39 +0000 |
commit | 3ce7691203a7737406bf2d4442f7fd84b81f847e (patch) | |
tree | 90658b097da96772224f04771888ac6ca1a940aa /httemplate/elements/select-taxclass.html | |
parent | 15e561850b61b10a92a46d8f3e316d53d4970087 (diff) |
Will things ever be the same again?
It's the final masonize
Diffstat (limited to 'httemplate/elements/select-taxclass.html')
-rw-r--r-- | httemplate/elements/select-taxclass.html | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/httemplate/elements/select-taxclass.html b/httemplate/elements/select-taxclass.html index e5a1abba1..495572323 100644 --- a/httemplate/elements/select-taxclass.html +++ b/httemplate/elements/select-taxclass.html @@ -1,42 +1,40 @@ -<% - my $conf = new FS::Conf; - my $selected_taxclass = scalar(@_) ? shift : ''; -%> +% +% my $conf = new FS::Conf; +% my $selected_taxclass = scalar(@_) ? shift : ''; +% +% if ( $conf->exists('enable_taxclasses') ) { -<% if ( $conf->exists('enable_taxclasses') ) { %> <SELECT NAME="taxclass"> +% if ( $conf->exists('require_taxclasses') ) { - <% if ( $conf->exists('require_taxclasses') ) { %> <OPTION VALUE="(select)">Select tax class +% } else { - <% } else { %> <OPTION VALUE=""> +% } +% +% my $sth = dbh->prepare('SELECT DISTINCT taxclass FROM cust_main_county') +% or die dbh->errstr; +% $sth->execute or die $sth->errstr; +% my %taxclasses = map { $_->[0] => 1 } @{$sth->fetchall_arrayref}; +% my @taxclasses = grep $_, keys %taxclasses; +% +% foreach my $taxclass ( @taxclasses ) { - <% } %> - - <% - my $sth = dbh->prepare('SELECT DISTINCT taxclass FROM cust_main_county') - or die dbh->errstr; - $sth->execute or die $sth->errstr; - my %taxclasses = map { $_->[0] => 1 } @{$sth->fetchall_arrayref}; - my @taxclasses = grep $_, keys %taxclasses; - %> - - <% foreach my $taxclass ( @taxclasses ) { %> - - <OPTION VALUE="<%= $taxclass %>"<%= $taxclass eq $selected_taxclass ? ' SELECTED' : '' %>><%= $taxclass %> - <% } %> + <OPTION VALUE="<% $taxclass %>"<% $taxclass eq $selected_taxclass ? ' SELECTED' : '' %>><% $taxclass %> +% } + </SELECT> +% } else { -<% } else { %> - <INPUT TYPE="hidden" NAME="taxclass" VALUE="<%= $selected_taxclass %>"> - -<% } %> + <INPUT TYPE="hidden" NAME="taxclass" VALUE="<% $selected_taxclass %>"> +% } + |