Modify

Opened 12 years ago

Last modified 11 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 Changed 12 years ago by dinu

What I was actually meaning:

closed ? closed_date : MAX ( scheduled_end, today )

comment:2 in reply to:  1 Changed 12 years ago by Chris Nelson

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 11 years ago by Chris Nelson

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.)

Modify Ticket

Change Properties
Set your email in Preferences
Action
as new The owner will remain Chris Nelson.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.