6cc14ca2ae46565e970f43f5a58b831604c38518
[kivitendo-erp.git] / SL / DB / Manager / PartsPriceHistory.pm
1 package SL::DB::Manager::PartsPriceHistory;
2
3 use strict;
4
5 use parent qw(SL::DB::Helper::Manager);
6
7 use SL::DB::Helper::Sorted;
8 use SL::DB::Helper::Paginated;
9
10 sub object_class { 'SL::DB::PartsPriceHistory' }
11
12 __PACKAGE__->make_manager_methods;
13
14 sub _sort_spec {
15   (
16     default  => [ 'valid_from', 0 ],
17     columns  => {
18       SIMPLE => 'ALL',
19     },
20   );
21 }
22
23 1;