更新
This commit is contained in:
parent
b25372aa2b
commit
3645c6deae
@ -350,6 +350,13 @@ class Task extends CommonModel
|
|||||||
TaskTag::setTag($tagCode, $data['code']);
|
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 添加任务动态
|
//todo 添加任务动态
|
||||||
|
@ -155,7 +155,7 @@ class Task extends BasicApi
|
|||||||
*/
|
*/
|
||||||
public function save(Request $request)
|
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'])) {
|
if (!isset($data['assign_to'])) {
|
||||||
$data['assign_to'] = '';
|
$data['assign_to'] = '';
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user