Ältere RDBO-Versionen kennen 'where' als Alias für 'query' beim Manager nicht
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 1 Jun 2011 11:49:01 +0000 (13:49 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 1 Jun 2011 11:49:01 +0000 (13:49 +0200)
SL/BackgroundJob/CreatePeriodicInvoices.pm
SL/DB/Chart.pm
SL/DB/Manager/BackgroundJob.pm

index 559fd02..0bbea2d 100644 (file)
@@ -22,7 +22,7 @@ sub run {
   my $self        = shift;
   $self->{db_obj} = shift;
 
-  my $configs = SL::DB::Manager::PeriodicInvoicesConfig->get_all(where => [ active => 1 ]);
+  my $configs = SL::DB::Manager::PeriodicInvoicesConfig->get_all(query => [ active => 1 ]);
 
   foreach my $config (@{ $configs }) {
     my $new_end_date = $config->handle_automatic_extension;
index bda4512..70019c6 100644 (file)
@@ -17,7 +17,7 @@ __PACKAGE__->meta->initialize;
 sub get_active_taxkey {
   my ($self, $date) = @_;
   $date ||= DateTime->today_local;
-  return SL::DB::Manager::TaxKey->get_all(where   => [ and => [ chart_id  => $self->id,
+  return SL::DB::Manager::TaxKey->get_all(query   => [ and => [ chart_id  => $self->id,
                                                                 startdate => { le => $date } ] ],
                                           sort_by => "startdate DESC")->[0];
 }
index 1429a78..96af863 100644 (file)
@@ -29,7 +29,7 @@ sub get_all_need_to_run {
                                                  next_run_at => undef,
                                                  next_run_at => { le => $now } ] ]);
 
-  return $class->get_all(where => [ or => [ @interval_args, @once_args ] ]);
+  return $class->get_all(query => [ or => [ @interval_args, @once_args ] ]);
 }
 
 1;