截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

StatisticsLogic.php 9.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shopapi\logic;
  20. use app\common\enum\OrderEnum;
  21. use app\common\enum\PayEnum;
  22. use app\common\enum\VerificationEnum;
  23. use app\common\model\order\Order;
  24. use app\common\model\shop\Shop;
  25. use app\common\server\UrlServer;
  26. use think\facade\Db;
  27. /**
  28. * 数据逻辑层
  29. * Class StatisticsLogic
  30. * @package app\shopapi\logic
  31. */
  32. class StatisticsLogic{
  33. /**
  34. * @notes 工作台
  35. * @param int $shop_id
  36. * @return array
  37. * @author cjhao
  38. * @date 2021/11/11 15:23
  39. */
  40. public function workbench(int $shop_id){
  41. //头部数据统计
  42. $where = [];
  43. $where[] = ['pay_status', '>', PayEnum::UNPAID];
  44. $where[] = ['shop_id','=',$shop_id];
  45. //成交笔数
  46. $order_num = Db::name('order')
  47. ->where($where)
  48. ->whereDay('create_time')
  49. ->count('id');
  50. //销售金额
  51. $order_amount = Db::name('order')
  52. ->where($where)
  53. ->whereDay('create_time')
  54. ->sum('order_amount') ?? 0;
  55. //进店人数
  56. $shop_user = Db::name('shop_stat')
  57. ->where(['shop_id'=>$shop_id])
  58. ->whereDay('create_time')
  59. ->group(['ip'])
  60. ->count('id');
  61. //当前时间戳
  62. $start_t = time();
  63. //echarts图表数据
  64. $echarts_order_amount = [];
  65. $echarts_user_pv = [];
  66. $dates = [];
  67. for ($i = 7; $i >= 1; $i--) {
  68. $where_start = strtotime("- ".$i."day", $start_t);
  69. $dates[] = date('m-d',$where_start);
  70. $start_now = strtotime(date('Y-m-d',$where_start));
  71. $end_now = strtotime(date('Y-m-d 23:59:59',$where_start));
  72. $amount = Db::name('order')
  73. ->where([['shop_id','=',$shop_id],['create_time','between',[$start_now, $end_now]],['pay_status','>',PayEnum::UNPAID]])
  74. ->sum('order_amount');
  75. $pv = Db::name('shop_stat')
  76. ->where([['shop_id','=',$shop_id],['create_time','between',[$start_now, $end_now]]])
  77. ->group('ip')
  78. ->count('id');
  79. $echarts_order_amount[] = sprintf("%.2f",substr(sprintf("%.3f", $amount), 0, -2));
  80. $echarts_user_pv[] = $pv;
  81. }
  82. $self_order_num = Order::where([
  83. 'delivery_type' => OrderEnum::DELIVERY_TYPE_SELF,
  84. 'pay_status' => PayEnum::ISPAID,
  85. 'shop_id' => $shop_id
  86. ])->count();
  87. $is_verification = Order::where([
  88. 'delivery_type' => OrderEnum::DELIVERY_TYPE_SELF,
  89. 'pay_status' => PayEnum::ISPAID,
  90. 'verification_status' => OrderEnum::NOT_WRITTEN_OFF,
  91. 'shop_id' => $shop_id
  92. ])->count();
  93. $no_verification = Order::where([
  94. 'delivery_type' => OrderEnum::DELIVERY_TYPE_SELF,
  95. 'pay_status' => PayEnum::ISPAID,
  96. 'verification_status' => OrderEnum::WRITTEN_OFF,
  97. 'shop_id' => $shop_id
  98. ])->count();
  99. return [
  100. 'now' => date('Y-m-d H:i:s', time()),
  101. 'shop_name' => Shop::where(['id'=>$shop_id])->value('name'),
  102. 'order_num' => $order_num,
  103. 'order_amount' => $order_amount,
  104. 'shop_user' => $shop_user,
  105. 'self_order' => $self_order_num,
  106. 'is_verification' => $is_verification,
  107. 'no_verification' => $no_verification,
  108. 'echarts_order_amount' => $echarts_order_amount,
  109. 'echarts_user_visit' => $echarts_user_pv,
  110. 'dates' => $dates,
  111. ];
  112. }
  113. /**
  114. * @notes 交易接口
  115. * @param int $shop_id
  116. * @return array
  117. * @author cjhao
  118. * @date 2021/11/11 14:39
  119. */
  120. public function trading(int $shop_id){
  121. //获取今天的时间戳
  122. $today = strtotime('today');
  123. //近七天的开始日期
  124. $start_time = $today - 86400 * 7;
  125. //近七天的结束日期
  126. $end_time = $today - 1;
  127. $order_num = Db::name('order')
  128. ->where([['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  129. ->whereDay('create_time')
  130. ->count('id');
  131. $order_amount = Db::name('order')
  132. ->where([['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  133. ->whereDay('create_time')
  134. ->sum('order_amount') ?? 0;
  135. //当前时间戳
  136. $start_t = time();
  137. //echarts图表数据
  138. $echarts_order_num_add = [];
  139. $echarts_order_amount_add = [];
  140. $dates = [];
  141. for ($i = 7; $i >= 1; $i--) {
  142. $where_start = strtotime("- " . $i . "day", $start_t);
  143. $dates[] = date('m-d', $where_start);
  144. $start_now = strtotime(date('Y-m-d', $where_start));
  145. $end_now = strtotime(date('Y-m-d 23:59:59', $where_start));
  146. $order_num_add = Db::name('order')
  147. ->where([['create_time', 'between', [$start_now, $end_now]], ['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  148. ->count('id');
  149. $order_amount_add = Db::name('order')
  150. ->where([['create_time', 'between', [$start_now, $end_now]], ['pay_status', '>', PayEnum::UNPAID],['shop_id', '=', $shop_id]])
  151. ->sum('order_amount') ?? 0;
  152. $echarts_order_num_add[] = $order_num_add;
  153. $echarts_order_amount_add[] = sprintf("%.2f",substr(sprintf("%.3f", $order_amount_add), 0, -2));
  154. }
  155. return [
  156. 'order_num' => $order_num,
  157. 'order_amount' => '¥'.number_format($order_amount,2),
  158. 'echarts_order_num_add' => $echarts_order_num_add,
  159. 'echarts_order_amount_add' => $echarts_order_amount_add,
  160. 'days' => $dates,
  161. ];
  162. }
  163. /**
  164. * @notes 商品分析
  165. * @param int $shop_id
  166. * @return array
  167. * @author cjhao
  168. * @date 2021/11/11 15:09
  169. */
  170. public function goodslist(int $shop_id){
  171. // 商品列表
  172. $goods_count = Db::name('order')->alias('o')
  173. ->join('order_goods og', 'og.order_id = o.id')
  174. ->join('shop s', 's.id = o.shop_id')
  175. ->where([['o.pay_status', '=', 1],['o.shop_id', '=', $shop_id]])
  176. ->group('og.goods_id')
  177. ->count();
  178. $goods_list = Db::name('order')->alias('o')
  179. ->join('order_goods og', 'og.order_id = o.id')
  180. ->join('shop s', 's.id = o.shop_id')
  181. ->where([['o.pay_status', '=', 1],['o.shop_id', '=', $shop_id]])
  182. ->group('og.goods_id')
  183. ->limit(20)
  184. ->order('sales_volume desc')
  185. ->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');
  186. foreach ($goods_list as $k => $item) {
  187. $goods_list[$k]['number'] = $k + 1;
  188. $goods_list[$k]['sales_price'] = '¥' . number_format($item['sales_price'], 2);
  189. $goods_list[$k]['goods_image'] = UrlServer::getFileUrl($item['image']);
  190. $goods_list[$k]['logo'] = UrlServer::getFileUrl($item['logo']);
  191. if ($item['type'] == 1) {
  192. $goods_list[$k]['type_desc'] = '官方自营';
  193. } else {
  194. $goods_list[$k]['type_desc'] = '入驻商家';
  195. }
  196. }
  197. return ['count' => $goods_count, 'lists' => $goods_list];
  198. }
  199. /**
  200. * @notes 访问分析
  201. * @param int $shop_id
  202. * @return array
  203. * @author cjhao
  204. * @date 2021/11/11 15:09
  205. */
  206. public function visit(int $shop_id){
  207. //获取今天的时间戳
  208. $today = strtotime('today');
  209. //近七天的开始日期
  210. $start_time = $today - 86400 * 7;
  211. //近七天的结束日期
  212. $end_time = $today - 1;
  213. $user_count = Db::name('shop_stat')
  214. ->where([['create_time', 'between', [$start_time, $end_time]],['shop_id', '=', $shop_id]])
  215. ->count('id');
  216. //当前时间戳
  217. $start_t = time();
  218. //echarts图表数据
  219. $echarts_add = [];
  220. $dates = [];
  221. for ($i = 7; $i >= 1; $i--) {
  222. $where_start = strtotime("- " . $i . "day", $start_t);
  223. $dates[] = date('m-d', $where_start);
  224. $start_now = strtotime(date('Y-m-d', $where_start));
  225. $end_now = strtotime(date('Y-m-d 23:59:59', $where_start));
  226. $add = Db::name('shop_stat')
  227. ->where([['create_time', 'between', [$start_now, $end_now]],['shop_id', '=', $shop_id]])
  228. ->count('id');
  229. $echarts_add[] = $add;
  230. }
  231. return [
  232. 'user_count' => $user_count,
  233. 'echarts_add' => $echarts_add,
  234. 'days' => $dates,
  235. ];
  236. }
  237. }