engineering/app/adminapi/validate/project/ProjectTravelReimbursementDetailValidate.php
2024-01-19 11:10:36 +08:00

126 lines
3.4 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\project;
use app\common\model\project\ProjectCostTempSet;
use app\common\model\project\ProjectTravelReimbursement;
use app\common\validate\BaseValidate;
/**
* 报销明细验证器
* Class ProjectTravelReimbursementDetailValidate
* @package app\adminapi\validate\project
*/
class ProjectTravelReimbursementDetailValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
'travel_reimbursement_id' => 'require|checkTravelReimbursement',
'project_cost_temp_id' => 'require|checkProjectCostTemp',
'traffic_fee' => 'require|float|egt:0',
'stay_fee' => 'require|float|egt:0',
'restaurant_fee' => 'require|float|egt:0',
'subsidy_fee' => 'require|float|egt:0',
'other_fee' => 'require|float|egt:0',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'travel_reimbursement_id' => '差旅报销单id',
'project_cost_temp_id' => '项目费用模板id',
'traffic_fee' => '交通费用',
'stay_fee' => '住宿费用',
'restaurant_fee' => '餐饮费用',
'subsidy_fee' => '补助费用',
'other_fee' => '其它费用',
];
/**
* @notes 添加场景
* @return ProjectTravelReimbursementDetailValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return ProjectTravelReimbursementDetailValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return ProjectTravelReimbursementDetailValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectTravelReimbursementDetailValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkTravelReimbursement($value): bool|string
{
$data = ProjectTravelReimbursement::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '差旅报销申请信息不存在';
}
return true;
}
public function checkProjectCostTemp($value): bool|string
{
$data = ProjectCostTempSet::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目费用模板信息不存在';
}
return true;
}
}