This commit is contained in:
mkm 2024-01-10 09:54:57 +08:00
parent b25372aa2b
commit 3645c6deae
2 changed files with 8 additions and 1 deletions

View File

@ -350,6 +350,13 @@ class Task extends CommonModel
TaskTag::setTag($tagCode, $data['code']);
}
}
if(isset($data['file_list']) && $data['file_list']){
$file_list= explode(',',$data['file_list']);
$arr= File::whereIn('code',$file_list)->select();
foreach ($arr as $v){
\app\common\Model\SourceLink::createSource('file', $v['code'], 'task', $data['code']);
}
}
}
//todo 添加任务动态

View File

@ -155,7 +155,7 @@ class Task extends BasicApi
*/
public function save(Request $request)
{
$data = $request::only('name,stage_code,project_code,assign_to,pcode,exchangeList,description,end_time,pri,executor,copied_list,department_code,liasion_code');
$data = $request::only('name,stage_code,project_code,assign_to,pcode,exchangeList,description,end_time,pri,executor,copied_list,department_code,liasion_code,file_list');
if (!isset($data['assign_to'])) {
$data['assign_to'] = '';
}