+ add owner to test task.

This commit is contained in:
wangchunsheng
2010-11-29 13:01:52 +00:00
parent f3ce18cba5
commit 01192daf5b
9 changed files with 27 additions and 3 deletions

View File

@@ -100,6 +100,7 @@ class testtask extends control
$this->view->projects = $this->product->getProjectPairs($productID);
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID);
$this->view->users = $this->loadModel('user')->getPairs('noclosed|nodeleted');
$this->display();
}
@@ -125,7 +126,7 @@ class testtask extends control
$this->view->productID = $productID;
$this->view->task = $task;
$this->view->users = $this->loadModel('user')->getPairs('noclosed');
$this->view->users = $this->loadModel('user')->getPairs('noclosed|noletter');
$this->view->actions = $this->loadModel('action')->getList('testtask', $taskID);
$this->display();
@@ -218,6 +219,7 @@ class testtask extends control
$this->view->task = $task;
$this->view->projects = $this->product->getProjectPairs($productID);
$this->view->builds = $this->loadModel('build')->getProductBuildPairs($productID);
$this->view->users = $this->loadModel('user')->getPairs();
$this->display();
}