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:
2c447b2
)
Bei vielen Lagerplätzen ist es hilfreich die Liste der bin(s) alphabetisch vorzusortieren
author
Jan Büren
<jan@lx-office-hosting.de>
Tue, 8 Mar 2011 09:10:52 +0000
(10:10 +0100)
committer
Jan Büren
<jan@lx-office-hosting.de>
Tue, 8 Mar 2011 09:10:52 +0000
(10:10 +0100)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
b2cb1de
..
1db5a65
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-2459,7
+2459,8
@@
sub _get_warehouses {
$self->{$key} = selectall_hashref_query($self, $dbh, $query);
if ($bins_key) {
- $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?|;
+ $query = qq|SELECT id, description FROM bin WHERE warehouse_id = ?
+ ORDER BY description|;
my $sth = prepare_query($self, $dbh, $query);
foreach my $warehouse (@{ $self->{$key} }) {