Opened 13 years ago
Last modified 12 years ago
#9666 new enhancement
Is it possible to account for close date?
Reported by: | dinu | Owned by: | Chris Nelson |
---|---|---|---|
Priority: | normal | Component: | TracJsGanttPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
It would be nice if the actual scheduled end date for a task would be something in the form of:
MAX ( scheduled_end, closed ? closed_date : today )
So that ongoing tickets are represented as such.
Attachments (0)
Change History (3)
comment:1 follow-up: 2 Changed 13 years ago by
comment:2 Changed 13 years ago by
Replying to dinu:
What I was actually meaning:
closed ? closed_date : MAX ( scheduled_end, today )
That makes a lot of sense. I already treat closed tickets at 100% complete.
I have some larger issues to address before I get back to this tweak but I like the idea a lot.
comment:3 Changed 12 years ago by
Of course, this seems to apply only to ALAP scheduling:
finish = (closed ? closed_date : MAX(scheduled_finish, today))
and the converse for ASAP is:
start = (active ? start_date : MIN(scheduled_finish, today))
(Or something like that.)
What I was actually meaning:
closed ? closed_date : MAX ( scheduled_end, today )