159 lines
3.9 KiB
PHP
159 lines
3.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\safety;
|
||
|
||
|
||
use app\common\model\dept\Dept;
|
||
use app\common\model\dept\Orgs;
|
||
use app\common\model\project\Project;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 安全生产月验证器
|
||
* Class SafetyProductMonthValidate
|
||
* @package app\adminapi\validate\safety
|
||
*/
|
||
class SafetyProductMonthValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'org_id' => 'require|checkOrg',
|
||
'dept_id' => 'require|checkDept',
|
||
'project_id' => 'require|checkProject',
|
||
'month' => 'require|in:1,2,3,4,5,6,7,8,9,10,11,12',
|
||
'resp_user' => 'require',
|
||
'hazard_num' => 'integer|gt:0',
|
||
'file' => 'checkFile'
|
||
];
|
||
|
||
protected $message = [
|
||
'id.require' => '缺少必要参数',
|
||
'org_id.require' => '请选择组织',
|
||
'dept_id.require' => '请选择部门',
|
||
'project_id.require' => '请选择项目',
|
||
'month.require' => '请选择月份',
|
||
'month.in' => '月份数据值错误',
|
||
'resp_user.require' => '请填写负责人',
|
||
'hazard_num.integer' => '隐患数量值必须是整数',
|
||
'hazard_num.gt' => '隐患数量值必须大于0',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'org_id' => '组织id',
|
||
'dept_id' => '部门id',
|
||
'project_id' => '项目id',
|
||
'month' => '月份',
|
||
'resp_user' => '负责人',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return SafetyProductMonthValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/20 10:46
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return SafetyProductMonthValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/20 10:46
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return SafetyProductMonthValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/20 10:46
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return SafetyProductMonthValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/20 10:46
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkOrg($value): bool|string
|
||
{
|
||
$data = Orgs::where('id',$value)->findOrEmpty();
|
||
if($data->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 checkProject($value): bool|string
|
||
{
|
||
$data = Project::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '项目不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkFile($value): bool|string
|
||
{
|
||
if(!empty($value) && $value != ''){
|
||
if(!is_array($value)){
|
||
return '附件必须是json数组';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |