engineering/app/adminapi/validate/oa/FlowApproveValidate.php
2024-02-02 17:58:30 +08:00

89 lines
2.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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;
}
}