X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FBackgroundJob.pm;h=c83868502a7022d955f330376c293dfb95fc05d9;hb=efac2a408d07588733698720f7198bc053821449;hp=ce1c3991dbfbf722efd1cd7a89d248437fa4a50b;hpb=572adb38daf24b2a8adf0521e8f4920a7d1991ea;p=kivitendo-erp.git diff --git a/SL/DB/BackgroundJob.pm b/SL/DB/BackgroundJob.pm index ce1c3991d..c83868502 100644 --- a/SL/DB/BackgroundJob.pm +++ b/SL/DB/BackgroundJob.pm @@ -5,12 +5,11 @@ use strict; use DateTime::Event::Cron; use English qw(-no_match_vars); -use SL::DB::MetaSetup::BackgroundJob; -use SL::DB::Manager::BackgroundJob; +require SL::DB::MetaSetup::BackgroundJob; +require SL::DB::Manager::BackgroundJob; -use SL::DB::BackgroundJobHistory; +require SL::DB::BackgroundJobHistory; -use SL::BackgroundJob::Test; use SL::System::Process; __PACKAGE__->before_save('_before_save_set_next_run_at'); @@ -38,6 +37,7 @@ sub run { my $history; my $ok = eval { + eval "require $package" or die $@; my $result = $package->new->run($self); $history = SL::DB::BackgroundJobHistory @@ -77,6 +77,16 @@ sub data_as_hash { return {}; } +sub set_data { + my ($self, %data) = @_; + + my $data = YAML::Load($self->data); + $data->{$_} = $data{$_} for keys %data; + $self->data(YAML::Dump($data)); + + $self; +} + sub validate { my ($self) = @_; @@ -90,7 +100,7 @@ sub validate { } eval { - DateTime::Event::Cron->new_from_cron($self->cron_spec)->next(DateTime->now_local); + DateTime::Event::Cron->new_from_cron($self->cron_spec || '* * * * *')->next(DateTime->now_local); 1; } or push @errors, $::locale->text('The execution schedule is invalid.');