This commit is contained in:
tanghucheng
2023-09-20 04:03:22 -04:00
parent fa8b2cebbd
commit 80295ca4d5
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -1388,7 +1388,7 @@ class programModel extends model
foreach($teamMembers as $projectID => $teamCount)
{
if(!isset($stats[$projectID])) $stats[$projectID] = array('totalEstimate' => 0, 'totalConsumed' => 0, 'totalLeft' => 0, 'teamCount' => 0);
if(!isset($stats[$projectID])) $stats[$projectID] = array('totalEstimate' => 0, 'totalConsumed' => 0, 'totalLeft' => 0, 'teamCount' => 0, 'totalConsumedNotDel' => 0, 'totalLeftNotDel' => 0);
$stats[$projectID]['teamCount'] = $teamCount;
}