Revision 33b0b2ca
Von Moritz Bunkus vor mehr als 13 Jahren hinzugefügt
SL/DB/Chart.pm | ||
---|---|---|
17 | 17 |
sub get_active_taxkey { |
18 | 18 |
my ($self, $date) = @_; |
19 | 19 |
$date ||= DateTime->today_local; |
20 |
return SL::DB::Manager::TaxKey->get_all(where => [ and => [ chart_id => $self->id,
|
|
20 |
return SL::DB::Manager::TaxKey->get_all(query => [ and => [ chart_id => $self->id,
|
|
21 | 21 |
startdate => { le => $date } ] ], |
22 | 22 |
sort_by => "startdate DESC")->[0]; |
23 | 23 |
} |
Auch abrufbar als: Unified diff
Ältere RDBO-Versionen kennen 'where' als Alias für 'query' beim Manager nicht