<?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\Contract;
use app\common\model\dict\DictData;
use app\common\model\finance\FinanceRefundApply;
use app\common\validate\BaseValidate;


/**
 * FinanceRefundApply验证器
 * Class FinanceRefundApplyValidate
 * @package app\adminapi\validate\finance
 */
class FinanceRefundApplyValidate extends BaseValidate
{

     /**
      * 设置校验规则
      * @var string[]
      */
    protected $rule = [
        'id' => 'require|checkData',
        'contract_id' => 'require|checkContract',
	    'refund_date' => 'require|dateFormat:Y-m-d',
	    'reason' => 'require',
	    'amount' => 'require|float|gt:0',
	    'refund_type' => 'require|checkRefundType',
	    'annex' => 'checkAnnex',
	    'collection_bank' => 'require',
	    'collection_account' => 'require',
	    'bank_account_id' => 'require|checkBankAccount',
	    'flow_id' => 'require|checkFlow',
	    'path' => 'require',
    ];


    /**
     * 参数描述
     * @var string[]
     */
    protected $field = [
        'id' => 'id',
	    'contract_id' => '项目合同',
	    'refund_date' => '退款日期',
	    'reason' => '退款原因',
	    'amount' => '退款金额',
	    'refund_type' => '退款方式',
	    'collection_bank' => '收款银行',
	    'collection_account' => '收款账号',
	    'bank_account_id' => '付款银行账号',
    ];


    /**
     * @notes 添加场景
     * @return FinanceRefundApplyValidate
     * @author likeadmin
     * @date 2023/12/14 16:58
     */
    public function sceneAdd()
    {
        return $this->remove('id', true)->remove('flow_id',true)->remove('path',true);
    }


    /**
     * @notes 编辑场景
     * @return FinanceRefundApplyValidate
     * @author likeadmin
     * @date 2023/12/14 16:58
     */
    public function sceneEdit()
    {
	    return $this->remove('flow_id',true)->remove('path',true);
    }


    /**
     * @notes 删除场景
     * @return FinanceRefundApplyValidate
     * @author likeadmin
     * @date 2023/12/14 16:58
     */
    public function sceneDelete()
    {
        return $this->only(['id']);
    }


    /**
     * @notes 详情场景
     * @return FinanceRefundApplyValidate
     * @author likeadmin
     * @date 2023/12/14 16:58
     */
    public function sceneDetail()
    {
        return $this->only(['id']);
    }
	
	public function sceneApprove()
	{
		return $this->only(['id','flow_id','path']);
	}
	
	public function checkData($value): bool|string
	{
		$data = FinanceRefundApply::where('id',$value)->findOrEmpty();
		if($data->isEmpty()){
			return '数据不存在';
		}
		return true;
	}
	
	public function checkContract($value): bool|string
	{
		$data = Contract::where('id',$value)->findOrEmpty();
		if($data->isEmpty()){
			return '项目合同不存在';
		}
		return true;
	}
	
	public function checkRefundType($value): bool|string
	{
		$dict = DictData::where('type_value','refund_type')->column('value');
		if(!in_array($value,$dict)){
			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
	{
		$bank = BankAccount::where('id',$value)->findOrEmpty();
		if($bank->isEmpty()){
			return '付款银行账户信息不存在';
		}
		return true;
	}

}