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

DistributionMemberLogic.php 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <?php
  2. namespace app\admin\logic\distribution;
  3. use app\common\basics\Logic;
  4. use app\common\model\distribution\Distribution;
  5. use app\common\model\distribution\DistributionLevel;
  6. use app\common\model\distribution\DistributionOrderGoods;
  7. use app\common\model\user\User;
  8. use app\common\server\UrlServer;
  9. /**
  10. * 分销会员逻辑层
  11. * Class DistributionMemberLogic
  12. * @package app\admin\logic\distribution
  13. */
  14. class DistributionMemberLogic extends Logic
  15. {
  16. /**
  17. * @notes 分销会员列表
  18. * @param $params
  19. * @return array
  20. * @author Tab
  21. * @date 2021/9/2 18:44
  22. */
  23. public static function lists($params)
  24. {
  25. $where = [
  26. ['d.is_distribution', '=', 1]
  27. ];
  28. // 用户信息
  29. if (isset($params['keyword']) && !empty($params['keyword'])) {
  30. $where[] = ['u.sn|u.nickname', 'like', '%'. $params['keyword'] .'%'];
  31. }
  32. // 分销等级
  33. if (isset($params['level_id']) && $params['level_id'] != 'all') {
  34. $where[] = ['d.id', '=', $params['level_id']];
  35. }
  36. // 分销状态
  37. if (isset($params['is_freeze']) && $params['is_freeze'] != 'all') {
  38. $where[] = ['d.is_freeze', '=', $params['is_freeze']];
  39. }
  40. $field = [
  41. 'u.id' => 'user_id',
  42. 'u.sn' => 'user_sn',
  43. 'u.avatar',
  44. 'u.nickname',
  45. 'u.user_delete',
  46. 'dl.id' => 'level_id',
  47. 'dl.weights',
  48. 'dl.name' => 'level_name',
  49. 'd.is_freeze',
  50. 'd.distribution_time',
  51. ];
  52. $lists = Distribution::alias('d')
  53. ->leftJoin('user u', 'u.id = d.user_id')
  54. ->leftJoin('distribution_level dl', 'dl.id = d.level_id')
  55. ->field($field)
  56. ->where($where)
  57. ->order('u.id', 'desc')
  58. ->page($params['page'], $params['limit'])
  59. ->select()
  60. ->toArray();
  61. $count = Distribution::alias('d')
  62. ->leftJoin('user u', 'u.id = d.user_id')
  63. ->leftJoin('distribution_level dl', 'dl.id = d.level_id')
  64. ->field($field)
  65. ->where($where)
  66. ->count();
  67. foreach($lists as &$item) {
  68. $item['avatar'] = empty($item['avatar']) ? '' : UrlServer::getFileUrl($item['avatar']);
  69. $item['earnings'] = DistributionOrderGoods::getEarnings($item['user_id']);
  70. }
  71. return [
  72. 'count' => $count,
  73. 'lists' => $lists
  74. ];
  75. }
  76. /**
  77. * @notes 用户列表
  78. * @param $params
  79. * @return array
  80. * @throws \think\db\exception\DataNotFoundException
  81. * @throws \think\db\exception\DbException
  82. * @throws \think\db\exception\ModelNotFoundException
  83. * @author Tab
  84. * @date 2021/9/3 9:55
  85. */
  86. public static function getUserLists($params)
  87. {
  88. $where[] = ['del', '=', 0];
  89. $where[] = ['user_delete', '=', 0];
  90. // 用户信息
  91. if (isset($params['keyword']) && !empty($params['keyword'])) {
  92. $where[] = ['sn|nickname', 'like', '%'. $params['keyword'] .'%'];
  93. }
  94. $lists = User::field('id,sn,nickname,id as distribution')
  95. ->where($where)
  96. ->withSearch(['distribution'], $params)
  97. ->page($params['page'], $params['limit'])
  98. ->select()
  99. ->toArray();
  100. $count = User::where($where)->withSearch(['distribution'], $params)->count();
  101. return [
  102. 'count' => $count,
  103. 'lists' => $lists,
  104. ];
  105. }
  106. /**
  107. * @notes 开通分销会员
  108. * @param $params
  109. * @return bool
  110. * @author Tab
  111. * @date 2021/9/3 11:09
  112. */
  113. public static function open($params)
  114. {
  115. try {
  116. $user = User::where('id', $params['user_id'])->findOrEmpty()->toArray();
  117. if(empty($user)) {
  118. throw new \Exception('用户不存在');
  119. }
  120. if (User::UserIsDelete($params['user_id'])) {
  121. throw new \Exception('用户已注销');
  122. }
  123. $distribution = Distribution::where('user_id', $params['user_id'])->findOrEmpty()->toArray();
  124. if(!empty($distribution) && $distribution['is_distribution'] == 1) {
  125. throw new \Exception('用户已是分销会员');
  126. }
  127. if(!empty($distribution) && $distribution['is_distribution'] == 0) {
  128. Distribution::where('user_id', $params['user_id'])->update([
  129. 'is_distribution' => 1,
  130. 'distribution_time' => time(),
  131. 'level_id' => $params['level_id'],
  132. ]);
  133. }
  134. if(empty($distribution)) {
  135. $data = [
  136. 'user_id' => $params['user_id'],
  137. 'level_id' => $params['level_id'],
  138. 'is_distribution' => 1,
  139. 'is_freeze' => 0,
  140. 'remark' => '后台开通分销',
  141. 'distribution_time' => time()
  142. ];
  143. Distribution::create($data);
  144. }
  145. return true;
  146. } catch (\Exception $e) {
  147. self::$error = $e->getMessage();
  148. return false;
  149. }
  150. }
  151. public static function getUser($params)
  152. {
  153. $field = [
  154. 'u.id' => 'user_id',
  155. 'u.sn' => 'user_sn',
  156. 'u.nickname' => 'user_nickname',
  157. 'dl.name' => 'level_name',
  158. 'dl.weights',
  159. ];
  160. $info = Distribution::alias('d')
  161. ->leftJoin('user u', 'u.id = d.user_id')
  162. ->leftJoin('distribution_level dl', 'dl.id = d.level_id')
  163. ->field($field)
  164. ->where('d.user_id', $params['id'])
  165. ->findOrEmpty()
  166. ->toArray();
  167. return $info;
  168. }
  169. /**
  170. * @notes 分销会员等级调整
  171. * @param $params
  172. * @return bool
  173. * @author Tab
  174. * @date 2021/9/3 14:14
  175. */
  176. public static function adjust($params)
  177. {
  178. try {
  179. if (User::UserIsDelete($params['user_id'])) {
  180. throw new \Exception('用户已注销');
  181. }
  182. Distribution::where(['user_id' => $params['user_id']])->update([
  183. 'level_id' => $params['level_id']
  184. ]);
  185. return true;
  186. } catch (\Exception $e) {
  187. self::$error = $e->getMessage();
  188. return false;
  189. }
  190. }
  191. /**
  192. * @notes 冻结资格/恢复资格
  193. * @param $params
  194. * @return bool
  195. * @author Tab
  196. * @date 2021/9/3 14:24
  197. */
  198. public static function isFreeze($params)
  199. {
  200. try {
  201. if (User::UserIsDelete($params['user_id'])) {
  202. throw new \Exception('用户已注销');
  203. }
  204. Distribution::where(['user_id' => $params['user_id']])->update([
  205. 'is_freeze' => $params['is_freeze']
  206. ]);
  207. return true;
  208. } catch(\Exception $e) {
  209. self::$error = $e->getMessage();
  210. return false;
  211. }
  212. }
  213. }