截流自动化的商城平台
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.

DistributionLevelValidate.php 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\validate\distribution;
  20. use app\common\basics\Validate;
  21. use app\common\model\distribution\DistributionLevel;
  22. class DistributionLevelValidate extends Validate
  23. {
  24. protected $rule = [
  25. 'name' => 'require|checkName',
  26. 'weights' => 'require|integer|gt:1|checkWeights',
  27. 'first_ratio' => 'require|between:0,100',
  28. 'second_ratio' => 'require|between:0,100',
  29. 'update_relation' => 'require|in:1,2',
  30. 'update_condition' => 'require|array|checkCondition',
  31. 'singleConsumptionAmount' => 'gt:0',
  32. 'cumulativeConsumptionAmount' => 'gt:0',
  33. 'cumulativeConsumptionTimes' => 'integer|gt:0',
  34. 'returnedCommission' => 'gt:0',
  35. 'id' => 'require'
  36. ];
  37. protected $message = [
  38. 'name.require' => '请填写等级名称',
  39. 'weights.require' => '请输入级别',
  40. 'weights.integer' => '级别须为整型',
  41. 'weights.gt' => '级别须大于1',
  42. 'first_ratio.require' => '请输入一级佣金比例',
  43. 'first_ratio.between' => '一级佣金比例须在0-100之间',
  44. 'second_ratio.require' => '请输入二级佣金比例',
  45. 'second_ratio.between' => '二级佣金比例须在0-100之间',
  46. 'update_relation.require' => '请选择升级关系',
  47. 'update_relation.in' => '升级关系状态值错误',
  48. 'update_condition.require' => '请选择升级条件',
  49. 'update_condition.array' => '升级条件数据格式错误',
  50. 'singleConsumptionAmount.gt' => '单笔消费金额须大于0',
  51. 'cumulativeConsumptionAmount.gt' => '累计消费金额须大于0',
  52. 'cumulativeConsumptionTimes.gt' => '累计消费次数须大于0',
  53. 'cumulativeConsumptionTimes.integer' => '累计消费次数须为整数',
  54. 'returnedCommission.gt' => '已结算佣金收入须大于0',
  55. 'id.require' => '参数缺失',
  56. ];
  57. /**
  58. * @notes 添加分销等级
  59. * @return DistributionLevelValidate
  60. * @author Tab
  61. * @date 2021/9/1 14:45
  62. */
  63. public function sceneAdd()
  64. {
  65. return $this->only(['name', 'weights', 'self_ratio', 'first_ratio', 'second_ratio', 'update_condition', 'update_relation', 'singleConsumptionAmount', 'cumulativeConsumptionAmount', 'cumulativeConsumptionTimes', 'returnedCommission']);
  66. }
  67. /**
  68. * @notes 编辑分销等级
  69. * @return DistributionLevelValidate
  70. * @author Tab
  71. * @date 2021/9/1 15:49
  72. */
  73. public function sceneEdit()
  74. {
  75. return $this->only(['id', 'name', 'weights', 'first_ratio', 'second_ratio'])
  76. ->remove('weights', 'gt');
  77. }
  78. /**
  79. * @notes 校验等级名称
  80. * @param $value
  81. * @param $rule
  82. * @param $data
  83. * @return bool|string
  84. * @author Tab
  85. * @date 2021/9/1 14:42
  86. */
  87. public function checkName($value, $rule, $data)
  88. {
  89. $where = [['name', '=', $value]];
  90. if(isset($data['id'])) {
  91. // 编辑的场景
  92. $where[] = ['id', '<>', $data['id']];
  93. }
  94. $level = DistributionLevel::where($where)->findOrEmpty();
  95. if(!$level->isEmpty()) {
  96. return '等级名称已存在';
  97. }
  98. return true;
  99. }
  100. /**
  101. * @notes 校验等级级别
  102. * @param $value
  103. * @param $rule
  104. * @param $data
  105. * @return bool|string
  106. * @author Tab
  107. * @date 2021/9/1 14:42
  108. */
  109. public function checkWeights($value, $rule, $data)
  110. {
  111. $where = [['weights', '=', $value]];
  112. if(isset($data['id'])) {
  113. // 编辑的场景
  114. $where[] = ['id', '<>', $data['id']];
  115. }
  116. $level = DistributionLevel::where($where)->findOrEmpty();
  117. if(!$level->isEmpty()) {
  118. return '等级级别已存在';
  119. }
  120. return true;
  121. }
  122. /**
  123. * @notes 校验升级条件
  124. * @param $value
  125. * @return bool|string
  126. * @author Tab
  127. * @date 2021/9/1 14:43
  128. */
  129. public function checkCondition($value, $rule, $data)
  130. {
  131. if(!count($value)) {
  132. return '请选择升级条件';
  133. }
  134. foreach($value as $v) {
  135. if(!isset($data[$v]) || empty($data[$v])) {
  136. return '升级条件数据未填写';
  137. }
  138. }
  139. return true;
  140. }
  141. }