211 lines
5.7 KiB
PHP
211 lines
5.7 KiB
PHP
<?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\finance;
|
||
|
||
|
||
use app\common\model\bank\BankAccount;
|
||
use app\common\model\contract\ProcurementContract;
|
||
use app\common\model\contract\SubcontractingContract;
|
||
use app\common\model\dict\DictData;
|
||
use app\common\model\finance\FinancePaymentPlan;
|
||
use app\common\model\supplier\Supplier;
|
||
use app\common\validate\BaseValidate;
|
||
|
||
|
||
/**
|
||
* FinancePaymentApply验证器
|
||
* Class FinancePaymentApplyValidate
|
||
* @package app\adminapi\validate\finance
|
||
*/
|
||
class FinancePaymentApplyValidate extends BaseValidate
|
||
{
|
||
|
||
/**
|
||
* 设置校验规则
|
||
* @var string[]
|
||
*/
|
||
protected $rule = [
|
||
'id' => 'require',
|
||
'supplier_id' => 'require|checkSupplier',
|
||
'contract_cate' => 'require|in:1,2',
|
||
'contract_id' => 'require|checkContract',
|
||
'finance_payment_plan_id' => 'require|checkFinancePaymentPlan',
|
||
'pay_date' => 'require|dateFormat:Y-m-d',
|
||
'payment_nature' => 'require|checkPaymentNature',
|
||
'pay_type' => 'require|checkPayType',
|
||
'invoice_status' => 'require|checkInvoiceStatus',
|
||
'amount' => 'require|float|gt:0',
|
||
'annex' => 'checkAnnex',
|
||
'payee_bank' => 'require',
|
||
'payee_account_name' => 'require',
|
||
'payee_account' => 'require',
|
||
'bank_account_id' => 'require|checkBankAccount',
|
||
];
|
||
|
||
|
||
/**
|
||
* 参数描述
|
||
* @var string[]
|
||
*/
|
||
protected $field = [
|
||
'id' => 'id',
|
||
'supplier_id' => '供应商id',
|
||
'contract_cate' => '合同类型',
|
||
'contract_id' => '合同id',
|
||
'finance_payment_plan_id' => '付款计划id',
|
||
'pay_date' => '付款日期',
|
||
'payment_nature' => '付款性质',
|
||
'pay_type' => '付款方式',
|
||
'invoice_status' => '开票状态',
|
||
'amount' => '本次申请金额',
|
||
'payee_bank' => '收款人开户银行',
|
||
'payee_account_name' => '收款人开户名称',
|
||
'payee_account' => '收款人账号',
|
||
'bank_account_id' => '付款银行账户id',
|
||
];
|
||
|
||
|
||
/**
|
||
* @notes 添加场景
|
||
* @return FinancePaymentApplyValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/15 13:47
|
||
*/
|
||
public function sceneAdd()
|
||
{
|
||
return $this->remove('id',true);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑场景
|
||
* @return FinancePaymentApplyValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/15 13:47
|
||
*/
|
||
public function sceneEdit()
|
||
{}
|
||
|
||
|
||
/**
|
||
* @notes 删除场景
|
||
* @return FinancePaymentApplyValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/15 13:47
|
||
*/
|
||
public function sceneDelete()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 详情场景
|
||
* @return FinancePaymentApplyValidate
|
||
* @author likeadmin
|
||
* @date 2023/12/15 13:47
|
||
*/
|
||
public function sceneDetail()
|
||
{
|
||
return $this->only(['id']);
|
||
}
|
||
|
||
public function checkSupplier($value): bool|string
|
||
{
|
||
$supplier = Supplier::where('id',$value)->findOrEmpty();
|
||
if($supplier->isEmpty()){
|
||
return '供应商信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkContract($value,$rule,$data): bool|string
|
||
{
|
||
if($data['contract_cate'] == 1){
|
||
$contract = ProcurementContract::where('id',$value)->findOrEmpty()->toArray();
|
||
}elseif($data['contract_cate'] == 2){
|
||
$contract = SubcontractingContract::where('id',$value)->findOrEmpty()->toArray();
|
||
}else{
|
||
$contract = [];
|
||
}
|
||
if(empty($contract)){
|
||
return '合同信息不存在';
|
||
}
|
||
if($contract['supplier_id'] != $data['supplier_id']){
|
||
return '合同信息无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkFinancePaymentPlan($value,$rule,$data): bool|string
|
||
{
|
||
$payment_plan = FinancePaymentPlan::where('id',$value)->findOrEmpty();
|
||
if($payment_plan->isEmpty()){
|
||
return '付款计划信息不存在';
|
||
}
|
||
if($payment_plan['contract_id'] != $data['contract_id'] || $payment_plan['contract_type'] != $data['contract_cate']){
|
||
return '付款计划信息无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkPaymentNature($value): bool|string
|
||
{
|
||
$dict = DictData::where('type_value','payment_natrue')->column('value');
|
||
if(!in_array($value,$dict)){
|
||
return '付款性质无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkPayType($value): bool|string
|
||
{
|
||
$dict = DictData::where('type_value','pay_type')->column('value');
|
||
if(!in_array($value,$dict)){
|
||
return '付款方式无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkInvoiceStatus($value): bool|string
|
||
{
|
||
$dict = DictData::where('type_value','invoice_status')->column('value');
|
||
if(!in_array($value,$dict)){
|
||
return '开票状态无效';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkAnnex($value): bool|string
|
||
{
|
||
if(!empty($value) && $value != ''){
|
||
$annex = json_decode($value,true);
|
||
if(empty($annex) || !is_array($annex)){
|
||
return '附件格式错误';
|
||
}
|
||
}
|
||
return true;
|
||
}
|
||
|
||
public function checkBankAccount($value): bool|string
|
||
{
|
||
$bank = BankAccount::where('id',$value)->findOrEmpty();
|
||
if($bank->isEmpty()){
|
||
return '付款银行账户信息不存在';
|
||
}
|
||
return true;
|
||
}
|
||
|
||
} |