Нема описа
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.

Statistics.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 易而优团队 by 陈风任 <491085389@qq.com>
  11. * Date: 2019-11-21
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Config;
  16. use app\admin\logic\ShopLogic;
  17. // 数据统计
  18. class Statistics extends Base {
  19. public $ShopLogic;
  20. public $UsersConfigData = [];
  21. public function _initialize() {
  22. parent::_initialize();
  23. $this->language_access(); // 多语言功能操作权限
  24. // 会员中心配置信息
  25. $this->UsersConfigData = getUsersConfigData('all');
  26. $this->assign('userConfig',$this->UsersConfigData);
  27. $this->ShopLogic = new ShopLogic;
  28. }
  29. /**
  30. * 数据表列表
  31. */
  32. public function index()
  33. {
  34. // 列出营销功能里已使用的模块
  35. $marketFunc = $this->ShopLogic->marketLogic();
  36. $this->assign('marketFunc', $marketFunc);
  37. // 近七日成交量成交额折线图数据
  38. $LineChartData = $this->GetLineChartData();
  39. $this->assign('DealNum', $LineChartData['DealNum']);
  40. $this->assign('DealAmount', $LineChartData['DealAmount']);
  41. // 起始时间
  42. $StartTime = $this->GetTime(6);
  43. $EndTime = getTime();
  44. $this->assign('StartTime', $StartTime);
  45. $this->assign('EndTime', $EndTime);
  46. // 数据统计
  47. $CycletData = $this->GetTimeCycletData($StartTime, $EndTime);
  48. $this->assign('CycletData', $CycletData);
  49. // 商品销售榜
  50. $OrderSalesList = $this->GetOrderSalesList();
  51. $this->assign('OrderSalesList', $OrderSalesList);
  52. // 用户消费榜
  53. $UserConsumption = $this->GetUserConsumption();
  54. $this->assign('UserConsumption', $UserConsumption);
  55. return $this->fetch();
  56. }
  57. // 用户消费榜
  58. private function GetUserConsumption()
  59. {
  60. $where = [
  61. 'order_status' => ['IN', [1, 2, 3]]
  62. ];
  63. $Return = Db::name('shop_order')->field('users_id, sum(order_total_amount+shipping_fee) as amount')->where($where)->group('users_id')->select();
  64. $users_id = get_arr_column($Return, 'users_id');
  65. $Return = convert_arr_key($Return, 'users_id');
  66. $UsersData = Db::name('users')->field('users_id, username, nickname')->select();
  67. foreach ($UsersData as $key => $value) {
  68. $UsersData[$key]['amount'] = !empty($Return[$value['users_id']]['amount']) ? $Return[$value['users_id']]['amount'] : 0;
  69. $UsersData[$key]['nickname'] = !empty($UsersData[$key]['nickname']) ? $UsersData[$key]['nickname'] : $UsersData[$key]['username'];
  70. }
  71. // 以消费金额排序
  72. array_multisort(get_arr_column($UsersData, 'amount'), SORT_DESC, $UsersData);
  73. // 读取前十数据
  74. $UsersData = array_slice($UsersData, 0, 10);
  75. return $UsersData;
  76. }
  77. // 商品销售榜
  78. private function GetOrderSalesList()
  79. {
  80. // 查询销量最高的前十个商品
  81. $field_0 = 'aid, title, sales_num';
  82. $where_0 = [
  83. 'typeid' => ['IN', Db::name('arctype')->where('current_channel', 2)->column('id')],
  84. 'channel' => 2,
  85. ];
  86. $Archives = Db::name('archives')->field($field_0)->where($where_0)->limit(10)->order('sales_num desc')->select();
  87. // 统计单个商品销售总额
  88. $where_1 = [
  89. 'a.product_id' => ['IN', get_arr_column($Archives, 'aid')],
  90. 'b.order_status' => ['IN', [1, 2, 3]],
  91. ];
  92. $Price = Db::name('shop_order_details')->alias('a')
  93. ->field('a.product_id, sum(a.product_price*a.num) as price, count(a.details_id) as sales_num')
  94. ->join('__SHOP_ORDER__ b', 'a.order_id = b.order_id', 'LEFT')
  95. ->where($where_1)
  96. ->group('product_id')
  97. ->select();
  98. // 数据处理并返回
  99. $Price = convert_arr_key($Price, 'product_id');
  100. $Archives = convert_arr_key($Archives, 'aid');
  101. $ArchivesNew = get_archives_data($Archives, 'aid');
  102. foreach ($Archives as $key => $value) {
  103. $Archives[$key]['arcurl'] = get_arcurl($ArchivesNew[$key]);
  104. $Archives[$key]['title'] = @msubstr($value['title'], 0, 25, '...');
  105. $Archives[$key]['sales_amount'] = !empty($Price[$key]['price']) ? $Price[$key]['price'] : 0;
  106. $Archives[$key]['sales_num'] = !empty($Price[$key]['sales_num']) ? $Price[$key]['sales_num'] : 0;
  107. }
  108. return $Archives;
  109. }
  110. // 获取时间周期内的指定数据
  111. public function GetTimeCycletData($Start = null, $End = null)
  112. {
  113. $param = input('param.');
  114. if (!empty($param['Year']) && 0 != $param['Year']) {
  115. $param['Start'] = strtotime("-0 year -{$param['Year']} month -0 day");
  116. $param['End'] = getTime();
  117. } else {
  118. if (empty($Start) || empty($End)) {
  119. $param['Start'] = strtotime($param['StartNew']);
  120. $param['End'] = strtotime($param['EndNew']);
  121. } else {
  122. $param = [
  123. 'Start' => $Start,
  124. 'End' => $End,
  125. ];
  126. }
  127. }
  128. // 会员查询条件
  129. $Uwhere = [
  130. 'reg_time' => ['between', [$param['Start'], $param['End']]]
  131. ];
  132. // 商品查询条件
  133. $Awhere = [
  134. 'typeid' => ['IN', Db::name('arctype')->where('current_channel', 2)->column('id')],
  135. 'channel' => 2,
  136. 'add_time' => ['between', [$param['Start'], $param['End']]]
  137. ];
  138. // 商品查询条件
  139. $Swhere = [
  140. 'add_time' => ['between', [$param['Start'], $param['End']]]
  141. ];
  142. // 订单查询条件
  143. $Owhere = [
  144. 'order_status' => ['IN', [1, 2, 3]],
  145. 'add_time' => ['between', [$param['Start'], $param['End']]]
  146. ];
  147. // 查询订单数据
  148. $Result = $this->GetTimeWhereData($Owhere);
  149. // 充值查询条件
  150. $Mwhere = [
  151. 'cause' => Config::get('global.pay_cause_type_arr')[1],
  152. 'cause_type' => 1,
  153. 'status' => 3,
  154. 'add_time' => ['between', [$param['Start'], $param['End']]]
  155. ];
  156. $Return = [
  157. // 会员人数
  158. 'UsersNum' => Db::name('users')->where($Uwhere)->count(),
  159. // 付款订单数
  160. 'PayOrderNum' => $Result['deal_num'],
  161. // 订单销售额
  162. 'OrderSales' => $Result['deal_amount'],
  163. // 商品数
  164. 'ProductNum' => Db::name('archives')->where($Awhere)->count(),
  165. // 消费人数
  166. 'OrderUsersNum' => Db::name('shop_order')->where($Swhere)->group('users_id')->count(),
  167. // 充值金额
  168. 'UsersRecharge' => Db::name('users_money')->where($Mwhere)->sum('money'),
  169. // 返回查询时间
  170. 'Start' => date("Y-m-d H:i:s", $param['Start']),
  171. 'End' => date("Y-m-d H:i:s", $param['End'])
  172. ];
  173. if (IS_AJAX_POST) {
  174. $this->success('查询成功!', null, $Return);
  175. } else {
  176. return $Return;
  177. }
  178. }
  179. // 近七日成交量成交额折线图数据
  180. private function GetLineChartData()
  181. {
  182. /*七日内每日起始结束时间戳*/
  183. $Time = [
  184. // 当天
  185. 'ToDaysStart' => strtotime(date("Y-m-d"),time()),
  186. 'ToDaysEnd' => getTime(),
  187. // 昨天
  188. 'YesterDaysStart' => $this->GetTime(1),
  189. 'YesterDaysEnd' => $this->GetTime(1) + 86399,
  190. // 前天
  191. 'AgoDaysStart' => $this->GetTime(2),
  192. 'AgoDaysEnd' => $this->GetTime(2) + 86399,
  193. // 三天前
  194. 'ThreeDaysAgoStart' => $this->GetTime(3),
  195. 'ThreeDaysAgoEnd' => $this->GetTime(3) + 86399,
  196. // 四天前
  197. 'FourDaysAgoStart' => $this->GetTime(4),
  198. 'FourDaysAgoEnd' => $this->GetTime(4) + 86399,
  199. // 五天前
  200. 'FiveDaysAgoStart' => $this->GetTime(5),
  201. 'FiveDaysAgoEnd' => $this->GetTime(5) + 86399,
  202. // 六天前
  203. 'SixDaysAgoStart' => $this->GetTime(6),
  204. 'SixDaysAgoEnd' => $this->GetTime(6) + 86399,
  205. ];
  206. /* END */
  207. $where['order_status'] = ['IN', [1, 2, 3]];
  208. // 六天前
  209. $where['add_time'] = ['between', [$Time['SixDaysAgoStart'], $Time['SixDaysAgoEnd']]];
  210. $Six = $this->GetTimeWhereData($where);
  211. $Six['deal_amount'] = !empty($Six['deal_amount']) ? $Six['deal_amount'] : 0;
  212. // 五天前
  213. $where['add_time'] = ['between', [$Time['FiveDaysAgoStart'], $Time['FiveDaysAgoEnd']]];
  214. $Five = $this->GetTimeWhereData($where);
  215. $Five['deal_amount'] = !empty($Five['deal_amount']) ? $Five['deal_amount'] : 0;
  216. // 四天前
  217. $where['add_time'] = ['between', [$Time['FourDaysAgoStart'], $Time['FourDaysAgoEnd']]];
  218. $Four = $this->GetTimeWhereData($where);
  219. $Four['deal_amount'] = !empty($Four['deal_amount']) ? $Four['deal_amount'] : 0;
  220. // 三天前
  221. $where['add_time'] = ['between', [$Time['ThreeDaysAgoStart'], $Time['ThreeDaysAgoEnd']]];
  222. $Three = $this->GetTimeWhereData($where);
  223. $Three['deal_amount'] = !empty($Three['deal_amount']) ? $Three['deal_amount'] : 0;
  224. // 前天
  225. $where['add_time'] = ['between', [$Time['AgoDaysStart'], $Time['AgoDaysEnd']]];
  226. $Ago = $this->GetTimeWhereData($where);
  227. $Ago['deal_amount'] = !empty($Ago['deal_amount']) ? $Ago['deal_amount'] : 0;
  228. // 昨天
  229. $where['add_time'] = ['between', [$Time['YesterDaysStart'], $Time['YesterDaysEnd']]];
  230. $Yester = $this->GetTimeWhereData($where);
  231. $Yester['deal_amount'] = !empty($Yester['deal_amount']) ? $Yester['deal_amount'] : 0;
  232. // 当天
  233. $where['add_time'] = ['between', [$Time['ToDaysStart'], $Time['ToDaysEnd']]];
  234. $ToDays = $this->GetTimeWhereData($where);
  235. $ToDays['deal_amount'] = !empty($ToDays['deal_amount']) ? $ToDays['deal_amount'] : 0;
  236. $Return = [
  237. 'DealAmount' => [$Six['deal_amount'], $Five['deal_amount'], $Four['deal_amount'], $Three['deal_amount'], $Ago['deal_amount'], $Yester['deal_amount'], $ToDays['deal_amount']],
  238. 'DealNum' => [$Six['deal_num'], $Five['deal_num'], $Four['deal_num'], $Three['deal_num'], $Ago['deal_num'], $Yester['deal_num'], $ToDays['deal_num']]
  239. ];
  240. return $Return;
  241. }
  242. // 获取指定日期下的数据
  243. private function GetTimeWhereData($where = [])
  244. {
  245. $field = 'sum(order_total_amount+shipping_fee) as deal_amount, count(users_id) as deal_num';
  246. $Return = Db::name('shop_order')->field($field)->where($where)->select();
  247. $Return[0]['deal_amount'] = $Return[0]['deal_amount'] ? $Return[0]['deal_amount'] : 0;
  248. $Return[0]['deal_num'] = $Return[0]['deal_num'] ? $Return[0]['deal_num'] : 0;
  249. return $Return[0];
  250. }
  251. // 获取指定日期时间戳
  252. private function GetTime($num = null)
  253. {
  254. $time = strtotime(date("Y-m-d", strtotime("-{$num} day")));
  255. return $time;
  256. }
  257. }