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:
4acd278
)
Buchungsgruppen-Auswahl in Waren alphabetisch sortieren
author
Jan Büren
<jan@kivitendo-premium.de>
Tue, 17 Jul 2018 12:08:30 +0000
(14:08 +0200)
committer
Jan Büren
<jan@kivitendo-premium.de>
Tue, 17 Jul 2018 12:08:30 +0000
(14:08 +0200)
SL/Controller/Part.pm
patch
|
blob
|
history
diff --git
a/SL/Controller/Part.pm
b/SL/Controller/Part.pm
index
f7d0011
..
4fbd0c8
100644
(file)
--- a/
SL/Controller/Part.pm
+++ b/
SL/Controller/Part.pm
@@
-1023,7
+1023,7
@@
sub init_all_buchungsgruppen {
if ( $self->part->orphaned ) {
return SL::DB::Manager::Buchungsgruppe->get_all_sorted;
} else {
- return SL::DB::Manager::Buchungsgruppe->get_all(where => [ id => $self->part->buchungsgruppen_id ]);
+ return SL::DB::Manager::Buchungsgruppe->get_all
_sorted
(where => [ id => $self->part->buchungsgruppen_id ]);
}
}