This commit is contained in:
weiz 2024-03-01 11:15:24 +08:00
parent 95528e30fe
commit 60c3233999

View File

@ -159,7 +159,7 @@ class SupervisionCheckItemValidate extends BaseValidate
if(empty($v['check_content'])){ if(empty($v['check_content'])){
return '第'.($k+1).'行检查内容为空'; return '第'.($k+1).'行检查内容为空';
} }
if(!isset($v['must_check']) || $v['must_check'] = ''){ if(!isset($v['must_check']) || $v['must_check'] == ''){
return '第'.($k+1).'行是否必检为空'; return '第'.($k+1).'行是否必检为空';
} }
if(!in_array($v['must_check'],[0,1])){ if(!in_array($v['must_check'],[0,1])){