From 5703b343f5a7184814e8e545e123c1544af2c521 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 29 Aug 2008 00:23:56 +0000 Subject: [PATCH] correct nits in tax class selection --- httemplate/elements/select-taxclass.html | 5 +++-- httemplate/elements/tr-select-taxclass.html | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/httemplate/elements/select-taxclass.html b/httemplate/elements/select-taxclass.html index 2d0db3068..2504a5b1d 100644 --- a/httemplate/elements/select-taxclass.html +++ b/httemplate/elements/select-taxclass.html @@ -29,8 +29,9 @@ my $conf = new FS::Conf; unless ( $opt{'taxclasses'} ) { - my $sth = dbh->prepare('SELECT DISTINCT taxclass FROM cust_main_county') - or die dbh->errstr; + #my $sth = dbh->prepare('SELECT DISTINCT taxclass FROM cust_main_county') + my $sth = dbh->prepare('SELECT taxclass FROM part_pkg_taxclass') + or die dbh->errstr; $sth->execute or die $sth->errstr; my %taxclasses = map { $_->[0] => 1 } @{$sth->fetchall_arrayref}; @{ $opt{'taxclasses'} } = grep $_, keys %taxclasses; diff --git a/httemplate/elements/tr-select-taxclass.html b/httemplate/elements/tr-select-taxclass.html index 7006b1ac7..981c1a5f2 100644 --- a/httemplate/elements/tr-select-taxclass.html +++ b/httemplate/elements/tr-select-taxclass.html @@ -2,7 +2,7 @@ % || scalar(@{ $opt{'taxclasses'} }) == 0 % ) { - " VALUE="<% $selected_taxclass %>"> + % } else { -- 2.11.0