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

StatisticsLogic.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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;
  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)
  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('stat')
  46. ->where([['create_time', 'between', [$start_time, $end_time]]])
  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('stat')
  60. ->where([['create_time', 'between', [$start_now, $end_now]]])
  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 member($post)
  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. $user_num = Db::name('user')
  94. ->count('id');
  95. $user_add = Db::name('user')
  96. ->where([['create_time', 'between', [$start_time, $end_time]]])
  97. ->count('id');
  98. //当前时间戳
  99. $start_t = time();
  100. //echarts图表数据
  101. $echarts_count = [];
  102. $echarts_add = [];
  103. $dates = [];
  104. for ($i = 15; $i >= 1; $i--) {
  105. $where_start = strtotime("- " . $i . "day", $start_t);
  106. $dates[] = date('m-d', $where_start);
  107. $start_now = strtotime(date('Y-m-d', $where_start));
  108. $end_now = strtotime(date('Y-m-d 23:59:59', $where_start));
  109. $add = Db::name('user')
  110. ->where([['create_time', 'between', [$start_now, $end_now]]])
  111. ->count('id');
  112. $echarts_count[] = 0;
  113. $echarts_add[] = $add;
  114. }
  115. return [
  116. 'user_num' => $user_num,
  117. 'user_add' => $user_add,
  118. 'start_time' => date('Y-m-d H:i:s', $start_time),
  119. 'end_time' => date('Y-m-d H:i:s', $end_time),
  120. 'echarts_count' => $echarts_count,
  121. 'echarts_add' => $echarts_add,
  122. 'days' => $dates,
  123. ];
  124. }
  125. /**
  126. * Notes: 交易分析
  127. * @return array
  128. * @throws \think\db\exception\DataNotFoundException
  129. * @throws \think\db\exception\DbException
  130. * @throws \think\db\exception\ModelNotFoundException
  131. */
  132. public static function trading($post)
  133. {
  134. //获取今天的时间戳
  135. $today = strtotime('today');
  136. //近七天的开始日期
  137. $start_time = $today - 86400 * 7;
  138. //近七天的结束日期
  139. $end_time = $today - 1;
  140. if (isset($post['start_time']) && $post['start_time'] && isset($post['end_time']) && $post['end_time']) {
  141. $start_time = strtotime($post['start_time']);
  142. $end_time = strtotime($post['end_time']);
  143. }
  144. $order_num = Db::name('order')
  145. ->where([['create_time', 'between', [$start_time, $end_time]], ['pay_status', '>', PayEnum::UNPAID]])
  146. ->count('id');
  147. $order_amount = Db::name('order')
  148. ->where([['create_time', 'between', [$start_time, $end_time]], ['pay_status', '>', PayEnum::UNPAID]])
  149. ->sum('order_amount');
  150. //当前时间戳
  151. $start_t = time();
  152. //echarts图表数据
  153. $echarts_count = [];
  154. $echarts_order_num_add = [];
  155. $echarts_order_amount_add = [];
  156. $dates = [];
  157. for ($i = 15; $i >= 1; $i--) {
  158. $where_start = strtotime("- " . $i . "day", $start_t);
  159. $dates[] = date('m-d', $where_start);
  160. $start_now = strtotime(date('Y-m-d', $where_start));
  161. $end_now = strtotime(date('Y-m-d 23:59:59', $where_start));
  162. $order_num_add = Db::name('order')
  163. ->where([['create_time', 'between', [$start_now, $end_now]], ['pay_status', '>', PayEnum::UNPAID]])
  164. ->count('id');
  165. $order_amount_add = Db::name('order')
  166. ->where([['create_time', 'between', [$start_now, $end_now]], ['pay_status', '>', PayEnum::UNPAID]])
  167. ->sum('order_amount');
  168. $echarts_count[] = 0;
  169. $echarts_order_num_add[] = $order_num_add;
  170. $echarts_order_amount_add[] = sprintf("%.2f",substr(sprintf("%.3f", $order_amount_add), 0, -2));
  171. }
  172. return [
  173. 'order_num' => $order_num,
  174. 'order_amount' => '¥'.number_format($order_amount,2),
  175. 'start_time' => date('Y-m-d H:i:s', $start_time),
  176. 'end_time' => date('Y-m-d H:i:s', $end_time),
  177. 'echarts_count' => $echarts_count,
  178. 'echarts_order_num_add' => $echarts_order_num_add,
  179. 'echarts_order_amount_add' => $echarts_order_amount_add,
  180. 'days' => $dates,
  181. ];
  182. }
  183. /**
  184. * Notes: 商家分析
  185. * @return array
  186. * @throws \think\db\exception\DataNotFoundException
  187. * @throws \think\db\exception\DbException
  188. * @throws \think\db\exception\ModelNotFoundException
  189. */
  190. public static function shop($get)
  191. {
  192. if (!isset($get['search_key'])) {
  193. $get['search_key'] = 'sales_price';
  194. }
  195. // 商家列表
  196. $shop_count = Db::name('shop')
  197. ->count();
  198. $shop_list = Db::name('shop')
  199. ->page($get['page'], $get['limit'])
  200. ->column('id,logo,type,name,visited_num');
  201. $shop_ids = array_column($shop_list, 'id');
  202. $sales_price_list = Db::name('order')
  203. ->where([['shop_id', 'in', $shop_ids], ['pay_status', '>', PayEnum::UNPAID]])
  204. ->group('shop_id')
  205. ->column('sum(order_amount) as sales_price', 'shop_id');
  206. $shop_follow_list = Db::name('shop_follow')
  207. ->where([['shop_id', 'in', $shop_ids], ['status', '=', 1]])
  208. ->group('shop_id')
  209. ->column('count(id) as follow_num', 'shop_id');
  210. foreach ($shop_list as $k => $shop) {
  211. $shop_list[$k]['logo'] = UrlServer::getFileUrl($shop['logo']);
  212. $shop_list[$k]['sales_price'] = '¥0';
  213. $shop_list[$k]['follow_num'] = 0;
  214. if (isset($sales_price_list[$shop['id']])) {
  215. $shop_list[$k]['sales_price'] = '¥' . number_format($sales_price_list[$shop['id']], 2);
  216. }
  217. if (isset($shop_follow_list[$shop['id']])) {
  218. $shop_list[$k]['follow_num'] = $shop_follow_list[$shop['id']];
  219. }
  220. if ($shop['type'] == 1) {
  221. $shop_list[$k]['type_desc'] = '官方自营';
  222. } else {
  223. $shop_list[$k]['type_desc'] = '入驻商家';
  224. }
  225. }
  226. //排序
  227. $sort_field = array_column($shop_list, $get['search_key']);
  228. array_multisort($sort_field, SORT_DESC, $shop_list);
  229. foreach ($shop_list as $k => $shop) {
  230. $shop_list[$k]['number'] = $k + 1;
  231. }
  232. return ['count' => $shop_count, 'lists' => $shop_list];
  233. }
  234. /**
  235. * Notes: 商品分析
  236. * @return array
  237. * @throws \think\db\exception\DataNotFoundException
  238. * @throws \think\db\exception\DbException
  239. * @throws \think\db\exception\ModelNotFoundException
  240. */
  241. public static function goods($get)
  242. {
  243. if (!isset($get['search_key'])) {
  244. $get['search_key'] = 'sales_volume';
  245. }
  246. // 商品列表
  247. $goods_count = Db::name('order')->alias('o')
  248. ->join('order_goods og', 'og.order_id = o.id')
  249. ->join('shop s', 's.id = o.shop_id')
  250. ->where([['o.pay_status', '=', 1]])
  251. ->group('og.goods_id')
  252. ->count();
  253. $goods_list = Db::name('order')->alias('o')
  254. ->join('order_goods og', 'og.order_id = o.id')
  255. ->join('shop s', 's.id = o.shop_id')
  256. ->where([['o.pay_status', '=', 1]])
  257. ->group('og.goods_id')
  258. ->page($get['page'], $get['limit'])
  259. ->order($get['search_key'].' desc')
  260. ->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');
  261. foreach ($goods_list as $k => $item) {
  262. $goods_list[$k]['number'] = $k + 1;
  263. $goods_list[$k]['sales_price'] = '¥' . number_format($item['sales_price'], 2);
  264. $goods_list[$k]['goods_image'] = UrlServer::getFileUrl($item['image']);
  265. $goods_list[$k]['logo'] = UrlServer::getFileUrl($item['logo']);
  266. if ($item['type'] == 1) {
  267. $goods_list[$k]['type_desc'] = '官方自营';
  268. } else {
  269. $goods_list[$k]['type_desc'] = '入驻商家';
  270. }
  271. }
  272. return ['count' => $goods_count, 'lists' => $goods_list];
  273. }
  274. }