* Modify the problem of creating a bug lane and reporting an error.

This commit is contained in:
tianshujie
2022-01-14 14:41:13 +08:00
parent 31492d118b
commit 8399a61753
+4 -2
View File
@@ -316,9 +316,9 @@ class kanbanModel extends model
if($from == 'kanban') $this->dao->update(TABLE_KANBANCOLUMN)->set('type')->eq("column{$columnID}")->where('id')->eq($columnID)->exec();
/* Add kanban cell. */
$lanes = $this->dao->select('id')->from(TABLE_KANBANLANE)->where('`group`')->eq($column->group)->fetchPairs();
$lanes = $this->dao->select('id,type')->from(TABLE_KANBANLANE)->where('`group`')->eq($column->group)->fetchPairs();
$kanbanID = $this->dao->select('kanban')->from(TABLE_KANBANREGION)->where('id')->eq($regionID)->fetch('kanban');
foreach($lanes as $laneID) $this->addKanbanCell($kanbanID, $laneID, $columnID, 'common');
foreach($lanes as $laneID => $laneType) $this->addKanbanCell($kanbanID, $laneID, $columnID, $laneType);
return $columnID;
}
@@ -2097,6 +2097,8 @@ class kanbanModel extends model
->andWhere('t1.lane')->eq($lane->id)
->fetchPairs();
if(empty($cardPairs)) return;
if($laneType == 'story')
{
$stories = $this->loadModel('story')->getExecutionStories($executionID);