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

StatisticsLogic.php 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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;
  20. use app\common\basics\Logic;
  21. use app\common\server\UrlServer;
  22. use app\common\enum\PayEnum;
  23. use think\facade\Db;
  24. class StatisticsLogic extends Logic
  25. {
  26. /**
  27. * Notes: 访问分析
  28. * @return array
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\DbException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. */
  33. public static function visit($post,$shop_id)
  34. {
  35. //获取今天的时间戳
  36. $today = strtotime('today');
  37. //近七天的开始日期
  38. $start_time = $today - 86400 * 7;
  39. //近七天的结束日期
  40. $end_time = $today - 1;
  41. if (isset($post['start_time']) && $post['start_time'] && isset($post['end_time']) && $post['end_time']) {
  42. $start_time = strtotime($post['start_time']);
  43. $end_time = strtotime($post['end_time']);
  44. }
  45. $user_count = Db::name('shop_stat')
  46. ->where([['create_time', 'between', [$start_time, $end_time]],['shop_id', '=', $shop_id]])
  47. ->count('id');
  48. //当前时间戳
  49. $start_t = time();
  50. //echarts图表数据
  51. $echarts_count = [];
  52. $echarts_add = [];
  53. $dates = [];
  54. for ($i = 15; $i >= 1; $i--) {
  55. $where_start = strtotime("- " . $i . "day", $start_t);
  56. $dates[] = date('m-d', $where_start);
  57. $start_now = strtotime(date('Y-m-d', $where_start));
  58. $end_now = strtotime(date('Y-m-d 23:59:59', $where_start));
  59. $add = Db::name('shop_stat')
  60. ->where([['create_time', 'between', [$start_now, $end_now]],['shop_id', '=', $shop_id]])
  61. ->count('id');
  62. $echarts_count[] = 0;
  63. $echarts_add[] = $add;
  64. }
  65. return [
  66. 'user_count' => $user_count,
  67. 'start_time' => date('Y-m-d H:i:s', $start_time),
  68. 'end_time' => date('Y-m-d H:i:s', $end_time),
  69. 'echarts_count' => $echarts_count,
  70. 'echarts_add' => $echarts_add,
  71. 'days' => $dates,
  72. ];
  73. }
  74. /**
  75. * Notes: 交易分析
  76. * @return array
  77. * @throws \think\db\exception\DataNotFoundException
  78. * @throws \think\db\exception\DbException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. */
  81. public static function trading($post,$shop_id)
  82. {
  83. //获取今天的时间戳
  84. $today = strtotime('today');
  85. //近七天的开始日期
  86. $start_time = $today - 86400 * 7;
  87. //近七天的结束日期
  88. $end_time = $today - 1;
  89. if (isset($post['start_time']) && $post['start_time'] && isset($post['end_time']) && $post['end_time']) {
  90. $start_time = strtotime($post['start_time']);
  91. $end_time = strtotime($post['end_time']);
  92. }
  93. $order_num = Db::name('order')
  94. ->where([['create_time', 'between', [$start_time, $end_time]], ['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  95. ->count('id');
  96. $order_amount = Db::name('order')
  97. ->where([['create_time', 'between', [$start_time, $end_time]], ['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  98. ->sum('order_amount') ?? 0;
  99. //当前时间戳
  100. $start_t = time();
  101. //echarts图表数据
  102. $echarts_count = [];
  103. $echarts_order_num_add = [];
  104. $echarts_order_amount_add = [];
  105. $dates = [];
  106. for ($i = 15; $i >= 1; $i--) {
  107. $where_start = strtotime("- " . $i . "day", $start_t);
  108. $dates[] = date('m-d', $where_start);
  109. $start_now = strtotime(date('Y-m-d', $where_start));
  110. $end_now = strtotime(date('Y-m-d 23:59:59', $where_start));
  111. $order_num_add = Db::name('order')
  112. ->where([['create_time', 'between', [$start_now, $end_now]], ['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  113. ->count('id');
  114. $order_amount_add = Db::name('order')
  115. ->where([['create_time', 'between', [$start_now, $end_now]], ['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  116. ->sum('order_amount') ?? 0;
  117. $echarts_count[] = 0;
  118. $echarts_order_num_add[] = $order_num_add;
  119. $echarts_order_amount_add[] = sprintf("%.2f",substr(sprintf("%.3f", $order_amount_add), 0, -2));
  120. }
  121. return [
  122. 'order_num' => $order_num,
  123. 'order_amount' => '¥'.number_format($order_amount,2),
  124. 'start_time' => date('Y-m-d H:i:s', $start_time),
  125. 'end_time' => date('Y-m-d H:i:s', $end_time),
  126. 'echarts_count' => $echarts_count,
  127. 'echarts_order_num_add' => $echarts_order_num_add,
  128. 'echarts_order_amount_add' => $echarts_order_amount_add,
  129. 'days' => $dates,
  130. ];
  131. }
  132. /**
  133. * Notes: 商品分析
  134. * @return array
  135. * @throws \think\db\exception\DataNotFoundException
  136. * @throws \think\db\exception\DbException
  137. * @throws \think\db\exception\ModelNotFoundException
  138. */
  139. public static function goods($get,$shop_id)
  140. {
  141. if (!isset($get['search_key'])) {
  142. $get['search_key'] = 'sales_volume';
  143. }
  144. // 商品列表
  145. $goods_count = Db::name('order')->alias('o')
  146. ->join('order_goods og', 'og.order_id = o.id')
  147. ->join('shop s', 's.id = o.shop_id')
  148. ->where([['o.pay_status', '=', 1],['o.shop_id', '=', $shop_id]])
  149. ->group('og.goods_id')
  150. ->count();
  151. $goods_list = Db::name('order')->alias('o')
  152. ->join('order_goods og', 'og.order_id = o.id')
  153. ->join('shop s', 's.id = o.shop_id')
  154. ->where([['o.pay_status', '=', 1],['o.shop_id', '=', $shop_id]])
  155. ->group('og.goods_id')
  156. ->page($get['page'], $get['limit'])
  157. ->order($get['search_key'].' desc')
  158. ->column('s.id,s.logo,s.type,s.name,o.shop_id,count(o.id) as sales_volume,sum(o.order_amount) as sales_price,og.image,og.goods_name');
  159. foreach ($goods_list as $k => $item) {
  160. $goods_list[$k]['number'] = $k + 1;
  161. $goods_list[$k]['sales_price'] = '¥' . number_format($item['sales_price'], 2);
  162. $goods_list[$k]['goods_image'] = UrlServer::getFileUrl($item['image']);
  163. $goods_list[$k]['logo'] = UrlServer::getFileUrl($item['logo']);
  164. if ($item['type'] == 1) {
  165. $goods_list[$k]['type_desc'] = '官方自营';
  166. } else {
  167. $goods_list[$k]['type_desc'] = '入驻商家';
  168. }
  169. }
  170. return ['count' => $goods_count, 'lists' => $goods_list];
  171. }
  172. }