JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
clients can put tasks on hold
[contractor-progress.git] / code / tasks.php
index 2b05771..a716fa2 100644 (file)
@@ -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,15 @@ 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_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: