sales_stats.php 14 KB

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