截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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\DistributionOrderGoods;
  6. use app\common\server\UrlServer;
  7. class CenterLogic extends Logic
  8. {
  9. /**
  10. * @notes 数据概览
  11. * @return array
  12. * @author Tab
  13. * @date 2021/9/6 14:40
  14. */
  15. public static function center()
  16. {
  17. $data = [
  18. 'earnings' => self::earnings(),
  19. 'members' => self::members(),
  20. 'topGoods' => self::topGoods(),
  21. 'topMembers' => self::topMembers(),
  22. ];
  23. return $data;
  24. }
  25. /**
  26. * @notes 佣金数据
  27. * @return array
  28. * @author Tab
  29. * @date 2021/9/6 14:46
  30. */
  31. public static function earnings()
  32. {
  33. // 累计已入账佣金
  34. $totalSuccess = DistributionOrderGoods::where([
  35. 'status' => 2,
  36. ])->sum('money');
  37. // 今日已入账佣金
  38. $totalTodaySuccess = DistributionOrderGoods::where([
  39. 'status' => 2,
  40. ])->whereDay('settlement_time')->sum('money');
  41. // 累计待结算佣金
  42. $totalWait = DistributionOrderGoods::where([
  43. 'status' => 1,
  44. ])->sum('money');
  45. // 今日待结算佣金
  46. $totalTodayWait = DistributionOrderGoods::where([
  47. 'status' => 1,
  48. ])->whereDay('create_time')->sum('money');
  49. return [
  50. 'total_success' => $totalSuccess,
  51. 'total_today_success' => $totalTodaySuccess,
  52. 'total_wait' => $totalWait,
  53. 'total_today_wait' => $totalTodayWait,
  54. ];
  55. }
  56. /**
  57. * @notes 分销会员数据
  58. * @author Tab
  59. * @date 2021/9/6 14:57
  60. */
  61. public static function members()
  62. {
  63. $members = Distribution::where('is_distribution', 1)->count();
  64. $users = Distribution::count();
  65. $proportion = 0;
  66. if ($users) {
  67. $proportion = round(($members / $users), 2) * 100;
  68. }
  69. return [
  70. 'members' => $members,
  71. 'proportion' => $proportion,
  72. ];
  73. }
  74. /**
  75. * @notes 分销商品排行榜
  76. * @author Tab
  77. * @date 2021/9/6 14:59
  78. */
  79. public static function topGoods()
  80. {
  81. $field = [
  82. 'sum(dog.money)' => 'total_money',
  83. 'og.image' => 'goods_image',
  84. 'og.goods_name',
  85. ];
  86. $where = [
  87. 'dog.status' => 2, // 已入账
  88. ];
  89. $topGoods = DistributionOrderGoods::alias('dog')
  90. ->leftJoin('order_goods og', 'og.id = dog.order_goods_id')
  91. ->field($field)
  92. ->where($where)
  93. ->group('dog.money,og.image,og.goods_name')
  94. ->order('total_money', 'desc')
  95. ->limit(10)
  96. ->select()
  97. ->toArray();
  98. return $topGoods;
  99. }
  100. /**
  101. * @notes 分销会员排行榜
  102. * @return mixed
  103. * @author Tab
  104. * @date 2021/9/6 15:01
  105. */
  106. public static function topMembers()
  107. {
  108. $field = [
  109. 'sum(dog.money)' => 'total_money',
  110. 'u.avatar',
  111. 'u.nickname',
  112. ];
  113. $where = [
  114. 'dog.status' => 2, // 已入账
  115. ];
  116. $topMembers = DistributionOrderGoods::alias('dog')
  117. ->leftJoin('user u', 'u.id = dog.user_id')
  118. ->field($field)
  119. ->where($where)
  120. ->group('dog.money,u.avatar,u.nickname')
  121. ->order('total_money', 'desc')
  122. ->limit(10)
  123. ->select()
  124. ->toArray();
  125. foreach($topMembers as &$item) {
  126. $item['avatar'] = empty($item['avatar']) ? '' : UrlServer::getFileUrl($item['avatar']);
  127. }
  128. return $topMembers;
  129. }
  130. }