172 lines
4.9 KiB
PHP
172 lines
4.9 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\validate\supervision_work;
|
||
|
||
|
||
use app\common\model\dict\DictData;
|
||
use app\common\model\supervision_project\SupervisionProject;
|
||
use app\common\model\supervision_work\SupervisionCheckItem;
|
||
use app\common\model\supervision_work\SupervisionEntityParallelTesting;
|
||
use app\common\model\supervision_work\SupervisionProblem;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--实体平行检验验证器
|
||
* Class SupervisionEntityParallelTestingValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionEntityParallelTestingValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'project_id' => 'require|checkProject',
|
||
'theme' => 'require',
|
||
'check_item_id' => 'checkCheckItem',
|
||
'start_time' => 'require|dateFormat:Y-m-d',
|
||
'end_time' => 'require|dateFormat:Y-m-d',
|
||
'result' => 'require|in:0,1',
|
||
'annex' => 'checkAnnex',
|
||
'problem' => 'checkProblem'
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'project_id' => '项目id',
|
||
'theme' => '检验主题',
|
||
'code' => '编号',
|
||
'check_item_id' => '工程单位',
|
||
'position' => '检验部位',
|
||
'start_time' => '开始时间',
|
||
'end_time' => '结束时间',
|
||
'result' => '检验结果',
|
||
'remark' => '备注',
|
||
'create_user' => '创建人',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionEntityParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 16:32
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionEntityParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 16:32
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionEntityParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 16:32
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionEntityParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 16:32
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value){
|
||
$data = SupervisionEntityParallelTesting::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 checkCheckItem($value,$rule,$params): bool|string
|
||
{
|
||
$data = SupervisionCheckItem::where('id',$value)->where('project_id',$params['project_id'])->where('node_type',2)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '工程单位信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkAnnex($value): bool|string
|
||
{
|
||
if(!empty($value) && $value != '' && !is_array($value)){
|
||
return '附件格式错误';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkProblem($value): bool|string
|
||
{
|
||
if(!isset($value) || $value == '') return true;
|
||
if(!is_array($value)) return '试块试件见证问题数据格式错误';
|
||
foreach($value as $k=>$v){
|
||
if(!empty($v['id'])){
|
||
$data = SupervisionProblem::where('id',$v['id'])->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '试块试件见证问题列表第'.($k+1).'行数据不存在';
|
||
}
|
||
}
|
||
if(empty($v['problem_cate'])){
|
||
return '试块试件见证问题列表第'.($k+1).'行问题分类为空';
|
||
}else{
|
||
$dict = DictData::where('type_value','problem_cate')->column('value');
|
||
if(!in_array($v['problem_cate'],$dict)) return '试块试件见证问题列表第'.($k+1).'行问题分类数据值无效';
|
||
}
|
||
if(empty($v['problem_description'])) return '试块试件见证问题列表第'.($k+1).'行问题说明为空';
|
||
if(empty($v['problem_name'])) return '试块试件见证问题列表第'.($k+1).'行问题名称为空';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |