sales_stats.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. <?php
  2. /**
  3. * 销售统计分析展示页面
  4. */
  5. require_once 'conn.php';
  6. require_once 'statistics_utils.php';
  7. require_once 'statistics_sales.php';
  8. // Helper functions for formatting
  9. function formatCurrency($value) {
  10. return '¥' . number_format($value ?? 0, 2);
  11. }
  12. // 检查登录状态
  13. if (!isset($_SESSION['employee_id'])) {
  14. checkLogin();
  15. }
  16. // 获取日期范围参数
  17. $date_params = getDateRangeParams();
  18. $start_date = $date_params['start_date_sql'];
  19. $end_date = $date_params['end_date_sql'];
  20. $date_range = $date_params['date_range'];
  21. $period = $date_params['period'];
  22. // 获取选中的业务员ID
  23. $selected_employee = isset($_GET['employee_id']) ? intval($_GET['employee_id']) : 0;
  24. // 获取所有业务员列表
  25. $employees = getAllEmployees($conn);
  26. // 页面头部
  27. include('statistics_header.php');
  28. ?>
  29. <style>
  30. .container {
  31. max-width: 1200px;
  32. margin: 0 auto;
  33. padding: 20px;
  34. }
  35. .page-header {
  36. margin-bottom: 30px;
  37. }
  38. .page-title {
  39. font-size: 24px;
  40. color: #333;
  41. margin: 0;
  42. }
  43. .filter-form {
  44. background: #f5f5f5;
  45. padding: 20px;
  46. border-radius: 8px;
  47. margin-bottom: 30px;
  48. }
  49. .filter-form-inline {
  50. display: flex;
  51. flex-wrap: wrap;
  52. gap: 15px;
  53. align-items: flex-end;
  54. }
  55. .form-group {
  56. margin-bottom: 10px;
  57. }
  58. .form-group label {
  59. display: block;
  60. margin-bottom: 5px;
  61. color: #666;
  62. }
  63. .form-control {
  64. padding: 8px 12px;
  65. border: 1px solid #ddd;
  66. border-radius: 4px;
  67. font-size: 14px;
  68. }
  69. .btn {
  70. background: #4a90e2;
  71. color: white;
  72. padding: 8px 16px;
  73. border: none;
  74. border-radius: 4px;
  75. cursor: pointer;
  76. }
  77. .btn:hover {
  78. background: #357abd;
  79. }
  80. .chart-container {
  81. background: white;
  82. border-radius: 8px;
  83. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  84. padding: 20px;
  85. margin-bottom: 30px;
  86. }
  87. .chart-header {
  88. margin-bottom: 20px;
  89. }
  90. .chart-title {
  91. font-size: 18px;
  92. color: #333;
  93. margin: 0;
  94. }
  95. .stats-grid {
  96. display: grid;
  97. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  98. gap: 20px;
  99. margin-bottom: 30px;
  100. }
  101. .stat-card {
  102. background: white;
  103. padding: 20px;
  104. border-radius: 8px;
  105. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  106. text-align: center;
  107. }
  108. .stat-card h3 {
  109. font-size: 16px;
  110. color: #666;
  111. margin: 0 0 10px 0;
  112. }
  113. .stat-value {
  114. font-size: 24px;
  115. color: #4a90e2;
  116. font-weight: bold;
  117. }
  118. .analysis-grid {
  119. display: grid;
  120. grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  121. gap: 20px;
  122. margin-bottom: 30px;
  123. }
  124. .table-responsive {
  125. overflow-x: auto;
  126. }
  127. .data-table {
  128. width: 100%;
  129. border-collapse: collapse;
  130. }
  131. .data-table th,
  132. .data-table td {
  133. padding: 12px;
  134. text-align: left;
  135. border-bottom: 1px solid #ddd;
  136. }
  137. .data-table th {
  138. background: #f5f5f5;
  139. font-weight: bold;
  140. }
  141. .data-table tr:hover {
  142. background: #f9f9f9;
  143. }
  144. .employee-stats {
  145. background: #fff;
  146. border-radius: 8px;
  147. padding: 20px;
  148. margin-bottom: 30px;
  149. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  150. }
  151. .employee-header {
  152. display: flex;
  153. align-items: center;
  154. margin-bottom: 20px;
  155. padding-bottom: 15px;
  156. border-bottom: 1px solid #eee;
  157. }
  158. .employee-avatar {
  159. width: 64px;
  160. height: 64px;
  161. border-radius: 50%;
  162. background: #f0f0f0;
  163. margin-right: 15px;
  164. display: flex;
  165. align-items: center;
  166. justify-content: center;
  167. font-size: 24px;
  168. color: #666;
  169. }
  170. .employee-info {
  171. flex: 1;
  172. }
  173. .employee-name {
  174. font-size: 20px;
  175. font-weight: bold;
  176. margin: 0 0 5px;
  177. }
  178. .employee-contact {
  179. color: #666;
  180. font-size: 14px;
  181. }
  182. .performance-grid {
  183. display: grid;
  184. grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  185. gap: 15px;
  186. margin-bottom: 20px;
  187. }
  188. .performance-card {
  189. background: #f8f9fa;
  190. padding: 15px;
  191. border-radius: 6px;
  192. text-align: center;
  193. }
  194. .performance-label {
  195. font-size: 14px;
  196. color: #666;
  197. margin-bottom: 5px;
  198. }
  199. .performance-value {
  200. font-size: 20px;
  201. font-weight: bold;
  202. color: #4a90e2;
  203. }
  204. .trend-chart {
  205. margin-top: 20px;
  206. }
  207. </style>
  208. <div class="container">
  209. <div class="page-header">
  210. <h1 class="page-title">销售统计分析</h1>
  211. </div>
  212. <!-- 日期和业务员筛选 -->
  213. <div class="filter-form">
  214. <form method="get" class="filter-form-inline">
  215. <div class="form-group">
  216. <label for="employee_id">选择业务员</label>
  217. <select class="form-control" id="employee_id" name="employee_id">
  218. <option value="0">全部业务员</option>
  219. <?php foreach ($employees as $emp): ?>
  220. <option value="<?php echo $emp['id']; ?>" <?php echo $selected_employee == $emp['id'] ? 'selected' : ''; ?>>
  221. <?php echo htmlspecialchars($emp['em_user']); ?>
  222. </option>
  223. <?php endforeach; ?>
  224. </select>
  225. </div>
  226. <div class="form-group">
  227. <label for="date_range">选择日期范围</label>
  228. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  229. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  230. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  231. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  232. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  233. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  234. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  235. </select>
  236. </div>
  237. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  238. <label for="start_date">开始日期</label>
  239. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  240. </div>
  241. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  242. <label for="end_date">结束日期</label>
  243. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  244. </div>
  245. <div class="form-group">
  246. <label for="period">时间粒度</label>
  247. <select class="form-control" id="period" name="period">
  248. <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>日</option>
  249. <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>周</option>
  250. <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>月</option>
  251. </select>
  252. </div>
  253. <div class="form-group">
  254. <button type="submit" class="btn">应用筛选</button>
  255. </div>
  256. </form>
  257. </div>
  258. <?php if ($selected_employee > 0): ?>
  259. <!-- 单个业务员详细分析 -->
  260. <?php
  261. $employee_detail = getEmployeeDetail($conn, $selected_employee);
  262. $employee_stats = getEmployeeStats($conn, $selected_employee, $start_date, $end_date);
  263. ?>
  264. <div class="employee-stats">
  265. <div class="employee-header">
  266. <div class="employee-avatar">
  267. <?php echo strtoupper(substr($employee_detail['em_user'], 0, 1)); ?>
  268. </div>
  269. <div class="employee-info">
  270. <h2 class="employee-name"><?php echo htmlspecialchars($employee_detail['em_user']); ?></h2>
  271. <div class="employee-contact">
  272. <?php if ($employee_detail['em_email']): ?>
  273. <span>邮箱: <?php echo htmlspecialchars($employee_detail['em_email']); ?></span>
  274. <?php endif; ?>
  275. <?php if ($employee_detail['em_tel']): ?>
  276. <span>电话: <?php echo htmlspecialchars($employee_detail['em_tel']); ?></span>
  277. <?php endif; ?>
  278. </div>
  279. </div>
  280. </div>
  281. <div class="performance-grid">
  282. <div class="performance-card">
  283. <div class="performance-label">总订单数</div>
  284. <div class="performance-value"><?php echo formatNumber($employee_stats['total_orders']); ?></div>
  285. </div>
  286. <div class="performance-card">
  287. <div class="performance-label">总销售额</div>
  288. <div class="performance-value"><?php echo formatCurrency($employee_stats['total_revenue']); ?></div>
  289. </div>
  290. <div class="performance-card">
  291. <div class="performance-label">客户数量</div>
  292. <div class="performance-value"><?php echo formatNumber($employee_stats['customer_count']); ?></div>
  293. </div>
  294. <div class="performance-card">
  295. <div class="performance-label">平均订单金额</div>
  296. <div class="performance-value"><?php echo formatCurrency($employee_stats['avg_order_value']); ?></div>
  297. </div>
  298. <div class="performance-card">
  299. <div class="performance-label">订单完成率</div>
  300. <div class="performance-value"><?php echo formatNumber($employee_stats['completion_rate'], 1); ?>%</div>
  301. </div>
  302. </div>
  303. <!-- 业务员销售趋势 -->
  304. <div class="trend-chart">
  305. <?php renderEmployeeSalesTrend($conn, $selected_employee, $start_date, $end_date); ?>
  306. </div>
  307. <!-- 业务员客户分布 -->
  308. <div class="trend-chart">
  309. <?php renderEmployeeCustomerDistribution($conn, $selected_employee, $start_date, $end_date); ?>
  310. </div>
  311. <!-- 业务员产品销售分析 -->
  312. <div class="trend-chart">
  313. <?php renderEmployeeProductAnalysis($conn, $selected_employee, $start_date, $end_date); ?>
  314. </div>
  315. </div>
  316. <?php endif; ?>
  317. <!-- 销售概览 -->
  318. <div class="chart-container">
  319. <div class="chart-header">
  320. <h2 class="chart-title">销售概览</h2>
  321. </div>
  322. <div class="card-body">
  323. <?php
  324. $sales_overview = getSalesOverview($conn, $start_date, $end_date);
  325. renderSalesOverviewCards($sales_overview);
  326. ?>
  327. </div>
  328. </div>
  329. <!-- 销售转化率分析 -->
  330. <div class="chart-container">
  331. <div class="chart-header">
  332. <h2 class="chart-title">销售转化率分析</h2>
  333. </div>
  334. <?php
  335. $conversion_stats = getOrderConversionStats($conn, $start_date, $end_date);
  336. renderConversionAnalysis($conversion_stats);
  337. ?>
  338. </div>
  339. <!-- 产品类别销售分析 -->
  340. <div class="chart-container">
  341. <div class="chart-header">
  342. <h2 class="chart-title">产品类别销售分析</h2>
  343. </div>
  344. <?php
  345. $category_sales = getProductCategorySales($conn, $start_date, $end_date);
  346. renderCategorySalesChart($category_sales);
  347. ?>
  348. </div>
  349. <!-- 客户地区分布 -->
  350. <div class="chart-container">
  351. <div class="chart-header">
  352. <h2 class="chart-title">客户地区分布</h2>
  353. </div>
  354. <?php
  355. $customer_distribution = getCustomerDistribution($conn, $start_date, $end_date);
  356. renderCustomerDistributionChart($customer_distribution);
  357. ?>
  358. </div>
  359. <!-- 销售员业绩排行 -->
  360. <div class="chart-container">
  361. <div class="chart-header">
  362. <h2 class="chart-title">销售员业绩排行</h2>
  363. </div>
  364. <?php
  365. $employee_performance = getEmployeePerformance($conn, $start_date, $end_date);
  366. renderEmployeePerformanceTable($employee_performance);
  367. ?>
  368. </div>
  369. <!-- 月度销售趋势 -->
  370. <div class="chart-container">
  371. <?php
  372. $monthly_sales = getMonthlySalesTrend($conn, $start_date, $end_date);
  373. $monthly_labels = [];
  374. $monthly_orders = [];
  375. $monthly_revenue = [];
  376. while ($row = $monthly_sales->fetch_assoc()) {
  377. $monthly_labels[] = $row['month'];
  378. $monthly_orders[] = $row['orders'];
  379. $monthly_revenue[] = $row['revenue'];
  380. }
  381. renderMonthlySalesTrendChart($monthly_labels, $monthly_orders, $monthly_revenue);
  382. ?>
  383. </div>
  384. <!-- 支付状态分析 -->
  385. <div class="chart-container">
  386. <div class="chart-header">
  387. <h2 class="chart-title">支付状态分析</h2>
  388. </div>
  389. <?php
  390. $payment_stats = getPaymentStatusStats($conn, $start_date, $end_date);
  391. renderPaymentStatusChart($payment_stats);
  392. ?>
  393. </div>
  394. <!-- 详细订单趋势 -->
  395. <div class="chart-container">
  396. <?php
  397. $detailed_trends = getDetailedOrderTrend($conn, $start_date, $end_date, $period);
  398. $time_labels = [];
  399. $time_orders = [];
  400. $time_quantities = [];
  401. while ($row = $detailed_trends->fetch_assoc()) {
  402. $time_labels[] = $row['time_period'];
  403. $time_orders[] = $row['order_count'];
  404. $time_quantities[] = $row['total_quantity'];
  405. }
  406. renderDetailedOrderTrendChart($time_labels, $time_orders, $time_quantities, $period);
  407. ?>
  408. </div>
  409. </div>
  410. <script>
  411. function toggleCustomDates() {
  412. const dateRange = document.getElementById('date_range').value;
  413. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  414. customDateInputs.forEach(el => {
  415. el.style.display = dateRange === 'custom' ? 'inline-block' : 'none';
  416. });
  417. }
  418. </script>
  419. <?php
  420. include('statistics_footer.php');
  421. ?>