Revision 33b0b2ca
Von Moritz Bunkus vor mehr als 13 Jahren hinzugefügt
SL/BackgroundJob/CreatePeriodicInvoices.pm | ||
---|---|---|
22 | 22 |
my $self = shift; |
23 | 23 |
$self->{db_obj} = shift; |
24 | 24 |
|
25 |
my $configs = SL::DB::Manager::PeriodicInvoicesConfig->get_all(where => [ active => 1 ]);
|
|
25 |
my $configs = SL::DB::Manager::PeriodicInvoicesConfig->get_all(query => [ active => 1 ]);
|
|
26 | 26 |
|
27 | 27 |
foreach my $config (@{ $configs }) { |
28 | 28 |
my $new_end_date = $config->handle_automatic_extension; |
Auch abrufbar als: Unified diff
Ältere RDBO-Versionen kennen 'where' als Alias für 'query' beim Manager nicht