zx/app/validate/api/StoreRefundOrderValidate.php

34 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2024-07-02 15:32:59 +08:00
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\validate\api;
use think\Validate;
class StoreRefundOrderValidate extends Validate
{
protected $failException = true;
protected $rule = [
'type|退款类型' => 'require|in:1,2',
'refund_type|退款方式' => 'require|in:1,2',
'num|商品件数' => 'requireIf:type,1|integer|>:0',
'ids|退款商品' => 'require',
'refund_message|退款原因' => 'require|max:128',
'mark|备注' => 'max:128',
'refund_price|退款金额' => 'require|float|>=:0',
'pics|凭证' => 'array|max:9',
];
}