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

UserDistribution.php 3.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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\common\command;
  20. use app\common\enum\PayEnum;
  21. use app\common\model\distribution\DistributionOrderGoods;
  22. use app\common\model\Pay;
  23. use app\common\model\user\User;
  24. use think\console\Command;
  25. use think\console\Input;
  26. use think\console\Output;
  27. use app\common\model\order\Order;
  28. use think\facade\Log;
  29. class UserDistribution extends Command
  30. {
  31. protected function configure()
  32. {
  33. $this->setName('user_distribution')
  34. ->setDescription('更新会员分销信息');
  35. }
  36. protected function execute(Input $input, Output $output)
  37. {
  38. try {
  39. $userModel = new User();
  40. $users = $userModel->alias('u')
  41. ->field('d.*')
  42. ->join('user_distribution d', 'd.user_id = u.id')
  43. ->where(['u.del' => 0])
  44. ->select()->toArray();
  45. if (!$users) {
  46. return true;
  47. }
  48. foreach ($users as $user) {
  49. //粉丝数量
  50. $where1 = [
  51. ['first_leader', '=', $user['user_id']],
  52. ];
  53. $where2 = [
  54. ['second_leader', '=', $user['user_id']],
  55. ];
  56. $fans = User::whereOr([$where1, $where2])->count();
  57. //分销订单信息
  58. $distribution = DistributionOrderGoods::where(['user_id' => $user['user_id']])
  59. ->field('sum(money) as money, count(id) as order_num')
  60. ->find();
  61. //订单信息
  62. $order = Order::where([
  63. 'user_id' => $user['user_id'],
  64. 'pay_status' => PayEnum::ISPAID,
  65. 'refund_status' => 0
  66. ])
  67. ->field('sum(order_amount) as order_amount, count(id) as order_num')
  68. ->find();
  69. $data = [
  70. 'distribution_order_num' => $distribution['order_num'] ?? 0,
  71. 'distribution_money' => $distribution['money'] ?? 0,
  72. 'order_num' => $order['order_num'] ?? 0,
  73. 'order_amount' => $order['order_amount'] ?? 0,
  74. 'fans' => $fans,
  75. 'update_time' => time(),
  76. ];
  77. //更新会员分销信息表
  78. \app\common\model\user\UserDistribution::where('user_id', $user['user_id'])->update($data);
  79. }
  80. return true;
  81. } catch (\Exception $e) {
  82. Log::write('自动更新会员分销信息异常:'.$e->getMessage());
  83. return false;
  84. }
  85. }
  86. }