* Call the getProductStats method if in tutorial mode.

This commit is contained in:
wangxuepeng
2023-11-02 16:14:41 +08:00
parent d6a302dbeb
commit 306ab2ad02
2 changed files with 10 additions and 1 deletions
+7 -1
View File
@@ -123,8 +123,14 @@ class tutorialModel extends model
$product->closedBugs = 0;
$product->fixedBugs = 0;
$product->assignToNull = 0;
$product->lineName = 0;
$product->executions = 0;
$product->coverage = 0;
$product->activeBugs = 0;
$product->latestReleaseDate = 0;
$product->latestRelease = 0;
$productStat[$product->program][$product->line]['products'][$product->id] = $product;
$productStat[$product->id] = $product;
return $productStat;
}