268 lines
7.0 KiB
PHP
268 lines
7.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\project;
|
||
|
||
|
||
use app\common\model\custom\Custom;
|
||
use app\common\model\dept\Dept;
|
||
use app\common\model\dept\Orgs;
|
||
use app\common\model\dict\DictData;
|
||
use app\common\model\project\ProjectTypeSet;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* Project验证器
|
||
* Class ProjectValidate
|
||
* @package app\adminapi\validate\project
|
||
*/
|
||
class ProjectValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'org_id' => 'require|checkOrg',
|
||
'dept_id' => 'require|checkDept',
|
||
'custom_id' => 'require|checkCustom',
|
||
'project_type' => 'require|checkProjectType',
|
||
'name' => 'require',
|
||
'project_content' => 'checkProjectContent',
|
||
'bidding_time' => 'dateFormat:Y-m-d',
|
||
'bidding_method' => 'checkBidMethod',
|
||
'relationship' => 'checkRelationship',
|
||
'discovery_time' => 'require|dateFormat:Y-m-d',
|
||
'information_sources' => 'require|checkInfoSource',
|
||
'construction_funds_sources' => 'checkFundSource',
|
||
'construction_financial_status' => 'checkFinancialStatus',
|
||
'construction_recognition' => 'checkConstructionRecognition',
|
||
'my_construction_recognition' => 'checkMyConstructionRecognition',
|
||
'strategic_significance' => 'checkStrategicSignificance',
|
||
'industry' => 'checkIndustry',
|
||
'unit_nature' => 'checkUnitNature',
|
||
'annex' => 'checkAnnex',
|
||
];
|
||
|
||
protected $message = [
|
||
'id.require' => '缺少必要参数',
|
||
'custom_id.require' => '请选择客户',
|
||
'project_type.require' => '请选择工程类型',
|
||
'name.require' => '请填写工程名称',
|
||
'discovery_time.require' => '请选择发现时间',
|
||
'information_sources.require' => '请选择信息来源',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id', true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return ProjectValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/12 14:30
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkOrg($value): bool|string
|
||
{
|
||
$org = Orgs::where('id',$value)->findOrEmpty();
|
||
if($org->isEmpty()){
|
||
return '组织不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkDept($value,$rule,$data): bool|string
|
||
{
|
||
$dept = Dept::where('id',$value)->findOrEmpty();
|
||
if($dept->isEmpty()){
|
||
return '部门不存在';
|
||
}
|
||
if($dept['org_id'] != $data['org_id']){
|
||
return '部门无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkCustom($value): bool|string
|
||
{
|
||
$custom = Custom::where('id',$value)->findOrEmpty();
|
||
if($custom->isEmpty()){
|
||
return '客户不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkProjectType($value): bool|string
|
||
{
|
||
$project_type = ProjectTypeSet::where('id',$value)->findOrEmpty();
|
||
if($project_type->isEmpty()){
|
||
return '项目类型不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkProjectContent($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','project_content')->column('value');
|
||
$value=explode(',',$value);
|
||
foreach($value as $v){
|
||
if(!in_array($v,$dictData)){
|
||
return '项目内容无效';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkBidMethod($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','bidding_method')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '招标方式无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkRelationship($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','relationship')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '关系度无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkInfoSource($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','information_sources')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '信息来源无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkFundSource($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','construction_funds_sources')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '项目建设资金来源无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkFinancialStatus($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','construction_financial_status')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '建设方财务状况无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkConstructionRecognition($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','construction_recognition')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '建设方对我方认可度无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkMyConstructionRecognition($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','my_construction_recognition')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '我方对建设方认可度无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkStrategicSignificance($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','strategic_significance')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '战略意义无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkIndustry($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','industry')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '所属行业无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkUnitNature($value): bool|string
|
||
{
|
||
$dictData = DictData::where('type_value','unit_nature')->column('value');
|
||
if(!in_array($value,$dictData)){
|
||
return '单位性质无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkAnnex($value): bool|string
|
||
{
|
||
if(!empty($value) && $value != ''){
|
||
$annex =$value;//json_decode($value,true);
|
||
if(empty($annex) || !is_array($annex)){
|
||
return '附件格式错误';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |