89 lines
2.2 KiB
PHP
89 lines
2.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\oa;
|
||
|
||
|
||
use app\common\model\dict\DictData;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* 日常审批验证器
|
||
* Class FlowApproveValidate
|
||
* @package app\adminapi\validate\oa
|
||
*/
|
||
class FlowApproveValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'type' => 'require|in:1,2,3',
|
||
'revoke_reason' => 'require',
|
||
'check_reason' => 'require',
|
||
'check_status' => 'require|checkStatus|in:1,2'
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'type' => '列表类型',
|
||
'revoke_reason' => '撤销理由',
|
||
'check_reason' => '审批意见',
|
||
'check_status' => '审批状态'
|
||
];
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return FlowApproveValidate
|
||
* @author likeadmin
|
||
* @date 2024/02/01 11:26
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function sceneRevoke()
|
||
{
|
||
return $this->only(['id','revoke_reason']);
|
||
}
|
||
|
||
public function sceneCheck()
|
||
{
|
||
return $this->only(['id','check_reason','check_status']);
|
||
}
|
||
|
||
public function sceneLists()
|
||
{
|
||
return $this->only(['type']);
|
||
}
|
||
|
||
public function checkStatus($value){
|
||
$dict = DictData::where('type_value','flow_record_status')->column('value');
|
||
if(!in_array($value,$dict)){
|
||
return '审批状态值无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |