'require|checkData', 'project_id' => 'require|checkProject', 'pid' => 'integer|checkPid', 'node_name' => 'require', 'node_type' => 'require|checkNodeType', 'check_item_detail' => 'checkDetail', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'project_id' => '项目id', 'node_name' => '节点名称', 'node_type' => '节点类型', 'node_code' => '节点编号', 'pid' => '父节点id', 'inspection_basis' => '检查依据', 'reference_law' => '参考法规', ]; /** * @notes 添加场景 * @return SupervisionCheckItemValidate * @author likeadmin * @date 2024/02/26 15:34 */ public function sceneAdd() { return $this->remove('id',true); } /** * @notes 编辑场景 * @return SupervisionCheckItemValidate * @author likeadmin * @date 2024/02/26 15:34 */ public function sceneEdit() {} /** * @notes 删除场景 * @return SupervisionCheckItemValidate * @author likeadmin * @date 2024/02/26 15:34 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return SupervisionCheckItemValidate * @author likeadmin * @date 2024/02/26 15:34 */ public function sceneDetail() { return $this->only(['id']); } public function checkData($value): bool|string { $data = SupervisionCheckItem::where('id',$value)->findOrEmpty(); if($data->isEmpty()){ return '数据不存在'; } return true; } public function checkProject($value): bool|string { $data = SupervisionProject::where('id',$value)->findOrEmpty(); if($data->isEmpty()){ return '项目信息不存在'; } return true; } public function checkPid($value): bool|string { if(empty($value)) return true; $data = SupervisionCheckItem::where('id',$value)->findOrEmpty(); if($data->isEmpty()){ return '父级节点信息不存在'; } return true; } public function checkNodeType($value): bool|string { $dict = DictData::where('type_value','check_item_node_type')->column('value'); if(!in_array($value,$dict)){ return '节点类型数据值无效'; } return true; } public function checkDetail($value): bool|string { if(empty($value) || $value == '') return true; if(!is_array($value)) return '检查项数据格式错误'; foreach($value as $k=>$v){ if(isset($v['id']) && !empty($v['id'])){ $data = SupervisionCheckItemDetail::where('id',$v['id'])->findOrEmpty(); if($data->isEmpty()){ return '第'.($k+1).'行检查项信息不存在'; } } if(empty($v['check_type'])){ return '第'.($k+1).'行检查类别为空'; } if(empty($v['check_content'])){ return '第'.($k+1).'行检查内容为空'; } if(!isset($v['must_check']) || $v['must_check'] == ''){ return '第'.($k+1).'行是否必检为空'; } if(!in_array($v['must_check'],[0,1])){ return '第'.($k+1).'行是否必检项数据值错误'; } } return true; } }