engineering/app/adminapi/validate/project/ProjectTravelReimbursementValidate.php

286 lines
8.0 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\bank\BankAccount;
use app\common\model\dict\DictData;
use app\common\model\project\ProjectCostTempSet;
use app\common\model\project\ProjectLoanApply;
use app\common\model\project\ProjectTravelReimbursementDetail;
use app\common\model\project\ProjectTravelReimbursementInvoiceDetail;
use app\common\model\project\ProjectTripApply;
use app\common\validate\BaseValidate;
/**
* 差旅报销验证器
* Class ProjectTravelReimbursementValidate
* @package app\adminapi\validate\project
*/
class ProjectTravelReimbursementValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
'trip_apply_id' => 'require|checkTripApply',
'reimbursement_type' => 'require|checkReimbursementType',
'loan_apply_id' => 'requireCallback:check_require|checkLoanApply',
'offset_loan_amount' => 'requireCallback:check_require|float|egt:0',
'apply_user' => 'require',
'apply_date' => 'require|dateFormat:Y-m-d',
'payee_name' => 'require',
'payee_bank' => 'require',
'payee_account' => 'require',
'annex' => 'checkAnnex',
'bank_account_id' => 'require|checkBankAccount',
'reimbursement_detail' => 'require|checkReimbursementDetail',
'invoice_detail' => 'require|checkInvoiceDetail',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'trip_apply_id' => '出差申请单id',
'reimbursement_type' => '报销类型',
'loan_apply_id' => '借款申请id',
'offset_loan_amount' => '冲抵借款金额',
'apply_user' => '报销人',
'apply_date' => '报销日期',
'payee_name' => '收款人姓名',
'payee_bank' => '收款银行',
'payee_account' => '收款账号',
'bank_account_id' => '付款银行账户id',
'reimbursement_detail' => '报销明细',
'invoice_detail' => '发票明细',
];
/**
* @notes 添加场景
* @return ProjectTravelReimbursementValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return ProjectTravelReimbursementValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return ProjectTravelReimbursementValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectTravelReimbursementValidate
* @author likeadmin
* @date 2024/01/18 13:57
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkTripApply($value): bool|string
{
$data = ProjectTripApply::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '出差申请信息不存在';
}
return true;
}
public function checkReimbursementType($value): bool|string
{
$data = explode(',',$value);
if(empty($data)){
return '报销类型数据格式错误';
}
foreach ($data as $v) {
$dict = DictData::where('type_value','reimbursement_type')->column('value');
if(!in_array($v,$dict)){
return '报销类型数据无效';
}
}
return true;
}
function check_require($value,$data): bool
{
$reimbursement_type = explode(',',$data['reimbursement_type']);
return in_array(1,$reimbursement_type);
}
public function checkLoanApply($value): bool|string
{
$loan_apply_data = ProjectLoanApply::where('id',$value)->findOrEmpty();
if($loan_apply_data->isEmpty()){
return '借款单信息不存在';
}
return true;
}
public function checkAnnex($value): bool|string
{
if(!empty($value) && $value != ''){
if(!is_array($value)){
return '附件格式错误';
}
}
return true;
}
public function checkBankAccount($value): bool|string
{
$data = BankAccount::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '付款银行账户信息不存在';
}
return true;
}
public function checkReimbursementDetail($value): bool|string
{
if(empty($value) || !is_array($value)){
return '报销明细数据格式错误';
}
foreach($value as $v){
if(isset($v['id']) && $v['id'] != ''){
$reimbursement_detail = ProjectTravelReimbursementDetail::where('id',$v['id'])->findOrEmpty();
if($reimbursement_detail->isEmpty()){
return '报销明细信息不存在';
}
}
if(empty($v['project_cost_temp_id'])){
return '请选择项目费用模板';
}else{
$project_cost_temp = ProjectCostTempSet::where('id',$v['project_cost_temp_id'])->findOrEmpty();
if($project_cost_temp->isEmpty()){
return '项目费用模板信息不存在';
}
}
if(isset($v['traffic_fee']) && $v['traffic_fee'] != ''){
if(!is_numeric($v['traffic_fee'])){
return '交通费用必须是数字';
}
}
if(isset($v['stay_fee']) && $v['stay_fee'] != ''){
if(!is_numeric($v['stay_fee'])){
return '住宿费用必须是数字';
}
}
if(isset($v['restaurant_fee']) && $v['restaurant_fee'] != ''){
if(!is_numeric($v['restaurant_fee'])){
return '餐饮费用必须是数字';
}
}
if(isset($v['subsidy_fee']) && $v['subsidy_fee'] != ''){
if(!is_numeric($v['subsidy_fee'])){
return '补助费用必须是数字';
}
}
if(isset($v['other_fee']) && $v['other_fee'] != ''){
if(!is_numeric($v['other_fee'])){
return '其他费用必须是数字';
}
}
}
return true;
}
public function checkInvoiceDetail($value): bool|string
{
if(empty($value) || !is_array($value)){
return '发票明细数据格式错误';
}
foreach($value as $v){
if(isset($v['id']) && $v['id'] != ''){
$invoice_detail = ProjectTravelReimbursementInvoiceDetail::where('id',$v['id'])->findOrEmpty();
if($invoice_detail->isEmpty()){
return '发票明细信息不存在';
}
}
if(empty($v['invoice_type'])){
return '请选择发票类型';
}else{
$invoice_type_dict = DictData::where('type_value','invoice_type')->column('value');
if(!in_array($v['invoice_type'],$invoice_type_dict)){
return '发票类型数据值无效';
}
}
if(empty($v['invoice_sn'])){
return '请填写发票号';
}
if(empty($v['tax_rate'])){
return '请选择发票税率';
}else{
$tax_rate_dict = DictData::where('type_value','tax_rate')->column('value');
if(!in_array($v['tax_rate'],$tax_rate_dict)){
return '发票税率数据值无效';
}
}
if(empty($v['invoice_form'])){
return '请选择发票形式';
}else{
$invoice_form_dict = DictData::where('type_value','invoice_form')->column('value');
if(!in_array($v['invoice_form'],$invoice_form_dict)){
return '发票形式数据值无效';
}
}
if(empty($v['invoice_amount'])){
return '请填写发票金额';
}else{
if(!is_numeric($v['invoice_amount']) || $v['invoice_amount'] < 0){
return '发票金额必须是大于0的数字';
}
}
if(isset($v['annex']) && $v['annex'] != ''){
if(!is_array($v['annex'])){
return '发票附件格式错误';
}
}
}
return true;
}
}