* Add move card for execution-kanban.

This commit is contained in:
liumengyi
2022-01-14 15:00:36 +08:00
parent 5ecba2a5da
commit 0167541bb4
5 changed files with 97 additions and 72 deletions
+3 -2
View File
@@ -1973,11 +1973,12 @@ class execution extends control
* @access public
* @return void
*/
public function kanban($executionID, $browseType = 'all', $orderBy = 'id_asc', $groupBy = 'all')
public function kanban($executionID, $browseType = 'all', $orderBy = 'id_asc', $groupBy = '')
{
if($groupBy == '') $groupBy = 'default';
$this->lang->execution->menu = new stdclass();
$execution = $this->commonAction($executionID);
$kanbanData = $this->loadModel('kanban')->getRDKanban($executionID, $browseType, $orderBy, $groupBy);
$kanbanData = $this->loadModel('kanban')->getRDKanban($executionID, $browseType, $orderBy);
$executionActions = array();
foreach($this->config->execution->statusActions as $action)