PMCORE-3447

This commit is contained in:
Paula Quispe
2021-10-22 12:33:13 -04:00
parent 20f41b0eca
commit 71e3adc7d9
2 changed files with 24 additions and 4 deletions

View File

@@ -16,8 +16,11 @@ class Application extends Model
const STATUS_DRAFT = 1;
const STATUS_DRAFT_NAME = 'DRAFT';
const STATUS_TODO = 2;
const STATUS_TODO_NAME = 'TO_DO';
const STATUS_COMPLETED = 3;
const STATUS_COMPLETED_NAME = 'COMPLETED';
const STATUS_CANCELED = 4;
const STATUS_CANCELED_NAME = 'CANCELLED';
// Status name and status id
public static $app_status_values = ['DRAFT' => 1, 'TO_DO' => 2, 'COMPLETED' => 3, 'CANCELLED' => 4];