-
Followers
bsag (Assigned To)
AttachmentsNo attachmentsAssociationsTicket No. Relation Summary Status Action #300 Related Next Action Dependencies Fixed Activity
Yes, this is a popular request! At the moment I'm working on getting the Ajax parts of the interface really solid and reliable, and then I'll work on a tickler (getting next actions to appear only when a certain date arrives) and these dependencies. I'll most likely try to integrate them, because they both involve hiding an action until something else happens (a date passes or another action is completed).
Time ExpenditureLoading



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.