X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/f5c9c5eba0aed77f5cebe2e5cee5c7f3743b579e..6d06b178d7e1b488396a91ce337a0801ed5893c8:/SL/Form.pm diff --git a/SL/Form.pm b/SL/Form.pm index 810891ef9..7b5d257b8 100644 --- a/SL/Form.pm +++ b/SL/Form.pm @@ -2106,7 +2106,7 @@ sub _get_taxcharts { my $where = @where ? ' WHERE ' . join(' AND ', map { "($_)" } @where) : ''; - my $query = qq|SELECT * FROM tax $where ORDER BY taxkey|; + my $query = qq|SELECT * FROM tax $where ORDER BY taxkey, rate|; $self->{$key} = selectall_hashref_query($self, $dbh, $query);