* finish task #2776.

This commit is contained in:
wangyidong
2016-11-21 12:03:44 +08:00
parent 21c11b9edb
commit c4e8cef7f8
7 changed files with 65 additions and 10 deletions
+9 -8
View File
@@ -199,14 +199,15 @@ class task extends control
$position[] = $this->lang->task->common;
$position[] = $this->lang->task->batchCreate;
$this->view->title = $title;
$this->view->position = $position;
$this->view->project = $project;
$this->view->stories = $stories;
$this->view->modules = $modules;
$this->view->storyID = $storyID;
$this->view->story = $this->loadModel('story')->getByID($storyID);
$this->view->members = $members;
$this->view->title = $title;
$this->view->position = $position;
$this->view->project = $project;
$this->view->stories = $stories;
$this->view->modules = $modules;
$this->view->storyID = $storyID;
$this->view->story = $this->story->getByID($storyID);
$this->view->storyTasks = $this->task->getStoryTaskCounts(array_keys($stories), $projectID);
$this->view->members = $members;
$this->display();
}