Merge branch 'tsj_fixbug' into 'master'

* Fix bug #32145.

See merge request easycorp/zentaopms!6955
This commit is contained in:
王怡栋
2023-02-15 03:23:18 +00:00
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -2697,7 +2697,7 @@ class execution extends control
$userList['closed']->avatar = '';
$projectID = $execution->project;
$project = $this->dao->findByID($projectID)->from(TABLE_PROJECT)->fetch();
$project = $this->project->getByID($projectID);
$hiddenPlan = $project->model !== 'scrum';
$this->view->title = $this->lang->execution->kanban;
+2
View File
@@ -356,6 +356,8 @@ class tutorialModel extends model
$execution->burns = array(35, 35);
$execution->hasProduct = '1';
$execution->multiple = '';
$execution->colWidth = '200';
return $execution;
}