169 lines
5.0 KiB
PHP
169 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\SupervisionParticipatingUnits;
|
||
use app\common\model\supervision_project\SupervisionProject;
|
||
use app\common\model\supervision_work\SupervisionMaterialEntry;
|
||
use app\common\model\supervision_work\SupervisionMaterialEntryDetail;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 材料进场验证器
|
||
* Class SupervisionMaterialEntryValidate
|
||
* @package app\adminapi\validate\supervision_work
|
||
*/
|
||
class SupervisionMaterialEntryValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require|checkData',
|
||
'project_id' => 'require|checkProject',
|
||
'company_id' => 'checkCompany',
|
||
'theme' => 'require',
|
||
'enter_time' => 'require|dateFormat:Y-m-d H:i:s',
|
||
'enter_result' => 'require|in:0,1,2',
|
||
'parallel_test' => 'require|in:0,1',
|
||
'entry_detail' => 'checkEntryDetail',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'project_id' => '项目id',
|
||
'company_id' => '采购单位id',
|
||
'theme' => '进场主题',
|
||
'code' => '编号',
|
||
'enter_time' => '进场时间',
|
||
'co_participant' => '共同参与人',
|
||
'enter_result' => '进场结果',
|
||
'parallel_test' => '是否平行检验',
|
||
'remark' => '备注',
|
||
'create_user' => '创建人',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SupervisionMaterialEntryValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/28 13:41
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SupervisionMaterialEntryValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/28 13:41
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SupervisionMaterialEntryValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/28 13:41
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SupervisionMaterialEntryValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/28 13:41
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkData($value): bool|string
|
||
{
|
||
$data = SupervisionMaterialEntry::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 checkCompany($value,$rule,$params): bool|string
|
||
{
|
||
$data = SupervisionParticipatingUnits::where('id',$value)->where('project_id',$params['project_id'])->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '采购单位信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkEntryDetail($value): bool|string
|
||
{
|
||
if(!isset($value) || $value == '') return true;
|
||
if(!is_array($value)) return '材料信息数据格式错误';
|
||
foreach($value as $k=>$v){
|
||
if(!empty($v['id'])){
|
||
$data = SupervisionMaterialEntryDetail::where('id',$v['id'])->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '材料信息列表第'.($k+1).'行数据不存在';
|
||
}
|
||
}
|
||
if(empty($v['name'])) return '材料信息列表第'.($k+1).'行材料名称为空';
|
||
if(empty($v['brand'])) return '材料信息列表第'.($k+1).'行材料品牌为空';
|
||
if(empty($v['model'])) return '材料信息列表第'.($k+1).'行材料型号为空';
|
||
if(empty($v['unit'])) return '材料信息列表第'.($k+1).'行计数单位为空';
|
||
if(!isset($v['contract_brand']) || $v['contract_brand'] == ''){
|
||
return '材料信息列表第'.($k+1).'行是否合同约定品牌为空';
|
||
}else{
|
||
if(!in_array($v['contract_brand'],[0,1])) return '材料信息列表第'.($k+1).'行是否合同约定品牌选项数据值无效';
|
||
}
|
||
if(empty($v['entry_number'])){
|
||
return '材料信息列表第'.($k+1).'行进场数量为空';
|
||
}else{
|
||
if(!is_numeric($v['entry_number'])) return '材料信息列表第'.($k+1).'行进场数量必须是数字';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |