#185
Add support for follow-up/sequential actions.
-
-
Created on:
Sun, Jan 01 2006 (over 6 years ago)
-
Reported by:
Anonymous
-
Assigned to:
bsag
-
Milestone:
Someday/Maybe
-
Type:
-
-
Resolution:
-
-
Version:
-
-
Status:
Fixed
-
Priority:
Normal (3)
-
Component:
Functionality (app)
-
Estimate:
None/Small/Medium/Large
None
-
Severity:
-
-
Keywords:
-
-
-
Followers
bsag (Assigned To)
No file chosen
You have an empty file field. Please select or remove it.
Associations
| # |
Relation |
Summary |
Status |
Action |
| 300 | Related | Next Action Dependencies | Fixed | |
No associations
Time Expenditure
Loading
After (briefly) looking through the code and the database, I thought of one way that this might be implemented. Two new columns could be added to the 'todo' table: 'active' (a boolean which could prevent display) and 'predecessor_id'(or something similar). An existing action would then have a link to create a follow-up action; the follow-up's predecessor_id would be set to that of the existing action, and would be marked as inactive. When the existing action is marked as done, it would look for any follow-up actions and mark them as active (hence one action could have multiple follow-ups).
The active/predecessor_id columns could also be added to projects, so that projects could be treated in the same fashion. One issue here, though, would be determining if a predecessor_id refers to an action or a project.
A side benefit of adding an active flag to actions/projects is that it could also be used to for the Someday/Maybe context; any actions/projects added to Someday/Maybe could be marked as inactive so that they are not shown in the 'Home' display.