epic-s6g
[kivitendo-erp.git] / SL / DB / BackgroundJobHistory.pm
index f8e08f8..84b2cb7 100644 (file)
@@ -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;