engineering/app/adminapi/validate/supervision_work/SupervisionNoticeValidate.php
2024-03-01 10:56:00 +08:00

183 lines
5.3 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\supervision_work;
use app\common\model\supervision_project\SupervisionParticipatingUnits;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionNotice;
use app\common\model\supervision_work\SupervisionNoticeProblem;
use app\common\validate\BaseValidate;
/**
* 工程监理--监理通知单验证器
* Class SupervisionNoticeValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionNoticeValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_id' => 'require|checkProject',
'reply_date' => 'require|dateFormat:Y-m-d',
'company_id' => 'checkCompany',
'notify_user' => 'require',
'issue_date' => 'dateFormat:Y-m-d',
'annex' => 'checkAnnex',
'rectification_reply_time' => 'require|dateFormat:Y-m-d',
'rectification_reply_user' => 'require',
'rectification_reply_opinions' => 'require',
'rectification_reply_annex' => 'checkAnnex',
'problem' => 'checkProblem'
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_id' => '项目id',
'reply_date' => '要求回复日期',
'company_id' => '施工单位',
'notify_user' => '通知人员',
'issue_date' => '下达日期',
'rectification_reply_time' => '整改回复时间',
'rectification_reply_user' => '整改回复人',
'rectification_reply_opinions' => '整改回复意见',
'create_user' => '填写人',
];
/**
* @notes 添加场景
* @return SupervisionNoticeValidate
* @author likeadmin
* @date 2024/03/01 09:20
*/
public function sceneAdd()
{
return $this->only(['project_id','reply_date','company_id','notify_user','issue_date','annex','problem']);
}
/**
* @notes 编辑场景
* @return SupervisionNoticeValidate
* @author likeadmin
* @date 2024/03/01 09:20
*/
public function sceneEdit()
{
return $this->only(['id','project_id','reply_date','company_id','notify_user','issue_date','annex','problem']);
}
/**
* @notes 回复场景
* @return SupervisionNoticeValidate
* @author likeadmin
* @date 2024/03/01 09:20
*/
public function sceneReply()
{
return $this->only(['id','rectification_reply_time','rectification_reply_user','rectification_reply_opinions','rectification_reply_annex']);
}
/**
* @notes 删除场景
* @return SupervisionNoticeValidate
* @author likeadmin
* @date 2024/03/01 09:20
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionNoticeValidate
* @author likeadmin
* @date 2024/03/01 09:20
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionNotice::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkProject($value): bool|string
{
$data = SupervisionProject::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目信息不存在';
}
return true;
}
public function checkCompany($value,$rule,$params): bool|string
{
$data = SupervisionParticipatingUnits::where('id',$value)->where('project_id',$params['project_id'])->findOrEmpty();
if($data->isEmpty()){
return '施工单位信息不存在';
}
return true;
}
public function checkAnnex($value): bool|string
{
if(!empty($value) && $value != '' && !is_array($value)){
return '附件格式错误';
}
return true;
}
public function checkProblem($value): bool|string
{
if(!isset($value) || $value == '') return true;
if(!is_array($value)) return '监理通知问题数据格式错误';
foreach($value as $k=>$v){
if(!empty($v['id'])){
$data = SupervisionNoticeProblem::where('id',$v['id'])->findOrEmpty();
if($data->isEmpty()){
return '监理通知问题列表第'.($k+1).'行数据不存在';
}
}
if(empty($v['problem_description'])) return '监理通知问题列表第'.($k+1).'行事由描述为空';
if(empty($v['content_description'])) return '监理通知问题列表第'.($k+1).'行内容描述为空';
if(empty($v['demand_description'])) return '监理通知问题列表第'.($k+1).'行要求描述为空';
}
return true;
}
}