Two possibilities / #1597

I see to possible solutions for this problem:

First:Hack

Add a special solution for this problem only. There already is a column "task_efforts" that does just what you need:

Just add a line to lists/list_tasks.inc.php:

from lists/list_tasks.inc.php

        $this->add_col( new ListBlockCol_Milestone);
        $this->add_col( new ListBlockCol_EstimatedComplete);
        $this->add_col( new ListBlockCol_DaysLeft);
        $this->add_col( new ListBlockColPubLevel());
        $this->add_col( new ListBlockCol_TaskSumEfforts());  ### add this line

But this solution is so slow, that it is not preferable for all users.


Second:Long term

  • Implement user customization
  • Implement caching of booked efforts (I still believe that booked efforts for task folders have to summed up).

tom