summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-taxclass.html
diff options
context:
space:
mode:
authorivan <ivan>2008-08-29 00:23:56 +0000
committerivan <ivan>2008-08-29 00:23:56 +0000
commit5703b343f5a7184814e8e545e123c1544af2c521 (patch)
tree86f1e8f86b69a31445d6a66bb1d8236a8210adc8 /httemplate/elements/select-taxclass.html
parent2f709ab04cee5c24fb3e4938ad879a2019962499 (diff)
correct nits in tax class selection
Diffstat (limited to 'httemplate/elements/select-taxclass.html')
-rw-r--r--httemplate/elements/select-taxclass.html5
1 files changed, 3 insertions, 2 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;