* Refactor kanban method.

This commit is contained in:
tianshujie
2023-09-13 16:22:34 +08:00
parent 20133f86cc
commit 9a0c89a43c
+5 -5
View File
@@ -110,6 +110,7 @@ class program extends control
}
/**
* 项目集看板。
* Program kanban list.
*
* @access public
@@ -117,11 +118,10 @@ class program extends control
*/
public function kanban()
{
$this->app->loadLang('release');
$this->session->set('projectList', $this->app->getURI(true), 'project');
$this->session->set('productPlanList', $this->app->getURI(true), 'product');
$this->session->set('releaseList', $this->app->getURI(true), 'product');
$uri = $this->app->getURI(true);
$this->session->set('projectList', $uri, 'project');
$this->session->set('productPlanList', $uri, 'product');
$this->session->set('releaseList', $uri, 'product');
$this->view->title = $this->lang->program->kanban->common;
$this->view->kanbanGroup = array_filter($this->program->getKanbanGroup());