+ Add case for the processExportTasks method.

This commit is contained in:
tianshujie
2023-08-21 15:21:53 +08:00
parent 19a31d5bc4
commit d536002dc3
2 changed files with 37 additions and 0 deletions
+14
View File
@@ -2013,4 +2013,18 @@ class taskTest
return $lang->task->report->$chartType;
}
/**
* 处理导出的任务信息。
* Process export task information.
*
* @param array $taskIdList
* @access public
* @return object[]
*/
public function processExportTasksTest(array $taskIdList): array
{
$tasks = $this->objectModel->dao->select('*')->from(TABLE_TASK)->where('id')->in($taskIdList)->fetchAll();
return $this->objectModel->processExportTasks($tasks);
}
}