* [task#126383,doing,0.2h] Fix the bug of manageExecution tutorial.

This commit is contained in:
xieqiyu
2024-09-04 17:31:41 +08:00
committed by 王于听
parent d05752903f
commit 4b3318eab5
2 changed files with 3 additions and 3 deletions
@@ -120,6 +120,7 @@ $scrumProjectManage->tasks['manageExecution']['steps'][] = array(
'type' => 'click',
'target' => '#mainMenu #actionBar a.create-execution-btn',
'page' => 'project-execution',
'url' => array('project', 'execution', 'status=all&projectID=2'),
'title' => $lang->tutorial->scrumProjectManage->manageExecution->step2->name,
'desc' => $lang->tutorial->scrumProjectManage->manageExecution->step2->desc
);
@@ -142,7 +143,7 @@ $scrumProjectManage->tasks['manageExecution']['steps'][] = array(
$scrumProjectManage->tasks['manageExecution']['steps'][] = array(
'type' => 'click',
'target' => '#table-project-execution div[data-row="pid2"] a',
'target' => '#table-project-execution div[data-row="pid3"] a',
'page' => 'project-execution',
'url' => array('project', 'execution', 'status=all&projectID=2'),
'title' => $lang->tutorial->scrumProjectManage->manageExecution->step5->name,
+1 -2
View File
@@ -226,7 +226,7 @@ class tutorialModel extends model
*/
public function getExecutionStats($browseType = ''): array
{
$execution = $this->getProject();
$execution = $this->getExecution();
$execution->progress = 0;
$execution->estimate = 0;
@@ -469,7 +469,6 @@ class tutorialModel extends model
{
$account = $this->app->user->account;
$users[''] = '';
$users[$account] = $account;
$users['test'] = 'Test';
return $users;