130 lines
3.2 KiB
PHP
130 lines
3.2 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\auth\Admin;
|
||
use app\common\model\project\Project;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* ProjectPreSalesMembers验证器
|
||
* Class ProjectPreSalesMembersValidate
|
||
* @package app\adminapi\validate\project
|
||
*/
|
||
class ProjectPreSalesMembersValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'project_id' => 'require|checkProject',
|
||
'technician_ids' => 'require|checkUser',
|
||
'business_people_ids' => 'require|checkUser',
|
||
'cross_departmental_personnel_ids' => 'checkUser'
|
||
];
|
||
|
||
protected $message = [
|
||
'id.require' => '缺少必要参数',
|
||
'project_id.require' => '请选择项目',
|
||
'technician_ids.require' => '请选择技术人员',
|
||
'business_people_ids.require' => '请选择商务人员',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return ProjectPreSalesMembersValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/14 10:15
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id', true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return ProjectPreSalesMembersValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/14 10:15
|
||
*/
|
||
public function sceneEdit()
|
||
{
|
||
return $this->only(['id','project_id','technician_ids','business_people_ids']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return ProjectPreSalesMembersValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/14 10:15
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return ProjectPreSalesMembersValidate
|
||
* @author likeadmin
|
||
* @date 2023/11/14 10:15
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkProject($value): bool|string
|
||
{
|
||
$project = Project::where('id',$value)->findOrEmpty();
|
||
if($project->isEmpty()){
|
||
return '项目不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkUser($value): bool|string
|
||
{
|
||
$ids = explode(',',trim($value,','));
|
||
if(empty($ids)){
|
||
return '请选择人员';
|
||
}
|
||
foreach ($ids as $v) {
|
||
$admin = Admin::field('id')->where('id',$v)->findOrEmpty();
|
||
if($admin->isEmpty()){
|
||
return '人员不存在';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
} |