automatic percentile calculation
Status: Alpha
Brought to you by:
swix
A parent task's percentile of completion could be
automatically calculated by a sum of all children
task's percentiles.
If there are two children tasks, and one of them is
70% complete, and the other is 0% compmlete, then the
parent task is 35% complete.
formula:
sum(task percentiles) / 100 * amount of tasks
in the above case
sum(70 + 0) / 100 * 2
70 / 200
= 0.35
ta-da! A great way to implement this would be by
first implementing a checkbox "Dynamic" next to
percentile indicator to any task that already has
subtasks.
Then implement the code. This way, the user still has
all the functionallity of the old "manual" way, and
automation.
Logged In: YES
user_id=15563
geezz, I see what you mean, but it may be tricky to implement:
each task has its own "progress" field... so it should be
ereased when it gets a child?
Would be nice to have, but quite a lot of work I guess... patch
welcome of course, but I don't think I'll work on it soon myself...
Olivier