* finish task #74774.

This commit is contained in:
wangyidong
2022-11-02 14:48:19 +08:00
parent f2cd7c12b4
commit df497ad610
3 changed files with 3 additions and 3 deletions
-2
View File
@@ -533,8 +533,6 @@ class execution extends control
$this->view->title = $execution->name . $this->lang->colon . $this->lang->execution->importTask;
$this->view->pager = $pager;
$this->view->position[] = html::a(inlink('browse', "executionID=$toExecution"), $execution->name);
$this->view->position[] = $this->lang->execution->importTask;
$this->view->tasks2Imported = $tasks2ImportedList;
$this->view->executions = $executions;
$this->view->executionID = $execution->id;
+2 -1
View File
@@ -1,4 +1,5 @@
#fromproject_chosen .chosen-single {width: 220px;}
#fromexecution_chosen .chosen-single {max-width: 220px;}
#fromexecution_chosen .chosen-drop {white-space: nowrap;}
.c-name {min-width: 200px;}
.c-hour {width: 80px;}
#importTaskForm {min-height: 350px;}
+1
View File
@@ -2383,6 +2383,7 @@ class executionModel extends model
$brotherProjects = $this->project->getBrotherProjects($project);
$executions = $this->dao->select('id')->from(TABLE_EXECUTION)
->where('project')->in($brotherProjects)
->andWhere('multiple')->eq('1')
->andWhere('status')->ne('closed')
->fetchPairs('id');