截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

CenterLogic.php 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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\shop\logic\distribution;
  20. use app\common\basics\Logic;
  21. use app\common\model\distribution\DistributionOrderGoods;
  22. class CenterLogic extends Logic
  23. {
  24. /**
  25. * @notes 分销概况
  26. * @author Tab
  27. * @date 2021/9/3 15:55
  28. */
  29. public static function center($shopId)
  30. {
  31. // 佣金数据
  32. $earnings = self::earnings($shopId);
  33. // 排行榜
  34. $top = self::top($shopId);
  35. return [
  36. 'earnings' => $earnings,
  37. 'top' => $top,
  38. ];
  39. }
  40. /**
  41. * @notes 分销商品排行榜
  42. * @param $shopId
  43. * @return mixed
  44. * @author Tab
  45. * @date 2021/9/3 16:07
  46. */
  47. public static function top($shopId)
  48. {
  49. $field = [
  50. 'sum(dog.money)' => 'total_money',
  51. 'og.image' => 'goods_image',
  52. 'og.goods_name',
  53. ];
  54. $where = [
  55. 'dog.shop_id' => $shopId,
  56. 'dog.status' => 2, // 已入账
  57. ];
  58. $top = DistributionOrderGoods::alias('dog')
  59. ->leftJoin('order_goods og', 'og.id = dog.order_goods_id')
  60. ->field($field)
  61. ->where($where)
  62. ->group('dog.money,og.image,og.goods_name')
  63. ->order('total_money', 'desc')
  64. ->limit(10)
  65. ->select()
  66. ->toArray();
  67. return $top;
  68. }
  69. /**
  70. * @notes 佣金数据
  71. * @param $shopId
  72. * @return array
  73. * @author Tab
  74. * @date 2021/9/3 16:13
  75. */
  76. public static function earnings($shopId)
  77. {
  78. // 累计已入账佣金
  79. $totalSuccess = DistributionOrderGoods::where([
  80. 'shop_id' => $shopId,
  81. 'status' => 2,
  82. ])->sum('money');
  83. // 今日已入账佣金
  84. $totalTodaySuccess = DistributionOrderGoods::where([
  85. 'shop_id' => $shopId,
  86. 'status' => 2,
  87. ])->whereDay('settlement_time')->sum('money');
  88. // 累计待结算佣金
  89. $totalWait = DistributionOrderGoods::where([
  90. 'shop_id' => $shopId,
  91. 'status' => 1,
  92. ])->sum('money');
  93. // 今日待结算佣金
  94. $totalTodayWait = DistributionOrderGoods::where([
  95. 'shop_id' => $shopId,
  96. 'status' => 1,
  97. ])->whereDay('create_time')->sum('money');
  98. return [
  99. 'total_success' => $totalSuccess,
  100. 'total_today_success' => $totalTodaySuccess,
  101. 'total_wait' => $totalWait,
  102. 'total_today_wait' => $totalTodayWait,
  103. ];
  104. }
  105. }