]> wagnertech.de Git - mfinanz.git/blob - SL/DB/Manager/OrderStatus.pm
restart apache2 in postinst
[mfinanz.git] / SL / DB / Manager / OrderStatus.pm
1 # This file has been auto-generated only because it didn't exist.
2 # Feel free to modify it at will; it will not be overwritten automatically.
3
4 package SL::DB::Manager::OrderStatus;
5
6 use strict;
7
8 use parent qw(SL::DB::Helper::Manager);
9
10 use SL::DB::Helper::Paginated;
11 use SL::DB::Helper::Sorted;
12
13 sub object_class { 'SL::DB::OrderStatus' }
14
15 __PACKAGE__->make_manager_methods;
16
17 sub _sort_spec {
18   return (
19     default       => [ 'position', 1 ],
20     columns       => {
21       SIMPLE      => 'ALL',
22       name        => 'lower(order_status.name)',
23       description => 'lower(order_status.description)',
24     });
25 }
26
27 1;