X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=code%2Ftasks.php;h=a4423813e099373b09216046080ec7e9ceab79a7;hb=27907dbe8cb9df3a2db9be1715cbbdeebf084651;hp=2b05771f870af7770d822d541c7f1c1c810706c9;hpb=5cc6274a058be9a9cf9d7d3e1d169870cad90353;p=contractor-progress.git diff --git a/code/tasks.php b/code/tasks.php index 2b05771..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); @@ -42,15 +43,17 @@ function task_state_pretty($state) { case TASK_NEEDS_CLARIFICATION: return "needs clarification"; case TASK_NEEDS_QUOTE: - return "waiting for price from Jason"; + return "to be priced"; case TASK_NEEDS_GO_AHEAD: - return "waiting for you to approve price"; + return "waiting for you to approve the price"; + case TASK_ON_HOLD: + return "on hold"; case TASK_QUEUED: return "queued"; case TASK_WORKING: return "work in progress"; case TASK_BUG: - return "investigation in progress"; + return "to be investigated"; case TASK_NEEDS_TESTING: return "needs testing"; case TASK_FINISHED: