X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ae4cec429306e2f1372d9cbd7a2ac40ecb977869..53593baa211863fbf66540cf1bcc36c8fb37257f:/SL/DB/Manager/TimeRecordingArticle.pm diff --git a/SL/DB/Manager/TimeRecordingArticle.pm b/SL/DB/Manager/TimeRecordingArticle.pm index 9f4b9e864..9048b6188 100644 --- a/SL/DB/Manager/TimeRecordingArticle.pm +++ b/SL/DB/Manager/TimeRecordingArticle.pm @@ -7,8 +7,15 @@ use strict; use parent qw(SL::DB::Helper::Manager); +use SL::DB::Helper::Sorted; + sub object_class { 'SL::DB::TimeRecordingArticle' } __PACKAGE__->make_manager_methods; +sub _sort_spec { + return ( default => [ 'position', 1 ], + columns => { SIMPLE => 'ALL' }); +} + 1;