If you want your Project Tasks Dashlet to show task even if the percent completed is NULL, you can modify the following file:
modules/ProjectTask/Dashlets/MyProjectTaskDashlet/MyProjectTaskDashlet.php
in version 5.1 change line 63 from:
PHP Code:
$resultArray[] = $this->seedBean->table_name . '.' . "percent_complete != 100";
to
PHP Code:
$resultArray[] = $this->seedBean->table_name . '.' . "percent_complete != 100 OR ".$this->seedBean->table_name . '.' . "percent_complete IS NULL";
I hope it helps
Benjamin
Bookmarks