* [bug#58007,done,0.2h] fix bug.

This commit is contained in:
sunguangming
2024-12-19 13:15:21 +08:00
committed by 田淑杰
parent 82a3b79c04
commit ed2b9832db
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1753,7 +1753,7 @@ class taskModel extends model
$tasks = $this->dao->select('*')->from(TABLE_TASK)->alias('t1')->where($this->session->taskQueryCondition)
->beginIF($this->post->exportType == 'selected')->andWhere('t1.id')->in($this->cookie->checkedItem)->fi()
->orderBy($sort)
->fetchAll('id');
->fetchAll('id', false);
foreach($tasks as $key => $task)
{
+1 -1
View File
@@ -673,7 +673,7 @@ class transferModel extends model
}
$moduleDatas = $sql->where($queryCondition)
->beginIF($this->post->exportType == 'selected')->andWhere('t1.id')->in($checkedItem)->fi()
->fetchAll('id');
->fetchAll('id', false);
}
elseif($queryCondition)
{