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

DistributionGoodsLogic.php 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. namespace app\admin\logic\distribution;
  3. use app\common\basics\Logic;
  4. use app\common\model\distribution\DistributionGoods;
  5. use app\common\model\distribution\DistributionLevel;
  6. use app\common\model\goods\Goods;
  7. class DistributionGoodsLogic extends Logic
  8. {
  9. /**
  10. * @notes 分销商品列表
  11. * @param $params
  12. * @return array
  13. * @throws \think\db\exception\DataNotFoundException
  14. * @throws \think\db\exception\DbException
  15. * @throws \think\db\exception\ModelNotFoundException
  16. * @author Tab
  17. * @date 2021/9/2 17:41
  18. */
  19. public static function lists($params)
  20. {
  21. $where = [
  22. ['del', '<>', '1'],
  23. ];
  24. // 商品信息
  25. if (isset($params['keyword']) && !empty($params['keyword'])) {
  26. $where[] = ['name|code', 'like', '%'. $params['keyword']. '%'];
  27. }
  28. // 平台商品分类
  29. if (isset($params['platform_cate_id']) && $params['platform_cate_id'] != 'all') {
  30. $where[] = ['first_cate_id|second_cate_id|third_cate_id', '=', $params['platform_cate_id']];
  31. }
  32. $field = [
  33. 'id',
  34. 'code',
  35. 'name',
  36. 'image',
  37. 'max_price',
  38. 'min_price',
  39. 'id' => 'distribution_flag',
  40. 'shop_id',
  41. ];
  42. $lists = Goods::with(['Shop'])
  43. ->field($field)
  44. ->where($where)
  45. ->withSearch('is_distribution', ["is_distribution" => 1])
  46. ->page($params['page'], $params['limit'])
  47. ->order([
  48. 'shop_id' => 'desc',
  49. 'id' => 'desc'
  50. ])
  51. ->select()
  52. ->toArray();
  53. $count = Goods::field($field)
  54. ->where($where)
  55. ->withSearch('is_distribution', ["is_distribution" => 1])
  56. ->count();
  57. return [
  58. 'count' => $count,
  59. 'lists' => $lists
  60. ];
  61. }
  62. /**
  63. * @notes 商品详情
  64. * @param $params
  65. * @return array
  66. * @throws \think\db\exception\DataNotFoundException
  67. * @throws \think\db\exception\DbException
  68. * @throws \think\db\exception\ModelNotFoundException
  69. * @author Tab
  70. * @date 2021/9/1 19:59
  71. */
  72. public static function detail($params)
  73. {
  74. // 商品信息
  75. $goods = Goods::field('id,code,name')->with('goods_item')->findOrEmpty($params['id'])->toArray();
  76. // 分销等级信息
  77. $distributionLevelLists = DistributionLevel::order('weights', 'asc')->select()->toArray();
  78. // 商品分销信息
  79. $distributionGoods = DistributionGoods::where('goods_id', $params['id'])->select()->toArray();
  80. if(empty($distributionGoods)) {
  81. // 未参与分销
  82. $goods['is_distribution'] = 0;
  83. $goods['rule'] = 1;
  84. $ratio = self::formatLevel($distributionLevelLists, $goods);
  85. } else {
  86. $goods['is_distribution'] = $distributionGoods[0]['is_distribution'];
  87. $goods['rule'] = $distributionGoods[0]['rule'];
  88. if($distributionGoods[0]['rule'] == 1) {
  89. $ratio = self::formatLevel($distributionLevelLists, $goods);
  90. } else {
  91. $ratio = self::formatGoods($distributionLevelLists, $goods);
  92. }
  93. }
  94. return [
  95. 'goods' => $goods,
  96. 'ratio' => $ratio
  97. ];
  98. }
  99. /**
  100. * @notes 拼装分销等级佣金比例
  101. * @param $distributionLevelLists
  102. * @param $goods
  103. * @return array
  104. * @author Tab
  105. * @date 2021/9/1 19:44
  106. */
  107. public static function formatLevel($distributionLevelLists, $goods)
  108. {
  109. $ratio = [];
  110. foreach($distributionLevelLists as $level) {
  111. foreach($goods['goods_item'] as $item) {
  112. $temp = [
  113. 'level_id' => $level['id'],
  114. 'level_name' => $level['name'],
  115. 'first_ratio' => $level['first_ratio'],
  116. 'second_ratio' => $level['second_ratio'],
  117. 'goods_id' => $item['goods_id'],
  118. 'item_id' => $item['id'],
  119. 'spec_value_str' => $item['spec_value_str'],
  120. 'price' => $item['price']
  121. ];
  122. $ratio[] = $temp;
  123. }
  124. }
  125. return $ratio;
  126. }
  127. /**
  128. * @notes 拼装单独设置的佣金比例
  129. * @param $distributionLevelLists
  130. * @param $goods
  131. * @param $distributionGoods
  132. * @return array
  133. * @author Tab
  134. * @date 2021/9/2 9:28
  135. */
  136. public static function formatGoods($distributionLevelLists, $goods)
  137. {
  138. $ratio = [];
  139. foreach($distributionLevelLists as $level) {
  140. foreach($goods['goods_item'] as $item) {
  141. $record = DistributionGoods::where([
  142. 'level_id' => $level['id'],
  143. 'item_id' => $item['id'],
  144. ])->findOrEmpty()->toArray();
  145. $temp = [
  146. 'level_id' => $level['id'],
  147. 'level_name' => $level['name'],
  148. 'first_ratio' => $record['first_ratio'],
  149. 'second_ratio' => $record['second_ratio'],
  150. 'goods_id' => $item['goods_id'],
  151. 'item_id' => $item['id'],
  152. 'spec_value_str' => $item['spec_value_str'],
  153. 'price' => $item['price']
  154. ];
  155. $ratio[] = $temp;
  156. }
  157. }
  158. return $ratio;
  159. }
  160. }