engineering/app/adminapi/validate/project/ProjectSubpackageBudgetValidate.php
2024-02-19 17:49:52 +08:00

206 lines
5.1 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\dept\Dept;
use app\common\model\dept\Orgs;
use app\common\model\project\Project;
use app\common\model\project\ProjectSubpackageBudget;
use app\common\model\project\ProjectSubpackageBudgetDetail;
use app\common\validate\BaseValidate;
/**
* 分包预算验证器
* Class ProjectSubpackageBudgetValidate
* @package app\adminapi\validate\project
*/
class ProjectSubpackageBudgetValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'org_id' => 'require|checkOrg',
'dept_id' => 'require|checkDept',
'project_id' => 'require|checkProject',
'annex' => 'checkAnnex',
'subpackage_budget_detail' => 'require|checkSubpackageBudgetDetail',
'flow_id' => 'require|checkFlow',
'path' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'org_id' => '组织id',
'dept_id' => '部门id',
'project_id' => '项目id',
'material_budget_detail' => '分包预算明细',
];
/**
* @notes 添加场景
* @return ProjectSubpackageBudgetValidate
* @author likeadmin
* @date 2024/01/10 15:19
*/
public function sceneAdd()
{
return $this->remove('id',true)->remove('flow_id',true)->remove('path',true);
}
/**
* @notes 编辑场景
* @return ProjectSubpackageBudgetValidate
* @author likeadmin
* @date 2024/01/10 15:19
*/
public function sceneEdit()
{
return $this->remove('flow_id',true)->remove('path',true);
}
/**
* @notes 删除场景
* @return ProjectSubpackageBudgetValidate
* @author likeadmin
* @date 2024/01/10 15:19
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectSubpackageBudgetValidate
* @author likeadmin
* @date 2024/01/10 15:19
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function sceneApprove()
{
return $this->only(['id','flow_id','path']);
}
public function checkData($value): bool|string
{
$data = ProjectSubpackageBudget::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkOrg($value): bool|string
{
$org = Orgs::where('id',$value)->findOrEmpty();
if($org->isEmpty()){
return '组织不存在';
}
return true;
}
public function checkDept($value,$rule,$data): bool|string
{
$dept = Dept::where('id',$value)->findOrEmpty();
if($dept->isEmpty()){
return '部门不存在';
}
if($dept['org_id'] != $data['org_id']){
return '部门无效';
}
return true;
}
public function checkProject($value): bool|string
{
$project = Project::where('id',$value)->findOrEmpty();
if($project->isEmpty()){
return '项目信息不存在';
}
if($project['is_budget'] != 1){
return '该项目没有编制总预算,不能添加材料预算';
}
return true;
}
public function checkAnnex($value): bool|string
{
if(!empty($value) && $value != ''){
if(!is_array($value)){
return '附件格式错误';
}
}
return true;
}
public function checkSubpackageBudgetDetail($value): bool|string
{
$detail = $value;//json_decode($value,true);
if(empty($detail) || !is_array($detail)){
return '分包预算明细数据格式错误';
}
foreach($detail as $v) {
if(isset($v['id']) && $v['id'] != ''){
$data_detail = ProjectSubpackageBudgetDetail::where('id',$v['id'])->findOrEmpty();
if($data_detail->isEmpty()){
return '分包预算明细信息不存在';
}
}
if(empty($v['work_type'])){
return '请填写工作类型';
}
if(empty($v['work_content'])){
return '请填写工作内容';
}
if(empty($v['unit'])){
return '请填写单位';
}
if(empty($v['num'])){
return '工作量不能为空';
}else{
if(!is_numeric($v['num']) || $v['num'] < 0){
return '工作量必须是大于0的数字';
}
}
if(empty($v['price'])){
return '单价不能为空';
}else{
if(!is_numeric($v['price']) || $v['price'] < 0){
return '单价必须是大于0的数字';
}
}
}
return true;
}
}