This commit is contained in:
weiz 2024-03-01 09:34:43 +08:00
parent 9a6684ca68
commit 36879dc814

View File

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