From 5d4a6310ac60c0559e82f425d6c353131b86c722 Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Mon, 18 Dec 2017 14:44:08 +0000
Subject: [PATCH] Update the phases to better reflect the OTF workflow

---
 opentech/apply/workflow.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/opentech/apply/workflow.py b/opentech/apply/workflow.py
index 5c68f400e..e4401f62d 100644
--- a/opentech/apply/workflow.py
+++ b/opentech/apply/workflow.py
@@ -179,7 +179,7 @@ next_phase = NextPhaseAction('Progress')
 
 class ReviewPhase(Phase):
     name = 'Internal Review'
-    actions = [next_phase]
+    actions = [NextPhaseAction('Close Review')]
 
 
 class DeterminationPhase(Phase):
@@ -194,7 +194,7 @@ class DeterminationWithProgressionPhase(Phase):
 
 class DeterminationWithNextPhase(Phase):
     name = 'Under Discussion'
-    actions = [next_phase, reject_action]
+    actions = [NextPhaseAction('Open Review'), reject_action]
 
 
 review = ReviewPhase()
@@ -209,9 +209,9 @@ rejected = Phase(name='Rejected')
 
 accepted = Phase(name='Accepted')
 
-concept_note = Stage('Concept', Form(), [review, should_progress, rejected])
+concept_note = Stage('Concept', Form(), [under_discussion_next, review, should_progress, rejected])
 
-proposal = Stage('Proposal', Form(), [review, under_discussion_next, review, under_discussion, accepted, rejected])
+proposal = Stage('Proposal', Form(), [under_discussion_next, review, under_discussion_next, ReviewPhase('AC Review'), under_discussion, accepted, rejected])
 
 single_stage = Workflow('Single Stage', [proposal])
 
-- 
GitLab