link_filter für Chart-Manager
[kivitendo-erp.git] / SL / DB / Chart.pm
1 package SL::DB::Chart;
2
3 use strict;
4
5 use SL::DB::MetaSetup::Chart;
6 use SL::DB::Manager::Chart;
7 use SL::DB::TaxKey;
8
9 __PACKAGE__->meta->add_relationships(taxkeys => { type         => 'one to many',
10                                                   class        => 'SL::DB::TaxKey',
11                                                   column_map   => { id => 'chart_id' },
12                                                 },
13                                     );
14
15 __PACKAGE__->meta->initialize;
16
17 sub get_active_taxkey {
18   my ($self, $date) = @_;
19   $date ||= DateTime->today_local;
20   return SL::DB::Manager::TaxKey->get_all(where   => [ and => [ chart_id  => $self->id,
21                                                                 startdate => { le => $date } ] ],
22                                           sort_by => "startdate DESC")->[0];
23 }
24
25 1;
26
27 __END__
28
29 =pod
30
31 =encoding utf8
32
33 =head1 NAME
34
35 SL::DB::Chart - Rose database model for the "chart" table
36
37 =head1 FUNCTIONS
38
39 =over 4
40
41 =item C<get_active_taxkey $date>
42
43 Returns the active tax key object for a given date. C<$date> defaults
44 to the current date if undefined.
45
46 =back
47
48 =head1 BUGS
49
50 Nothing here yet.
51
52 =head1 AUTHOR
53
54 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>
55
56 =cut