更新
This commit is contained in:
parent
b7ad755ca7
commit
86dacbac4c
@ -58,7 +58,7 @@ class ProjectFollowUpLogic extends BaseLogic
|
||||
'follow_stage' => $params['follow_stage'],
|
||||
'notes' => $params['notes'] ?? '',
|
||||
'next_follow_up_date' => !empty($params['next_follow_up_date']) ? strtotime($params['next_follow_up_date']) : 0,
|
||||
'file' => !empty($params['file']) ? $params['file'] : null,
|
||||
'file' => $params['file']?json_encode($params['file']) :'',
|
||||
]);
|
||||
Project::where('id', $params['project_id'])->update([
|
||||
'status' => 1,
|
||||
@ -101,7 +101,7 @@ class ProjectFollowUpLogic extends BaseLogic
|
||||
'follow_stage' => $params['follow_stage'],
|
||||
'notes' => $params['notes'] ?? '',
|
||||
'next_follow_up_date' => !empty($params['next_follow_up_date']) ? strtotime($params['next_follow_up_date']) : 0,
|
||||
'file' => !empty($params['file']) ? $params['file'] : null,
|
||||
'file' => $params['file']?json_encode($params['file']) :'',
|
||||
'update_time' => time(),
|
||||
]);
|
||||
Db::commit();
|
||||
|
@ -157,9 +157,8 @@ class ProjectFollowUpValidate extends BaseValidate
|
||||
|
||||
public function checkFile($value): bool|string
|
||||
{
|
||||
if(!empty($value) && $value != ''){
|
||||
$annex = json_decode($value,true);
|
||||
if(empty($annex) || !is_array($annex)){
|
||||
if($value){
|
||||
if(!is_array($value)){
|
||||
return '附件格式错误';
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user