StoreRefundOrderValidate.php 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\validate\api;
  12. use think\Validate;
  13. class StoreRefundOrderValidate extends Validate
  14. {
  15. protected $failException = true;
  16. protected $rule = [
  17. 'type|退款类型' => 'require|in:1,2',
  18. 'refund_type|退款方式' => 'require|in:1,2',
  19. 'num|商品件数' => 'requireIf:type,1|integer|>:0',
  20. 'ids|退款商品' => 'require',
  21. 'refund_message|退款原因' => 'require|max:128',
  22. 'mark|备注' => 'max:128',
  23. 'refund_price|退款金额' => 'require|float',
  24. 'pics|凭证' => 'array|max:9',
  25. ];
  26. }