X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FBackgroundJobHistory.pm;h=84b2cb7712c49e7431761c4aeb84746c304cb12e;hb=bcdc9f7040d4bc0c0b4d7ce77f1afc29543b04a4;hp=f8e08f8d96146747b16b8b156d12f732ba1a7633;hpb=e055700faea1906bea6c03184ba4516b57cac887;p=kivitendo-erp.git diff --git a/SL/DB/BackgroundJobHistory.pm b/SL/DB/BackgroundJobHistory.pm index f8e08f8d9..84b2cb771 100644 --- a/SL/DB/BackgroundJobHistory.pm +++ b/SL/DB/BackgroundJobHistory.pm @@ -1,13 +1,16 @@ -# This file has been auto-generated only because it didn't exist. -# Feel free to modify it at will; it will not be overwritten automatically. - package SL::DB::BackgroundJobHistory; use strict; use SL::DB::MetaSetup::BackgroundJobHistory; +use SL::DB::Manager::BackgroundJobHistory; + +__PACKAGE__->meta->initialize; + +use constant SUCCESS => 'success'; +use constant FAILURE => 'failure'; -# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all. -__PACKAGE__->meta->make_manager_class; +sub has_succeeded { $_[0] && (($_[0]->status || '') eq SUCCESS()) } +sub has_failed { $_[0] && (($_[0]->status || '') eq FAILURE()) } 1;