engineering/app/adminapi/validate/supervision_project/SupervisionProjectValidate.php
2024-02-23 17:58:24 +08:00

199 lines
5.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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_project;
use app\common\model\dict\DictData;
use app\common\model\supervision_project\SupervisionProject;
use app\common\validate\BaseValidate;
/**
* 工程监理--监理项目信息验证器
* Class SupervisionProjectValidate
* @package app\adminapi\validate\supervision_project
*/
class SupervisionProjectValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_name' => 'require',
'industry' => 'checkIndustry',
'nature' => 'checkNature',
'build_area' => 'checkBuildArea',
'project_level' => 'checkProjectLevel',
'total_investment' => 'require|float|gt:0',
'initiation_date' => 'dateFormat:Y-m-d',
'contract_amount' => 'float|egt:0',
'actual_start_date' => 'dateFormat:Y-m-d',
'actual_end_date' => 'dateFormat:Y-m-d',
'planned_start_date' => 'dateFormat:Y-m-d',
'planned_end_date' => 'dateFormat:Y-m-d',
'supervision_department' => 'require',
'engineering_status' => 'checkEngineeringStatus',
'annex' => 'checkAnnex',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_name' => '项目名称',
'project_code' => '项目编号',
'industry' => '行业',
'nature' => '性质',
'build_unit' => '建设单位',
'build_area' => '建设区域',
'address' => '项目地址',
'project_level' => '项目等级',
'total_investment' => '总投资(万元)',
'initiation_date' => '立项日期',
'contract' => '关联合同',
'contract_amount' => '合同金额',
'actual_start_date' => '实际开工日期',
'actual_end_date' => '实际竣工日期',
'planned_start_date' => '计划开工日期',
'planned_end_date' => '计划竣工日期',
'contract_content' => '合同服务内容',
'project_overview' => '项目概况',
'project_requirements' => '项目要求',
'remark' => '备注',
'supervision_department' => '监管部门',
'implementation_department' => '实施部门',
'project_department' => '项目部',
'engineering_status' => '工程状态',
'project_manager' => '项目负责人员',
'part_a_unit' => '甲方单位',
'create_user' => '创建人',
];
/**
* @notes 添加场景
* @return SupervisionProjectValidate
* @author likeadmin
* @date 2024/02/23 09:52
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return SupervisionProjectValidate
* @author likeadmin
* @date 2024/02/23 09:52
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return SupervisionProjectValidate
* @author likeadmin
* @date 2024/02/23 09:52
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionProjectValidate
* @author likeadmin
* @date 2024/02/23 09:52
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionProject::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkIndustry($value): bool|string
{
$dict = DictData::where('type_value','supervision_project_industry')->column('value');
if(!in_array($value,$dict)){
return '行业数据值无效';
}
return true;
}
public function checkNature($value): bool|string
{
$dict = DictData::where('type_value','supervision_project_nature')->column('value');
if(!in_array($value,$dict)){
return '性质数据值无效';
}
return true;
}
public function checkBuildArea($value): bool|string
{
$dict = DictData::where('type_value','supervision_project_build_area')->column('value');
if(!in_array($value,$dict)){
return '建设区域数据值无效';
}
return true;
}
public function checkProjectLevel($value): bool|string
{
$dict = DictData::where('type_value','supervision_project_level')->column('value');
if(!in_array($value,$dict)){
return '项目等级数据值无效';
}
return true;
}
public function checkEngineeringStatus($value): bool|string
{
$dict = DictData::where('type_value','supervision_project_status')->column('value');
if(!in_array($value,$dict)){
return '工程状态数据值无效';
}
return true;
}
public function checkAnnex($value): bool|string
{
if(!empty($value) && $value != '' && !is_array($value)){
return '附件格式错误';
}
return true;
}
}