截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

MemberLogic.php 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  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\logic\distribution;
  20. use app\common\basics\Logic;
  21. use app\common\model\user\User;
  22. use app\common\model\user\UserLevel;
  23. use app\common\server\UrlServer;
  24. use app\common\model\WithdrawApply;
  25. use app\common\model\distribution\DistributionOrderGoods;
  26. use app\common\model\distribution\DistributionMemberApply;
  27. use think\facade\Db;
  28. class MemberLogic extends Logic
  29. {
  30. public static function memberLists($get)
  31. {
  32. // 关键词
  33. $where[] = ['is_distribution', '=', 1];
  34. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  35. $where[] = [$get['search_key'], '=', trim($get['keyword'])];
  36. }
  37. //分销状态
  38. if (isset($get['freeze_distribution']) && $get['freeze_distribution'] != '') {
  39. $where[] = ['freeze_distribution', '=', $get['freeze_distribution']];
  40. }
  41. $user = new User();
  42. $count = $user->where($where)->count();
  43. $lists = $user
  44. ->where($where)
  45. ->page($get['page'], $get['limit'])
  46. ->append(['fans', 'distribution_order', 'leader'])
  47. ->hidden(['password,pay_password,salt'])
  48. ->order('id desc')
  49. ->select()
  50. ->toArray();
  51. foreach ($lists as &$item) {
  52. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  53. $item['distribution_num'] = $item['distribution_order']['num'] ?? 0;//分销订单数
  54. $item['distribution_amount'] = $item['distribution_order']['amount'] ?? 0;//分销订单金额
  55. $item['distribution_money'] = $item['distribution_order']['money'] ?? 0;//分销佣金
  56. }
  57. return ['count' => $count, 'lists' => $lists];
  58. }
  59. public static function addMember($post)
  60. {
  61. // 根据会员编号查询用户
  62. $user = User::field('id,sn,is_distribution,distribution_add_remarks,del')
  63. ->where(['sn'=>$post['sn']])->findOrEmpty();
  64. // 校验用户
  65. if ($user->isEmpty()) { return '该用户不存在!'; }
  66. $user = $user->toArray();
  67. if ($user['del'] === 1) { return '该用户已被删除!'; }
  68. if ($user['is_distribution']) { return '该用户已是分销会员,无需重复添加'; }
  69. $result = User::where(['id' => (int)$user['id']])->update([
  70. 'is_distribution' => 1,
  71. 'distribution_add_remarks' => $post['remarks'] ?? '',
  72. 'update_time' => time()
  73. ]);
  74. return $result ? true : '添加失败';
  75. }
  76. public static function getMemberInfo($get)
  77. {
  78. $user_id = $get['id'];
  79. $user = User::alias('u')
  80. ->field('u.*,u.sn as user_sn')
  81. ->leftJoin('distribution_order_goods d', 'd.user_id = u.id')
  82. ->where('u.id', $user_id)
  83. ->append(['distribution_order'])
  84. ->hidden(['password', 'pay_password', 'salt'])
  85. ->find();
  86. $user['distribution_text'] = '否';
  87. if ($user['is_distribution'] == 1) {
  88. $user['distribution_text'] = '是';
  89. }
  90. //上级编号
  91. $user['first_leader_sn'] = User::where('id', $user['first_leader'])->value('sn');
  92. //直推会员数
  93. $user['first_fans'] = User::where(['first_leader' => $user_id, 'del' => 0])->count();
  94. // 已提现金额
  95. $have_withdraw = WithdrawApply::where(['status' => WithdrawApply::STATUS_SUCCESS, 'user_id' => $user_id])
  96. ->sum('money');
  97. $user['distribution_num'] = $user['distribution_order']['num'] ?? 0;//分销订单数
  98. $user['distribution_amount'] = $user['distribution_order']['amount'] ?? 0;//分销订单金额
  99. $user['distribution_money'] = $user['distribution_order']['money'] ?? 0;//分销佣金
  100. $user['have_withdraw'] = $have_withdraw;//已提现金额
  101. return $user;
  102. }
  103. public static function getFansLists($get)
  104. {
  105. $user_id = $get['id'];
  106. $where = [];
  107. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  108. $keyword = $get['keyword'];
  109. $where[] = [$get['search_key'], 'like', '%' . $keyword . '%'];
  110. }
  111. $fans_type = $get['type'] ?? 'all';
  112. if ($fans_type == 'all') {
  113. $where[] = ['first_leader|second_leader|third_leader', '=', $user_id];
  114. } else {
  115. $where[] = [$fans_type, '=', $user_id];
  116. }
  117. $user = new User();
  118. $count = $user
  119. ->where($where)
  120. ->append(['fans', 'distribution_order'])
  121. ->hidden(['password,pay_password,salt'])
  122. ->count();
  123. $lists = $user
  124. ->where($where)
  125. ->append(['fans', 'distribution_order'])
  126. ->hidden(['password,pay_password,salt'])
  127. ->page($get['page'], $get['limit'])
  128. ->select()->toArray();
  129. // 用户等级列表
  130. $user_level = UserLevel::where(['del' => 0])->column('name', 'id');
  131. // 提取所有上级id
  132. $leader_ids = array_column($lists, 'first_leader');
  133. // 所有上级列表
  134. $leaders = User::where('id', 'in', $leader_ids)
  135. ->column('sn,nickname,mobile,level', 'id');
  136. foreach ($lists as &$item) {
  137. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  138. $item['leader'] = $leaders[$item['first_leader']] ?? [];
  139. if (!empty($item['leader'])) {
  140. $leader_level = $item['leader']['level'] ?? 0;
  141. $item['leader']['level'] = $user_level[$leader_level] ?? '无等级';
  142. }
  143. $item['distribution_num'] = $item['distribution_order']['num'] ?? 0;//分销订单数
  144. $item['distribution_amount'] = $item['distribution_order']['amount'] ?? 0;//分销订单金额
  145. $item['distribution_money'] = $item['distribution_order']['money'] ?? 0;//分销佣金
  146. }
  147. return ['count' => $count, 'lists' => $lists];
  148. }
  149. public static function getEarningsDetail($get)
  150. {
  151. $user_id = $get['id'];
  152. $where = [];
  153. $where[] = ['d.user_id', '=', $user_id];
  154. $where[] = ['d.status', '=', DistributionOrderGoods::STATUS_SUCCESS];
  155. //记录时间
  156. if (isset($get['start_time']) && $get['start_time'] != '') {
  157. $where[] = ['d.create_time', '>=', strtotime($get['start_time'])];
  158. }
  159. if (isset($get['end_time']) && $get['end_time'] != '') {
  160. $where[] = ['d.create_time', '<=', strtotime($get['end_time'])];
  161. }
  162. $count = DistributionOrderGoods::alias('d')
  163. ->field('d.id as distribution_id, d.sn, o.order_sn, d.money, d.create_time')
  164. ->join('order_goods og', 'og.id = d.order_goods_id')
  165. ->join('order o', 'o.id = og.order_id')
  166. ->where($where)
  167. ->count();
  168. $lists = DistributionOrderGoods::alias('d')
  169. ->field('d.id as distribution_id, d.sn, o.order_sn, d.money, d.create_time')
  170. ->join('order_goods og', 'og.id = d.order_goods_id')
  171. ->join('order o', 'o.id = og.order_id')
  172. ->where($where)
  173. ->page($get['page'], $get['limit'])
  174. ->select();
  175. foreach ($lists as &$item) {
  176. $item['type'] = '分销佣金';
  177. }
  178. return ['count' => $count, 'lists' => $lists];
  179. }
  180. public static function getLeaderInfo($user_id)
  181. {
  182. $first_leader = User::alias('u')
  183. ->field('u1.nickname,u1.sn')
  184. ->join('user u1', 'u1.id = u.first_leader')
  185. ->where('u.id', $user_id)
  186. ->find();
  187. $leader_data = '无';
  188. if ($first_leader) {
  189. $leader_data = $first_leader['nickname'] . '(' . $first_leader['sn'] . ')';
  190. }
  191. return $leader_data;
  192. }
  193. public static function updateRelation($post)
  194. {
  195. Db::startTrans();
  196. try{
  197. $user_id = $post['user_id'];
  198. $referrer_sn = $post['referrer_sn'];
  199. //清空上级
  200. $data = [
  201. 'first_leader' => 0,
  202. 'second_leader' => 0,
  203. 'third_leader' => 0,
  204. 'ancestor_relation' => '',
  205. ];
  206. $my_first_leader = 0;
  207. $my_second_leader = 0;
  208. $my_ancestor_relation = '';
  209. if ($post['change_type'] == 'appoint'){
  210. //指定上级
  211. $my_leader = User::where(['sn' => $referrer_sn])->findOrEmpty();
  212. //更新我的第一上级、第二上级、第三上级、关系链
  213. $my_first_leader = $my_leader['id'];
  214. $my_second_leader = $my_leader['first_leader'];
  215. $my_third_leader = $my_leader['second_leader'];
  216. $my_ancestor_relation = trim("{$my_first_leader},{$my_leader['ancestor_relation']}", ',');
  217. $data = [
  218. 'first_leader' => $my_first_leader,
  219. 'second_leader' => $my_second_leader,
  220. 'third_leader' => $my_third_leader,
  221. 'ancestor_relation' => $my_ancestor_relation,
  222. ];
  223. }
  224. // 更新我的上级、上上级、上上上级、关系链
  225. User::where(['id' => $user_id])->update($data);
  226. //更新我向下一级的第二上级、第三上级
  227. $data = [
  228. 'second_leader' => $my_first_leader,
  229. 'third_leader' => $my_second_leader,
  230. ];
  231. User::where(['first_leader' => $user_id])->update($data);
  232. //更新我向下二级的第三级
  233. $data = [
  234. 'third_leader' => $my_first_leader,
  235. ];
  236. User::where(['second_leader' => $user_id])->update($data);
  237. //更新当前用户所有后代的关系链
  238. $posterityArr = User::field('id,ancestor_relation')
  239. ->whereFindInSet('ancestor_relation', $post['user_id'])
  240. ->select()
  241. ->toArray();
  242. $updateData = [];
  243. $replace_ancestor_relation = $post['user_id'] . ','. $my_ancestor_relation;
  244. foreach($posterityArr as $item) {
  245. $updateData[] = [
  246. 'id' => $item['id'],
  247. 'ancestor_relation' => str_replace($post['user_id'], $replace_ancestor_relation, $item['ancestor_relation'])
  248. ];
  249. }
  250. // 批量更新
  251. (new User())->saveAll($updateData);
  252. Db::commit();
  253. return true;
  254. } catch (Exception $e){
  255. Db::rollback();
  256. return $e->getMessage();
  257. }
  258. }
  259. public static function freeze($post)
  260. {
  261. $user = User::where('id', $post['id'])->find();
  262. $user->freeze_distribution = 1;
  263. if ($post['type'] == 'unfreeze'){
  264. $user->freeze_distribution = 0;
  265. }
  266. return $user->save();
  267. }
  268. public static function del($post)
  269. {
  270. $user = User::find($post['id']);
  271. $user->is_distribution = 0;
  272. $user->update_time = time();
  273. return $user->save();
  274. }
  275. /**
  276. * 待审核会员列表
  277. */
  278. public static function auditLists($get)
  279. {
  280. $where = [];
  281. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  282. $keyword = $get['keyword'];
  283. if ($get['search_key'] == 'mobile') {
  284. $where[] = ['u.mobile', 'like', '%' . $keyword . '%'];
  285. } else {
  286. $where[] = [$get['search_key'], 'like', '%' . $keyword . '%'];
  287. }
  288. }
  289. //审核状态
  290. if (isset($get['status']) && $get['status'] != '') {
  291. $where[] = ['status', '=', $get['status']];
  292. }
  293. $field = [
  294. 'a.*', 'u.sn', 'u.nickname', 'u.mobile', 'u.level', 'u.sex', 'a.reason',
  295. 'u.create_time' => 'register_time', 'u.avatar', 'u.first_leader'
  296. ];
  297. $count = DistributionMemberApply::alias('a')
  298. ->join('user u', 'u.id = a.user_id')
  299. ->where($where)
  300. ->count();
  301. $lists = DistributionMemberApply::alias('a')
  302. ->field($field)
  303. ->join('user u', 'u.id = a.user_id')
  304. ->order('a.id desc')
  305. ->page($get['page'], $get['limit'])
  306. ->where($where)
  307. ->select()
  308. ->toArray();
  309. $user_level = UserLevel::where(['del' => 0])->column('name', 'id');
  310. $leader_ids = array_column($lists, 'first_leader');
  311. $leaders = User::where('id', 'in', $leader_ids)
  312. ->column('sn,nickname,mobile,level', 'id');
  313. foreach ($lists as &$item) {
  314. $item['level'] = $user_level[$item['level']] ?? '无等级';
  315. $item['sex'] = self::getSexText($item['sex']);
  316. $item['register_time'] = date('Y-m-d H:i:s', $item['register_time']);
  317. $item['status_text'] = DistributionMemberApply::getApplyStatus($item['status']);
  318. $item['leader'] = $leaders[$item['first_leader']] ?? [];
  319. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  320. if (!empty($item['leader'])) {
  321. $leader_level = $item['leader']['level'] ?? 0;
  322. $item['leader']['level'] = $user_level[$leader_level] ?? '无等级';
  323. }
  324. }
  325. return ['count' => $count, 'lists' => $lists];
  326. }
  327. public static function getSexText($value)
  328. {
  329. switch ($value) {
  330. case 1:
  331. return '男';
  332. case 2:
  333. return '女';
  334. default:
  335. return '未知';
  336. }
  337. }
  338. public static function auditPass($post)
  339. {
  340. Db::startTrans();
  341. try {
  342. $apply = DistributionMemberApply::where('id', $post['id'])->find();
  343. $apply->status = DistributionMemberApply::STATUS_AUDIT_SUCCESS;
  344. $apply->update_time = time();
  345. $apply->save();
  346. $user = User::where('id', $apply['user_id'])->find();
  347. $user->is_distribution = 1;
  348. $user->save();
  349. Db::commit();
  350. return true;
  351. } catch (Exception $e) {
  352. Db::rollback();
  353. return $e->getMessage();
  354. }
  355. }
  356. public static function auditRefuse($post)
  357. {
  358. $apply = DistributionMemberApply::where('id', $post['id'])->find();
  359. $apply->status = DistributionMemberApply::STATUS_AUDIT_ERROR;
  360. $apply->denial_reason = $post['denial_reason'] ?? '';
  361. $apply->save();
  362. return true;
  363. }
  364. }