Bankerweiterung - Zwischenstand, erster Entwurf
[kivitendo-erp.git] / SL / DB / Manager / BankTransaction.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::BankTransaction;
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 use SL::DB::Helper::Filtered;
13
14 sub object_class { 'SL::DB::BankTransaction' }
15
16 __PACKAGE__->make_manager_methods;
17
18 sub _sort_spec {
19   return ( default => [ 'transdate', 1 ],
20            columns => { SIMPLE => 'ALL',
21                         local_account_number => 'local_bank_account.account_number',
22                         local_bank_code      => 'local_bank_account.bank_code' }, );
23 }
24
25 sub default_objects_per_page {
26   40;
27 }
28
29 1;