* Finish task #55675.

This commit is contained in:
tianshujie
2022-06-01 14:47:21 +08:00
parent 3e10f3d0c9
commit aec74869fe
2 changed files with 2 additions and 10 deletions
+1 -5
View File
@@ -1726,11 +1726,7 @@ class kanban extends control
->fi()
->fetch();
if($groupBy and $groupBy != 'default')
{
$fromLaneID = $fromCell->lane;
$toLaneID = $fromCell->lane;
}
if($groupBy and $groupBy != 'default') $fromLaneID = $toLaneID = $fromCell->lane;
$toCell = $this->dao->select('id, cards')->from(TABLE_KANBANCELL)
->where('kanban')->eq($executionID)
+1 -5
View File
@@ -3156,11 +3156,7 @@ class kanbanModel extends model
->fi()
->fetch();
if($groupBy and $groupBy != 'default')
{
$fromLaneID = $fromCell->lane;
$toLaneID = $fromCell->lane;
}
if($groupBy and $groupBy != 'default') $fromLaneID = $toLaneID = $fromCell->lane;
$fromCellCards = $fromCell->cards;
$toCell = $this->dao->select('*')->from(TABLE_KANBANCELL)->where('lane')->eq($toLaneID)->andWhere('`column`')->eq($toColID)->fetch();