You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
crmeb_php/app/validate/api/StoreRefundOrderValidate.php

33 lines
1.2 KiB

<?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',
];
}