projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f99b728
)
Sortieren von Steuerzonen in Belegen
author
Niclas Zimmermann
<niclas@kivitendo-premium.de>
Thu, 5 Sep 2013 10:09:59 +0000
(12:09 +0200)
committer
G. Richardson
<information@kivitendo-premium.de>
Mon, 4 Aug 2014 15:31:39 +0000
(17:31 +0200)
Die Sortierreihenfolge von Steuerzonen in Belegen wurde bisher noch
nicht in den Belegen berücksichtigt.
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
ace85e7
..
b3138ac
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-2146,7
+2146,7
@@
sub _get_taxzones {
$key = "all_taxzones" unless ($key);
- my $query = qq|SELECT * FROM tax_zones ORDER BY
id
|;
+ my $query = qq|SELECT * FROM tax_zones ORDER BY
sortkey
|;
$self->{$key} = selectall_hashref_query($self, $dbh, $query);