* Finish task#59703,59711

This commit is contained in:
zenggang
2022-07-06 06:42:19 +00:00
parent 1653df17fd
commit 8773257051
12 changed files with 96 additions and 4 deletions
+4
View File
@@ -1324,12 +1324,16 @@ class execution extends control
list($begin, $end) = $this->execution->getBeginEnd4CFD($execution);
$dateList = date::getDateList($begin, $end, 'Y-m-d', '');
list($cycleTimeAvg, $throughput) = $this->execution->getCFDStatistics($executionID, $dateList, $type);
$this->view->title = $this->lang->execution->CFD;
$this->view->type = $type;
$this->view->execution = $execution;
$this->view->executionName = $execution->name;
$this->view->executionID = $executionID;
$this->view->chartData = $this->execution->buildCFDData($executionID, $dateList, $type);
$this->view->cycleTimeAvg = $cycleTimeAvg;
$this->view->throughput = $throughput;
$this->display();
}