export_statistics.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 处理日期范围
  5. $date_range = isset($_GET['date_range']) ? $_GET['date_range'] : 'current_month';
  6. $custom_start = isset($_GET['start_date']) ? $_GET['start_date'] : '';
  7. $custom_end = isset($_GET['end_date']) ? $_GET['end_date'] : '';
  8. $period = isset($_GET['period']) ? $_GET['period'] : 'day';
  9. // 计算日期范围
  10. $current_month_start = date('Y-m-01');
  11. $current_month_end = date('Y-m-t');
  12. $last_month_start = date('Y-m-01', strtotime('-1 month'));
  13. $last_month_end = date('Y-m-t', strtotime('-1 month'));
  14. $current_year_start = date('Y-01-01');
  15. $current_year_end = date('Y-12-31');
  16. // 设置日期范围
  17. if ($date_range == 'custom' && !empty($custom_start) && !empty($custom_end)) {
  18. $start_date = $custom_start;
  19. $end_date = $custom_end;
  20. } else {
  21. switch ($date_range) {
  22. case 'last_month':
  23. $start_date = $last_month_start;
  24. $end_date = $last_month_end;
  25. break;
  26. case 'current_year':
  27. $start_date = $current_year_start;
  28. $end_date = $current_year_end;
  29. break;
  30. case 'last_30_days':
  31. $start_date = date('Y-m-d', strtotime('-30 days'));
  32. $end_date = date('Y-m-d');
  33. break;
  34. case 'last_90_days':
  35. $start_date = date('Y-m-d', strtotime('-90 days'));
  36. $end_date = date('Y-m-d');
  37. break;
  38. case 'current_month':
  39. default:
  40. $start_date = $current_month_start;
  41. $end_date = $current_month_end;
  42. break;
  43. }
  44. }
  45. // 格式化日期用于SQL查询
  46. $start_date_sql = date('Y-m-d', strtotime($start_date));
  47. $end_date_sql = date('Y-m-d', strtotime($end_date)) . ' 23:59:59';
  48. // 准备导出数据
  49. $data = [];
  50. // 1. 销售概览
  51. $sql = "SELECT
  52. COUNT(id) as total_orders,
  53. SUM(total_amount) as total_revenue,
  54. AVG(total_amount) as avg_order_value
  55. FROM orders
  56. WHERE order_date BETWEEN ? AND ?";
  57. $stmt = $conn->prepare($sql);
  58. $stmt->bind_param("ss", $start_date_sql, $end_date_sql);
  59. $stmt->execute();
  60. $result = $stmt->get_result();
  61. $overview = $result->fetch_assoc();
  62. $data['overview'] = [
  63. ['项目', '数值'],
  64. ['总订单数', $overview['total_orders']],
  65. ['总收入', $overview['total_revenue']],
  66. ['平均订单金额', $overview['avg_order_value']]
  67. ];
  68. // 2. 地区订单分析
  69. $sql = "SELECT
  70. c.countryName,
  71. COUNT(o.id) as order_count,
  72. SUM(o.total_amount) as total_amount,
  73. SUM(oi.quantity) as total_quantity
  74. FROM orders o
  75. JOIN customer cu ON o.customer_id = cu.id
  76. JOIN country c ON cu.cs_country = c.id
  77. LEFT JOIN order_items oi ON o.id = oi.order_id
  78. WHERE o.order_date BETWEEN ? AND ?
  79. GROUP BY cu.cs_country
  80. ORDER BY total_quantity DESC";
  81. $stmt = $conn->prepare($sql);
  82. $stmt->bind_param("ss", $start_date_sql, $end_date_sql);
  83. $stmt->execute();
  84. $result = $stmt->get_result();
  85. $data['region_orders'] = [['国家/地区', '订单数量', '总金额', '产品数量']];
  86. while ($row = $result->fetch_assoc()) {
  87. $data['region_orders'][] = [
  88. $row['countryName'],
  89. $row['order_count'],
  90. $row['total_amount'],
  91. $row['total_quantity']
  92. ];
  93. }
  94. // 3. 详细时间段订单趋势
  95. $groupFormat = '%Y-%m-%d';
  96. $intervalUnit = 'DAY';
  97. if ($period == 'week') {
  98. $groupFormat = '%x-W%v'; // ISO year and week number
  99. $intervalUnit = 'WEEK';
  100. } else if ($period == 'month') {
  101. $groupFormat = '%Y-%m';
  102. $intervalUnit = 'MONTH';
  103. }
  104. $sql = "SELECT
  105. DATE_FORMAT(o.order_date, '$groupFormat') as time_period,
  106. COUNT(o.id) as order_count,
  107. SUM(oi.quantity) as total_quantity,
  108. SUM(o.total_amount) as total_amount
  109. FROM orders o
  110. LEFT JOIN order_items oi ON o.id = oi.order_id
  111. WHERE o.order_date BETWEEN ? AND ?
  112. GROUP BY time_period
  113. ORDER BY MIN(o.order_date)";
  114. $stmt = $conn->prepare($sql);
  115. $stmt->bind_param("ss", $start_date_sql, $end_date_sql);
  116. $stmt->execute();
  117. $result = $stmt->get_result();
  118. $data['time_trend'] = [['时间段', '订单数量', '产品数量', '销售金额']];
  119. while ($row = $result->fetch_assoc()) {
  120. $data['time_trend'][] = [
  121. $row['time_period'],
  122. $row['order_count'],
  123. $row['total_quantity'],
  124. $row['total_amount']
  125. ];
  126. }
  127. // 4. 热门产品
  128. $sql = "SELECT
  129. p.ProductName,
  130. SUM(oi.quantity) as total_quantity,
  131. SUM(oi.total_price) as total_revenue
  132. FROM order_items oi
  133. JOIN products p ON oi.product_id = p.id
  134. JOIN orders o ON oi.order_id = o.id
  135. WHERE o.order_date BETWEEN ? AND ?
  136. GROUP BY oi.product_id
  137. ORDER BY total_revenue DESC
  138. LIMIT 20";
  139. $stmt = $conn->prepare($sql);
  140. $stmt->bind_param("ss", $start_date_sql, $end_date_sql);
  141. $stmt->execute();
  142. $result = $stmt->get_result();
  143. $data['top_products'] = [['产品名称', '销售数量', '销售收入']];
  144. while ($row = $result->fetch_assoc()) {
  145. $data['top_products'][] = [
  146. $row['ProductName'],
  147. $row['total_quantity'],
  148. $row['total_revenue']
  149. ];
  150. }
  151. // 5. 业务员销售业绩
  152. $sql = "SELECT
  153. e.em_user as employee_name,
  154. COUNT(o.id) as order_count,
  155. SUM(o.total_amount) as total_sales,
  156. AVG(o.total_amount) as avg_order_value
  157. FROM orders o
  158. JOIN employee e ON o.employee_id = e.id
  159. WHERE o.order_date BETWEEN ? AND ?
  160. GROUP BY o.employee_id
  161. ORDER BY total_sales DESC";
  162. $stmt = $conn->prepare($sql);
  163. $stmt->bind_param("ss", $start_date_sql, $end_date_sql);
  164. $stmt->execute();
  165. $result = $stmt->get_result();
  166. $data['employee_performance'] = [['业务员', '订单数量', '销售总额', '平均订单金额']];
  167. while ($row = $result->fetch_assoc()) {
  168. $data['employee_performance'][] = [
  169. $row['employee_name'],
  170. $row['order_count'],
  171. $row['total_sales'],
  172. $row['avg_order_value']
  173. ];
  174. }
  175. // 设置适当的响应头,用于Excel导出
  176. header('Content-Type: application/vnd.ms-excel');
  177. header('Content-Disposition: attachment;filename="CRM统计分析_' . date('Y-m-d') . '.xls"');
  178. header('Cache-Control: max-age=0');
  179. ?>
  180. <!DOCTYPE html>
  181. <html>
  182. <head>
  183. <meta charset="UTF-8">
  184. <style>
  185. table {
  186. border-collapse: collapse;
  187. width: 100%;
  188. margin-bottom: 20px;
  189. }
  190. th, td {
  191. border: 1px solid #ddd;
  192. padding: 8px;
  193. text-align: left;
  194. }
  195. th {
  196. background-color: #f2f2f2;
  197. font-weight: bold;
  198. }
  199. h2 {
  200. margin-top: 30px;
  201. margin-bottom: 10px;
  202. }
  203. </style>
  204. </head>
  205. <body>
  206. <h1>CRM统计分析报告</h1>
  207. <p>日期范围: <?php echo $start_date; ?> 至 <?php echo $end_date; ?></p>
  208. <h2>1. 销售概览</h2>
  209. <table>
  210. <?php foreach ($data['overview'] as $row): ?>
  211. <tr>
  212. <?php foreach ($row as $cell): ?>
  213. <td><?php echo $cell; ?></td>
  214. <?php endforeach; ?>
  215. </tr>
  216. <?php endforeach; ?>
  217. </table>
  218. <h2>2. 地区订单分析</h2>
  219. <table>
  220. <?php foreach ($data['region_orders'] as $index => $row): ?>
  221. <tr>
  222. <?php foreach ($row as $cell): ?>
  223. <?php if ($index === 0): ?>
  224. <th><?php echo $cell; ?></th>
  225. <?php else: ?>
  226. <td><?php echo $cell; ?></td>
  227. <?php endif; ?>
  228. <?php endforeach; ?>
  229. </tr>
  230. <?php endforeach; ?>
  231. </table>
  232. <h2>3. <?php echo $period == 'day' ? '每日' : ($period == 'week' ? '每周' : '每月'); ?>订单趋势</h2>
  233. <table>
  234. <?php foreach ($data['time_trend'] as $index => $row): ?>
  235. <tr>
  236. <?php foreach ($row as $cell): ?>
  237. <?php if ($index === 0): ?>
  238. <th><?php echo $cell; ?></th>
  239. <?php else: ?>
  240. <td><?php echo $cell; ?></td>
  241. <?php endif; ?>
  242. <?php endforeach; ?>
  243. </tr>
  244. <?php endforeach; ?>
  245. </table>
  246. <h2>4. 热门产品</h2>
  247. <table>
  248. <?php foreach ($data['top_products'] as $index => $row): ?>
  249. <tr>
  250. <?php foreach ($row as $cell): ?>
  251. <?php if ($index === 0): ?>
  252. <th><?php echo $cell; ?></th>
  253. <?php else: ?>
  254. <td><?php echo $cell; ?></td>
  255. <?php endif; ?>
  256. <?php endforeach; ?>
  257. </tr>
  258. <?php endforeach; ?>
  259. </table>
  260. <h2>5. 业务员销售业绩</h2>
  261. <table>
  262. <?php foreach ($data['employee_performance'] as $index => $row): ?>
  263. <tr>
  264. <?php foreach ($row as $cell): ?>
  265. <?php if ($index === 0): ?>
  266. <th><?php echo $cell; ?></th>
  267. <?php else: ?>
  268. <td><?php echo $cell; ?></td>
  269. <?php endif; ?>
  270. <?php endforeach; ?>
  271. </tr>
  272. <?php endforeach; ?>
  273. </table>
  274. </body>
  275. </html>