X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=code%2Ftasks.php;h=a4423813e099373b09216046080ec7e9ceab79a7;hb=1656ee459ec82ab8f1113ebc71a8c923517b43ad;hp=b985661288699abdc3f171afc578bed8e9ec34d4;hpb=1bcde3c6ba88a93deaa0848df4de0b0857d9bf49;p=contractor-progress.git diff --git a/code/tasks.php b/code/tasks.php index b985661..a442381 100644 --- a/code/tasks.php +++ b/code/tasks.php @@ -4,6 +4,7 @@ define('TASK_DRAFT', 0); define('TASK_NEEDS_CLARIFICATION', 100); define('TASK_NEEDS_QUOTE', 200); define('TASK_NEEDS_GO_AHEAD', 300); +define('TASK_ON_HOLD', 350); define('TASK_QUEUED', 400); define('TASK_WORKING', 500); define('TASK_BUG', 600); @@ -45,6 +46,8 @@ function task_state_pretty($state) { return "to be priced"; case TASK_NEEDS_GO_AHEAD: return "waiting for you to approve the price"; + case TASK_ON_HOLD: + return "on hold"; case TASK_QUEUED: return "queued"; case TASK_WORKING: