Zeiterfassung: Sortierung und Ordnung für Artikel
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Mon, 28 Dec 2020 17:43:48 +0000 (18:43 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 5 May 2021 15:25:03 +0000 (17:25 +0200)
SL/DB/Manager/TimeRecordingArticle.pm
SL/DB/TimeRecordingArticle.pm

index 9f4b9e8..9048b61 100644 (file)
@@ -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;
index 9887ce3..6348378 100644 (file)
@@ -8,6 +8,9 @@ use strict;
 use SL::DB::MetaSetup::TimeRecordingArticle;
 use SL::DB::Manager::TimeRecordingArticle;
 
+use SL::DB::Helper::ActsAsList;
+
 __PACKAGE__->meta->initialize;
 
+
 1;