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