An alternative solution would be to fix the dashlet itself by taking care of NULL.
Edit the file modules/ProjectTask/Dashlets/MyProjectTaskDashlet/MyProjectTaskDashlet.php around line 59:
before
Code:
function buildWhere()
{
$resultArray = parent::buildWhere();
$resultArray[] = $this->seedBean->table_name . '.' . "percent_complete != 100";
return $resultArray;
} after
Code:
function buildWhere()
{
$resultArray = parent::buildWhere();
$resultArray[] = $this->seedBean->table_name . '.' . "percent_complete != 100" . " OR ". $this->seedBean->table_name . '.' . "percent_complete IS NULL";
return $resultArray;
}
Bookmarks