144 lines
3.5 KiB
PHP
144 lines
3.5 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\dict\DictData;
|
||
use app\common\model\project\Project;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 出差申请验证器
|
||
* Class ProjectTripApplyValidate
|
||
* @package app\adminapi\validate\project
|
||
*/
|
||
class ProjectTripApplyValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'project_id' => 'require|checkProject',
|
||
'origin_address' => 'require',
|
||
'target_address' => 'require',
|
||
'traffic' => 'require|checkTraffic',
|
||
'start_date' => 'require|dateFormat:Y-m-d',
|
||
'end_date' => 'require|dateFormat:Y-m-d|checkEndDate',
|
||
'annex' => 'checkAnnex'
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'project_id' => '项目id',
|
||
'origin_address' => '出差起始地',
|
||
'target_address' => '出差目的地',
|
||
'traffic' => '交通工具',
|
||
'start_date' => '出差时间',
|
||
'end_date' => '结束时间',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return ProjectTripApplyValidate
|
||
* @author likeadmin
|
||
* @date 2024/01/17 09:22
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return ProjectTripApplyValidate
|
||
* @author likeadmin
|
||
* @date 2024/01/17 09:22
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return ProjectTripApplyValidate
|
||
* @author likeadmin
|
||
* @date 2024/01/17 09:22
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return ProjectTripApplyValidate
|
||
* @author likeadmin
|
||
* @date 2024/01/17 09:22
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkProject($value): bool|string
|
||
{
|
||
$data = Project::where('id',$value)->findOrEmpty();
|
||
if($data->isEmpty()){
|
||
return '项目信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkTraffic($value): bool|string
|
||
{
|
||
$dict = DictData::where('type_value','traffic')->column('value');
|
||
if(!in_array($value,$dict)){
|
||
return '交通工具无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkEndDate($value,$rule,$data): bool|string
|
||
{
|
||
$end_time = strtotime($value);
|
||
$start_time = strtotime($data['start_date']);
|
||
if($end_time <= $start_time){
|
||
return '结束时间必须大于开始时间';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkAnnex($value): bool|string
|
||
{
|
||
if(!empty($value) && $value != ''){
|
||
if(!is_array($value)){
|
||
return '附件格式错误';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
} |