statistics.php 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 计算日期范围
  5. $current_month_start = date('Y-m-01');
  6. $current_month_end = date('Y-m-t');
  7. $last_month_start = date('Y-m-01', strtotime('-1 month'));
  8. $last_month_end = date('Y-m-t', strtotime('-1 month'));
  9. $current_year_start = date('Y-01-01');
  10. $current_year_end = date('Y-12-31');
  11. // 可选的日期范围筛选
  12. $date_range = isset($_GET['date_range']) ? $_GET['date_range'] : 'current_month';
  13. $custom_start = isset($_GET['start_date']) ? $_GET['start_date'] : '';
  14. $custom_end = isset($_GET['end_date']) ? $_GET['end_date'] : '';
  15. // 设置日期范围
  16. if ($date_range == 'custom' && !empty($custom_start) && !empty($custom_end)) {
  17. $start_date = $custom_start;
  18. $end_date = $custom_end;
  19. } else {
  20. switch ($date_range) {
  21. case 'last_month':
  22. $start_date = $last_month_start;
  23. $end_date = $last_month_end;
  24. break;
  25. case 'current_year':
  26. $start_date = $current_year_start;
  27. $end_date = $current_year_end;
  28. break;
  29. case 'last_30_days':
  30. $start_date = date('Y-m-d', strtotime('-30 days'));
  31. $end_date = date('Y-m-d');
  32. break;
  33. case 'last_90_days':
  34. $start_date = date('Y-m-d', strtotime('-90 days'));
  35. $end_date = date('Y-m-d');
  36. break;
  37. case 'current_month':
  38. default:
  39. $start_date = $current_month_start;
  40. $end_date = $current_month_end;
  41. break;
  42. }
  43. }
  44. // 格式化日期用于SQL查询
  45. $start_date_sql = date('Y-m-d', strtotime($start_date));
  46. $end_date_sql = date('Y-m-d', strtotime($end_date)) . ' 23:59:59';
  47. // 函数:获取销售概览数据
  48. function getSalesOverview($conn, $start_date, $end_date) {
  49. $sql = "SELECT
  50. COUNT(id) as total_orders,
  51. SUM(total_amount) as total_revenue,
  52. AVG(total_amount) as avg_order_value
  53. FROM orders
  54. WHERE order_date BETWEEN ? AND ?";
  55. $stmt = $conn->prepare($sql);
  56. $stmt->bind_param("ss", $start_date, $end_date);
  57. $stmt->execute();
  58. $result = $stmt->get_result();
  59. return $result->fetch_assoc();
  60. }
  61. // 函数:获取每月销售趋势
  62. function getMonthlySalesTrend($conn, $start_date, $end_date) {
  63. $sql = "SELECT
  64. DATE_FORMAT(order_date, '%Y-%m') as month,
  65. COUNT(id) as orders,
  66. SUM(total_amount) as revenue
  67. FROM orders
  68. WHERE order_date BETWEEN ? AND ?
  69. GROUP BY DATE_FORMAT(order_date, '%Y-%m')
  70. ORDER BY month";
  71. $stmt = $conn->prepare($sql);
  72. $stmt->bind_param("ss", $start_date, $end_date);
  73. $stmt->execute();
  74. return $stmt->get_result();
  75. }
  76. // 函数:获取客户国家分布
  77. function getCustomerCountryDistribution($conn) {
  78. $sql = "SELECT
  79. c.countryName,
  80. COUNT(cu.id) as customer_count
  81. FROM customer cu
  82. JOIN country c ON cu.cs_country = c.id
  83. GROUP BY cu.cs_country
  84. ORDER BY customer_count DESC
  85. LIMIT 10";
  86. return $conn->query($sql);
  87. }
  88. // 函数:获取客户类型分布
  89. function getCustomerTypeDistribution($conn) {
  90. $sql = "SELECT
  91. ct.businessType,
  92. COUNT(c.id) as customer_count
  93. FROM customer c
  94. JOIN clienttype ct ON c.cs_type = ct.id
  95. GROUP BY c.cs_type";
  96. return $conn->query($sql);
  97. }
  98. // 函数:获取成交阶段分布
  99. function getDealStageDistribution($conn) {
  100. $sql = "SELECT
  101. cs_deal,
  102. CASE
  103. WHEN cs_deal = 1 THEN '背景调查'
  104. WHEN cs_deal = 2 THEN '明确需求'
  105. WHEN cs_deal = 3 THEN '已成交'
  106. ELSE '其他'
  107. END as stage_name,
  108. COUNT(id) as customer_count
  109. FROM customer
  110. GROUP BY cs_deal";
  111. return $conn->query($sql);
  112. }
  113. // 函数:获取热门产品
  114. function getTopProducts($conn, $start_date, $end_date, $limit = 5) {
  115. $sql = "SELECT
  116. p.ProductName,
  117. SUM(oi.quantity) as total_quantity,
  118. SUM(oi.total_price) as total_revenue
  119. FROM order_items oi
  120. JOIN products p ON oi.product_id = p.id
  121. JOIN orders o ON oi.order_id = o.id
  122. WHERE o.order_date BETWEEN ? AND ?
  123. GROUP BY oi.product_id
  124. ORDER BY total_revenue DESC
  125. LIMIT ?";
  126. $stmt = $conn->prepare($sql);
  127. $stmt->bind_param("ssi", $start_date, $end_date, $limit);
  128. $stmt->execute();
  129. return $stmt->get_result();
  130. }
  131. // 函数:获取业务员销售业绩
  132. function getEmployeeSalesPerformance($conn, $start_date, $end_date) {
  133. $sql = "SELECT
  134. e.em_user as employee_name,
  135. COUNT(o.id) as order_count,
  136. SUM(o.total_amount) as total_sales
  137. FROM orders o
  138. JOIN employee e ON o.employee_id = e.id
  139. WHERE o.order_date BETWEEN ? AND ?
  140. GROUP BY o.employee_id
  141. ORDER BY total_sales DESC";
  142. $stmt = $conn->prepare($sql);
  143. $stmt->bind_param("ss", $start_date, $end_date);
  144. $stmt->execute();
  145. return $stmt->get_result();
  146. }
  147. // 函数:获取客户增长趋势
  148. function getCustomerGrowthTrend($conn) {
  149. $sql = "SELECT
  150. DATE_FORMAT(cs_addtime, '%Y-%m') as month,
  151. COUNT(id) as new_customers
  152. FROM customer
  153. WHERE cs_addtime >= DATE_SUB(CURDATE(), INTERVAL 12 MONTH)
  154. GROUP BY DATE_FORMAT(cs_addtime, '%Y-%m')
  155. ORDER BY month";
  156. return $conn->query($sql);
  157. }
  158. // 函数:获取不同地区的订单数量
  159. function getOrdersByRegion($conn, $start_date, $end_date) {
  160. $sql = "SELECT
  161. c.countryName,
  162. COUNT(o.id) as order_count,
  163. SUM(o.total_amount) as total_amount,
  164. SUM(oi.quantity) as total_quantity
  165. FROM orders o
  166. JOIN customer cu ON o.customer_id = cu.id
  167. JOIN country c ON cu.cs_country = c.id
  168. LEFT JOIN order_items oi ON o.id = oi.order_id
  169. WHERE o.order_date BETWEEN ? AND ?
  170. GROUP BY cu.cs_country
  171. ORDER BY total_quantity DESC
  172. LIMIT 10";
  173. $stmt = $conn->prepare($sql);
  174. $stmt->bind_param("ss", $start_date, $end_date);
  175. $stmt->execute();
  176. return $stmt->get_result();
  177. }
  178. // 函数:获取详细时间段订单数量
  179. function getDetailedOrderTrend($conn, $start_date, $end_date, $period = 'day') {
  180. $groupFormat = '%Y-%m-%d';
  181. $intervalUnit = 'DAY';
  182. if ($period == 'week') {
  183. $groupFormat = '%x-W%v'; // ISO year and week number
  184. $intervalUnit = 'WEEK';
  185. } else if ($period == 'month') {
  186. $groupFormat = '%Y-%m';
  187. $intervalUnit = 'MONTH';
  188. }
  189. $sql = "SELECT
  190. DATE_FORMAT(o.order_date, '$groupFormat') as time_period,
  191. COUNT(o.id) as order_count,
  192. SUM(oi.quantity) as total_quantity
  193. FROM orders o
  194. LEFT JOIN order_items oi ON o.id = oi.order_id
  195. WHERE o.order_date BETWEEN ? AND ?
  196. GROUP BY time_period
  197. ORDER BY MIN(o.order_date)";
  198. $stmt = $conn->prepare($sql);
  199. $stmt->bind_param("ss", $start_date, $end_date);
  200. $stmt->execute();
  201. return $stmt->get_result();
  202. }
  203. // 获取统计数据
  204. $sales_overview = getSalesOverview($conn, $start_date_sql, $end_date_sql);
  205. $monthly_sales = getMonthlySalesTrend($conn, $start_date_sql, $end_date_sql);
  206. $country_distribution = getCustomerCountryDistribution($conn);
  207. $customer_types = getCustomerTypeDistribution($conn);
  208. $deal_stages = getDealStageDistribution($conn);
  209. $top_products = getTopProducts($conn, $start_date_sql, $end_date_sql);
  210. $employee_performance = getEmployeeSalesPerformance($conn, $start_date_sql, $end_date_sql);
  211. $customer_growth = getCustomerGrowthTrend($conn);
  212. $orders_by_region = getOrdersByRegion($conn, $start_date_sql, $end_date_sql);
  213. // 获取详细时间段订单趋势 - 默认按日期
  214. $period = isset($_GET['period']) ? $_GET['period'] : 'day';
  215. $detailed_orders = getDetailedOrderTrend($conn, $start_date_sql, $end_date_sql, $period);
  216. // 将月度销售数据转换为图表所需格式
  217. $monthly_labels = [];
  218. $monthly_orders = [];
  219. $monthly_revenue = [];
  220. while ($row = $monthly_sales->fetch_assoc()) {
  221. $monthly_labels[] = $row['month'];
  222. $monthly_orders[] = $row['orders'];
  223. $monthly_revenue[] = $row['revenue'];
  224. }
  225. // 将国家分布数据转换为图表所需格式
  226. $country_labels = [];
  227. $country_data = [];
  228. while ($row = $country_distribution->fetch_assoc()) {
  229. $country_labels[] = $row['countryName'];
  230. $country_data[] = $row['customer_count'];
  231. }
  232. // 将客户类型数据转换为图表所需格式
  233. $type_labels = [];
  234. $type_data = [];
  235. while ($row = $customer_types->fetch_assoc()) {
  236. $type_labels[] = $row['businessType'];
  237. $type_data[] = $row['customer_count'];
  238. }
  239. // 将成交阶段数据转换为图表所需格式
  240. $stage_labels = [];
  241. $stage_data = [];
  242. while ($row = $deal_stages->fetch_assoc()) {
  243. $stage_labels[] = $row['stage_name'];
  244. $stage_data[] = $row['customer_count'];
  245. }
  246. // 将客户增长数据转换为图表所需格式
  247. $growth_labels = [];
  248. $growth_data = [];
  249. while ($row = $customer_growth->fetch_assoc()) {
  250. $growth_labels[] = $row['month'];
  251. $growth_data[] = $row['new_customers'];
  252. }
  253. // 将地区订单数据转换为图表所需格式
  254. $region_labels = [];
  255. $region_orders = [];
  256. $region_quantities = [];
  257. while ($row = $orders_by_region->fetch_assoc()) {
  258. $region_labels[] = $row['countryName'];
  259. $region_orders[] = $row['order_count'];
  260. $region_quantities[] = $row['total_quantity'];
  261. }
  262. // 将详细时间订单数据转换为图表所需格式
  263. $time_labels = [];
  264. $time_orders = [];
  265. $time_quantities = [];
  266. while ($row = $detailed_orders->fetch_assoc()) {
  267. $time_labels[] = $row['time_period'];
  268. $time_orders[] = $row['order_count'];
  269. $time_quantities[] = $row['total_quantity'];
  270. }
  271. ?>
  272. <!DOCTYPE html>
  273. <html xmlns="http://www.w3.org/1999/xhtml">
  274. <head>
  275. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  276. <title>统计分析</title>
  277. <link rel="stylesheet" href="css/common.css" type="text/css" />
  278. <script src="system/js/jquery-1.7.2.min.js"></script>
  279. <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
  280. <style>
  281. body {
  282. margin: 0;
  283. padding: 20px;
  284. background: #fff;
  285. font-family: Arial, sans-serif;
  286. }
  287. .container {
  288. width: 100%;
  289. max-width: 1200px;
  290. margin: 0 auto;
  291. }
  292. .page-header {
  293. margin-bottom: 20px;
  294. border-bottom: 1px solid #eee;
  295. padding-bottom: 10px;
  296. display: flex;
  297. justify-content: space-between;
  298. align-items: center;
  299. }
  300. .page-title {
  301. font-size: 24px;
  302. font-weight: bold;
  303. color: #333;
  304. margin: 0;
  305. }
  306. .export-btn {
  307. padding: 8px 15px;
  308. background: #4CAF50;
  309. color: white;
  310. border: none;
  311. border-radius: 4px;
  312. cursor: pointer;
  313. text-decoration: none;
  314. display: inline-block;
  315. }
  316. .export-btn:hover {
  317. background: #45a049;
  318. }
  319. .filter-form {
  320. background: #f9f9f9;
  321. padding: 15px;
  322. border-radius: 5px;
  323. margin-bottom: 20px;
  324. display: flex;
  325. flex-wrap: wrap;
  326. gap: 15px;
  327. align-items: center;
  328. }
  329. .form-group {
  330. margin-right: 15px;
  331. }
  332. .form-group label {
  333. display: block;
  334. margin-bottom: 5px;
  335. font-weight: bold;
  336. }
  337. .form-control {
  338. padding: 8px;
  339. border: 1px solid #ddd;
  340. border-radius: 4px;
  341. min-width: 150px;
  342. }
  343. .btn {
  344. padding: 8px 15px;
  345. background: #337ab7;
  346. color: white;
  347. border: none;
  348. border-radius: 4px;
  349. cursor: pointer;
  350. }
  351. .btn:hover {
  352. background: #286090;
  353. }
  354. .stats-grid {
  355. display: grid;
  356. grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  357. gap: 20px;
  358. margin-bottom: 20px;
  359. }
  360. .stat-card {
  361. background: white;
  362. border-radius: 5px;
  363. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  364. padding: 20px;
  365. }
  366. .stat-card h3 {
  367. margin-top: 0;
  368. color: #555;
  369. font-size: 16px;
  370. border-bottom: 1px solid #eee;
  371. padding-bottom: 10px;
  372. }
  373. .stat-value {
  374. font-size: 24px;
  375. font-weight: bold;
  376. color: #333;
  377. margin: 15px 0;
  378. }
  379. .chart-container {
  380. margin-bottom: 30px;
  381. background: white;
  382. border-radius: 5px;
  383. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  384. padding: 20px;
  385. }
  386. .chart-header {
  387. display: flex;
  388. justify-content: space-between;
  389. align-items: center;
  390. margin-bottom: 15px;
  391. }
  392. .chart-title {
  393. font-size: 18px;
  394. font-weight: bold;
  395. color: #333;
  396. margin: 0;
  397. }
  398. .data-table {
  399. width: 100%;
  400. border-collapse: collapse;
  401. margin-top: 20px;
  402. }
  403. .data-table th, .data-table td {
  404. padding: 10px;
  405. text-align: left;
  406. border-bottom: 1px solid #eee;
  407. }
  408. .data-table th {
  409. background: #f5f5f5;
  410. font-weight: bold;
  411. }
  412. .data-table tr:hover {
  413. background: #f9f9f9;
  414. }
  415. .custom-date-inputs {
  416. display: none;
  417. }
  418. #date_range[value="custom"]:checked ~ .custom-date-inputs {
  419. display: block;
  420. }
  421. .download-btn {
  422. padding: 5px 10px;
  423. background: #4CAF50;
  424. color: white;
  425. border: none;
  426. border-radius: 3px;
  427. font-size: 14px;
  428. cursor: pointer;
  429. }
  430. .download-btn:hover {
  431. background: #45a049;
  432. }
  433. </style>
  434. </head>
  435. <body>
  436. <div class="container">
  437. <div class="page-header">
  438. <h1 class="page-title">统计分析</h1>
  439. <a href="export_statistics.php?date_range=<?php echo $date_range; ?>&start_date=<?php echo $custom_start; ?>&end_date=<?php echo $custom_end; ?>&period=<?php echo $period; ?>" class="export-btn">导出数据</a>
  440. </div>
  441. <div class="filter-form">
  442. <form method="get" action="">
  443. <div class="form-group">
  444. <label>日期范围</label>
  445. <select name="date_range" id="date_range" class="form-control" onchange="toggleCustomDates()">
  446. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  447. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  448. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>过去30天</option>
  449. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>过去90天</option>
  450. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  451. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义</option>
  452. </select>
  453. </div>
  454. <div id="custom_dates" style="display: <?php echo $date_range == 'custom' ? 'flex' : 'none'; ?>; gap: 10px;">
  455. <div class="form-group">
  456. <label>开始日期</label>
  457. <input type="date" name="start_date" class="form-control" value="<?php echo $custom_start; ?>">
  458. </div>
  459. <div class="form-group">
  460. <label>结束日期</label>
  461. <input type="date" name="end_date" class="form-control" value="<?php echo $custom_end; ?>">
  462. </div>
  463. </div>
  464. <div class="form-group">
  465. <label>时间粒度</label>
  466. <select name="period" class="form-control">
  467. <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>按日</option>
  468. <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>按周</option>
  469. <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>按月</option>
  470. </select>
  471. </div>
  472. <div class="form-group" style="align-self: flex-end;">
  473. <input type="submit" class="btn" value="应用筛选">
  474. </div>
  475. </form>
  476. </div>
  477. <!-- 销售概览卡片 -->
  478. <div class="stats-grid">
  479. <div class="stat-card">
  480. <h3>总订单数</h3>
  481. <div class="stat-value"><?php echo number_format($sales_overview['total_orders']); ?></div>
  482. </div>
  483. <div class="stat-card">
  484. <h3>总收入</h3>
  485. <div class="stat-value">¥<?php echo number_format($sales_overview['total_revenue'], 2); ?></div>
  486. </div>
  487. <div class="stat-card">
  488. <h3>平均订单金额</h3>
  489. <div class="stat-value">¥<?php echo number_format($sales_overview['avg_order_value'], 2); ?></div>
  490. </div>
  491. </div>
  492. <!-- 月度销售趋势图 -->
  493. <div class="chart-container">
  494. <div class="chart-header">
  495. <h2 class="chart-title">销售趋势</h2>
  496. </div>
  497. <canvas id="salesTrendChart"></canvas>
  498. </div>
  499. <!-- 客户分布图 -->
  500. <div class="stats-grid">
  501. <div class="chart-container">
  502. <div class="chart-header">
  503. <h2 class="chart-title">客户国家分布</h2>
  504. </div>
  505. <canvas id="countryDistributionChart"></canvas>
  506. </div>
  507. <div class="chart-container">
  508. <div class="chart-header">
  509. <h2 class="chart-title">客户类型分布</h2>
  510. </div>
  511. <canvas id="customerTypeChart"></canvas>
  512. </div>
  513. </div>
  514. <div class="stats-grid">
  515. <div class="chart-container">
  516. <div class="chart-header">
  517. <h2 class="chart-title">成交阶段分布</h2>
  518. </div>
  519. <canvas id="dealStageChart"></canvas>
  520. </div>
  521. <div class="chart-container">
  522. <div class="chart-header">
  523. <h2 class="chart-title">客户增长趋势</h2>
  524. </div>
  525. <canvas id="customerGrowthChart"></canvas>
  526. </div>
  527. </div>
  528. <!-- 地区订单分析 -->
  529. <div class="chart-container">
  530. <div class="chart-header">
  531. <h2 class="chart-title">地区订单分析</h2>
  532. </div>
  533. <canvas id="regionOrdersChart"></canvas>
  534. </div>
  535. <!-- 详细时间段订单趋势 -->
  536. <div class="chart-container">
  537. <div class="chart-header">
  538. <h2 class="chart-title">详细订单趋势 (<?php echo $period == 'day' ? '日' : ($period == 'week' ? '周' : '月'); ?>)</h2>
  539. </div>
  540. <canvas id="detailedOrdersChart"></canvas>
  541. </div>
  542. <!-- 热门产品表格 -->
  543. <div class="chart-container">
  544. <div class="chart-header">
  545. <h2 class="chart-title">热门产品</h2>
  546. </div>
  547. <table class="data-table">
  548. <thead>
  549. <tr>
  550. <th>产品名称</th>
  551. <th>销售数量</th>
  552. <th>销售收入</th>
  553. </tr>
  554. </thead>
  555. <tbody>
  556. <?php while ($row = $top_products->fetch_assoc()): ?>
  557. <tr>
  558. <td><?php echo htmlspecialchars($row['ProductName']); ?></td>
  559. <td><?php echo number_format($row['total_quantity']); ?></td>
  560. <td>¥<?php echo number_format($row['total_revenue'], 2); ?></td>
  561. </tr>
  562. <?php endwhile; ?>
  563. </tbody>
  564. </table>
  565. </div>
  566. <!-- 业务员销售业绩表格 -->
  567. <div class="chart-container">
  568. <div class="chart-header">
  569. <h2 class="chart-title">业务员销售业绩</h2>
  570. </div>
  571. <table class="data-table">
  572. <thead>
  573. <tr>
  574. <th>业务员姓名</th>
  575. <th>订单数量</th>
  576. <th>销售总额</th>
  577. </tr>
  578. </thead>
  579. <tbody>
  580. <?php while ($row = $employee_performance->fetch_assoc()): ?>
  581. <tr>
  582. <td><?php echo htmlspecialchars($row['employee_name']); ?></td>
  583. <td><?php echo number_format($row['order_count']); ?></td>
  584. <td>¥<?php echo number_format($row['total_sales'], 2); ?></td>
  585. </tr>
  586. <?php endwhile; ?>
  587. </tbody>
  588. </table>
  589. </div>
  590. </div>
  591. <script>
  592. // 切换自定义日期区域显示
  593. function toggleCustomDates() {
  594. var dateRange = document.getElementById('date_range').value;
  595. var customDates = document.getElementById('custom_dates');
  596. if (dateRange === 'custom') {
  597. customDates.style.display = 'flex';
  598. } else {
  599. customDates.style.display = 'none';
  600. }
  601. }
  602. // 销售趋势图
  603. var salesTrendCtx = document.getElementById('salesTrendChart').getContext('2d');
  604. var salesTrendChart = new Chart(salesTrendCtx, {
  605. type: 'line',
  606. data: {
  607. labels: <?php echo json_encode($monthly_labels); ?>,
  608. datasets: [
  609. {
  610. label: '订单数量',
  611. data: <?php echo json_encode($monthly_orders); ?>,
  612. backgroundColor: 'rgba(54, 162, 235, 0.2)',
  613. borderColor: 'rgba(54, 162, 235, 1)',
  614. borderWidth: 2,
  615. yAxisID: 'y-orders'
  616. },
  617. {
  618. label: '销售收入',
  619. data: <?php echo json_encode($monthly_revenue); ?>,
  620. backgroundColor: 'rgba(255, 99, 132, 0.2)',
  621. borderColor: 'rgba(255, 99, 132, 1)',
  622. borderWidth: 2,
  623. yAxisID: 'y-revenue'
  624. }
  625. ]
  626. },
  627. options: {
  628. responsive: true,
  629. scales: {
  630. 'y-orders': {
  631. type: 'linear',
  632. position: 'left',
  633. title: {
  634. display: true,
  635. text: '订单数量'
  636. }
  637. },
  638. 'y-revenue': {
  639. type: 'linear',
  640. position: 'right',
  641. title: {
  642. display: true,
  643. text: '销售收入'
  644. },
  645. grid: {
  646. drawOnChartArea: false
  647. }
  648. }
  649. }
  650. }
  651. });
  652. // 客户国家分布图
  653. var countryDistributionCtx = document.getElementById('countryDistributionChart').getContext('2d');
  654. var countryDistributionChart = new Chart(countryDistributionCtx, {
  655. type: 'pie',
  656. data: {
  657. labels: <?php echo json_encode($country_labels); ?>,
  658. datasets: [{
  659. data: <?php echo json_encode($country_data); ?>,
  660. backgroundColor: [
  661. 'rgba(255, 99, 132, 0.7)',
  662. 'rgba(54, 162, 235, 0.7)',
  663. 'rgba(255, 206, 86, 0.7)',
  664. 'rgba(75, 192, 192, 0.7)',
  665. 'rgba(153, 102, 255, 0.7)',
  666. 'rgba(255, 159, 64, 0.7)',
  667. 'rgba(199, 199, 199, 0.7)',
  668. 'rgba(83, 102, 255, 0.7)',
  669. 'rgba(40, 159, 64, 0.7)',
  670. 'rgba(210, 199, 199, 0.7)'
  671. ],
  672. borderWidth: 1
  673. }]
  674. },
  675. options: {
  676. responsive: true,
  677. plugins: {
  678. legend: {
  679. position: 'right',
  680. }
  681. }
  682. }
  683. });
  684. // 客户类型分布图
  685. var customerTypeCtx = document.getElementById('customerTypeChart').getContext('2d');
  686. var customerTypeChart = new Chart(customerTypeCtx, {
  687. type: 'doughnut',
  688. data: {
  689. labels: <?php echo json_encode($type_labels); ?>,
  690. datasets: [{
  691. data: <?php echo json_encode($type_data); ?>,
  692. backgroundColor: [
  693. 'rgba(54, 162, 235, 0.7)',
  694. 'rgba(255, 99, 132, 0.7)',
  695. 'rgba(255, 206, 86, 0.7)',
  696. 'rgba(75, 192, 192, 0.7)',
  697. 'rgba(153, 102, 255, 0.7)'
  698. ],
  699. borderWidth: 1
  700. }]
  701. },
  702. options: {
  703. responsive: true,
  704. plugins: {
  705. legend: {
  706. position: 'right',
  707. }
  708. }
  709. }
  710. });
  711. // 成交阶段分布图
  712. var dealStageCtx = document.getElementById('dealStageChart').getContext('2d');
  713. var dealStageChart = new Chart(dealStageCtx, {
  714. type: 'bar',
  715. data: {
  716. labels: <?php echo json_encode($stage_labels); ?>,
  717. datasets: [{
  718. label: '客户数量',
  719. data: <?php echo json_encode($stage_data); ?>,
  720. backgroundColor: [
  721. 'rgba(255, 206, 86, 0.7)',
  722. 'rgba(54, 162, 235, 0.7)',
  723. 'rgba(255, 99, 132, 0.7)'
  724. ],
  725. borderWidth: 1
  726. }]
  727. },
  728. options: {
  729. responsive: true,
  730. scales: {
  731. y: {
  732. beginAtZero: true,
  733. title: {
  734. display: true,
  735. text: '客户数量'
  736. }
  737. }
  738. }
  739. }
  740. });
  741. // 客户增长趋势图
  742. var customerGrowthCtx = document.getElementById('customerGrowthChart').getContext('2d');
  743. var customerGrowthChart = new Chart(customerGrowthCtx, {
  744. type: 'line',
  745. data: {
  746. labels: <?php echo json_encode($growth_labels); ?>,
  747. datasets: [{
  748. label: '新增客户',
  749. data: <?php echo json_encode($growth_data); ?>,
  750. backgroundColor: 'rgba(75, 192, 192, 0.2)',
  751. borderColor: 'rgba(75, 192, 192, 1)',
  752. borderWidth: 2,
  753. tension: 0.1
  754. }]
  755. },
  756. options: {
  757. responsive: true,
  758. scales: {
  759. y: {
  760. beginAtZero: true,
  761. title: {
  762. display: true,
  763. text: '客户数量'
  764. }
  765. }
  766. }
  767. }
  768. });
  769. // 地区订单分析图
  770. var regionOrdersCtx = document.getElementById('regionOrdersChart').getContext('2d');
  771. var regionOrdersChart = new Chart(regionOrdersCtx, {
  772. type: 'bar',
  773. data: {
  774. labels: <?php echo json_encode($region_labels); ?>,
  775. datasets: [
  776. {
  777. label: '订单数量',
  778. data: <?php echo json_encode($region_orders); ?>,
  779. backgroundColor: 'rgba(54, 162, 235, 0.6)',
  780. borderColor: 'rgba(54, 162, 235, 1)',
  781. borderWidth: 1,
  782. yAxisID: 'y-orders'
  783. },
  784. {
  785. label: '产品订购数量',
  786. data: <?php echo json_encode($region_quantities); ?>,
  787. backgroundColor: 'rgba(255, 99, 132, 0.6)',
  788. borderColor: 'rgba(255, 99, 132, 1)',
  789. borderWidth: 1,
  790. yAxisID: 'y-quantity'
  791. }
  792. ]
  793. },
  794. options: {
  795. responsive: true,
  796. scales: {
  797. x: {
  798. title: {
  799. display: true,
  800. text: '地区'
  801. }
  802. },
  803. 'y-orders': {
  804. type: 'linear',
  805. position: 'left',
  806. title: {
  807. display: true,
  808. text: '订单数量'
  809. },
  810. beginAtZero: true
  811. },
  812. 'y-quantity': {
  813. type: 'linear',
  814. position: 'right',
  815. title: {
  816. display: true,
  817. text: '产品订购数量'
  818. },
  819. beginAtZero: true,
  820. grid: {
  821. drawOnChartArea: false
  822. }
  823. }
  824. }
  825. }
  826. });
  827. // 详细时间段订单趋势图
  828. var detailedOrdersCtx = document.getElementById('detailedOrdersChart').getContext('2d');
  829. var detailedOrdersChart = new Chart(detailedOrdersCtx, {
  830. type: 'line',
  831. data: {
  832. labels: <?php echo json_encode($time_labels); ?>,
  833. datasets: [
  834. {
  835. label: '订单数量',
  836. data: <?php echo json_encode($time_orders); ?>,
  837. backgroundColor: 'rgba(75, 192, 192, 0.2)',
  838. borderColor: 'rgba(75, 192, 192, 1)',
  839. borderWidth: 2,
  840. yAxisID: 'y-orders',
  841. tension: 0.1
  842. },
  843. {
  844. label: '产品订购数量',
  845. data: <?php echo json_encode($time_quantities); ?>,
  846. backgroundColor: 'rgba(255, 159, 64, 0.2)',
  847. borderColor: 'rgba(255, 159, 64, 1)',
  848. borderWidth: 2,
  849. yAxisID: 'y-quantity',
  850. tension: 0.1
  851. }
  852. ]
  853. },
  854. options: {
  855. responsive: true,
  856. scales: {
  857. x: {
  858. title: {
  859. display: true,
  860. text: '时间'
  861. }
  862. },
  863. 'y-orders': {
  864. type: 'linear',
  865. position: 'left',
  866. title: {
  867. display: true,
  868. text: '订单数量'
  869. },
  870. beginAtZero: true
  871. },
  872. 'y-quantity': {
  873. type: 'linear',
  874. position: 'right',
  875. title: {
  876. display: true,
  877. text: '产品订购数量'
  878. },
  879. beginAtZero: true,
  880. grid: {
  881. drawOnChartArea: false
  882. }
  883. }
  884. }
  885. }
  886. });
  887. </script>
  888. </body>
  889. </html>