Tutorial:Simple To Do List Enhancements: Difference between revisions

m
no edit summary
mNo edit summary
mNo edit summary
Line 94: Line 94:
=== Planned vs Actual ===
=== Planned vs Actual ===


Let's say we'll measure work in days. Define an Integer field for Estimate sms another for Actual. So, whenever a team is created, the user enters the task name and priority, identifies the phase the task will occur in and the contractor who'll do the work, and then will provide an estimate of the days it will take to complete the task. As each task is completed, the user can enter the actual number of days it took.
Let's say we'll measure work in days. Define an Integer field for Estimate and another for Actual. So, whenever a task is created, the user enters the task name and priority, identifies the phase the task will occur in and the contractor who'll do the work, and then will provide an estimate of the days it will take to complete the task. As each task is completed, the user can enter the actual number of days it took.


If you really wanted to, you could get rid of the Done? checkbox another way — by filtering on Actual being 0 instead of Done? being unchecked. Again, that makes it harder to check them off, but if you're going to enter actual days each time, anyway, it's actually a bit easier.
If you really wanted to, you could get rid of the Done? checkbox another way — by filtering on Actual being 0 instead of Done? being unchecked. Again, that makes it harder to check them off, but if you're going to enter actual days each time a task is completed anyway, it's actually a bit easier.


=== Viewing Your Tasks ===
=== Viewing Your Tasks ===