171 lines
5.0 KiB
PHP
171 lines
5.0 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\supervision_project\SupervisionProject;
|
||
use app\common\model\supervision_work\SupervisionMaterialEntry;
|
||
use app\common\model\supervision_work\SupervisionMaterialEntryDetail;
|
||
use app\common\model\supervision_work\SupervisionMaterialParallelTesting;
|
||
use app\common\model\supervision_work\SupervisionMaterialParallelTestingDetail;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 工程监理--材料平行检验验证器
|
||
* Class SupervisionMaterialParallelTestingValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionMaterialParallelTestingValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'project_id' => 'require|checkProject',
|
||
'material_entry_id' => 'require|checkMaterialEntry',
|
||
'inspector' => 'require',
|
||
'inspection_date' => 'require|dateFormat:Y-m-d',
|
||
'annex' => 'checkAnnex',
|
||
'detail' => 'checkDetail'
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'project_id' => '项目id',
|
||
'material_entry_id' => '来源单据',
|
||
'code' => '编号',
|
||
'inspector' => '送检人',
|
||
'inspection_date' => '送检日期',
|
||
'remark' => '备注',
|
||
'create_user' => '创建人',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionMaterialParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 15:00
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionMaterialParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 15:00
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionMaterialParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 15:00
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionMaterialParallelTestingValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/29 15:00
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionMaterialParallelTesting::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 checkMaterialEntry($value,$rule,$params): bool|string
|
||
{
|
||
$data = SupervisionMaterialEntry::where('id',$value)->where('project_id',$params['project_id'])->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 checkDetail($value,$rule,$params): bool|string
|
||
{
|
||
if(!isset($value) || $value == '') return true;
|
||
if(!is_array($value)) return '材料信息数据格式错误';
|
||
foreach($value as $k=>$v) {
|
||
if (!empty($v['id'])) {
|
||
$data = SupervisionMaterialParallelTestingDetail::where('id', $v['id'])->findOrEmpty();
|
||
if ($data->isEmpty()) {
|
||
return '材料信息列表第' . ($k + 1) . '行数据不存在';
|
||
}
|
||
}
|
||
if (empty($v['material_entry_detail_id'])){
|
||
return '材料信息列表第' . ($k + 1) . '行材料名称为空';
|
||
}else{
|
||
$material = SupervisionMaterialEntryDetail::where('id',$v['material_entry_detail_id'])->where('material_entry_id',$params['material_entry_id'])->findOrEmpty();
|
||
if($material->isEmpty()) return '材料信息列表第' . ($k + 1) . '行材料数据不存在';
|
||
}
|
||
if (empty($v['num'])){
|
||
return '材料信息列表第' . ($k + 1) . '行取样数量为空';
|
||
}else{
|
||
if(!is_numeric($v['num'])) return '材料信息列表第' . ($k + 1) . '行取样数量必须是数字';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |