customers_stats.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <?php
  2. /**
  3. * 客户统计分析展示页面
  4. */
  5. require_once 'conn.php';
  6. require_once 'statistics_utils.php';
  7. require_once 'statistics_customers.php';
  8. // 检查登录状态
  9. if (!isset($_SESSION['employee_id'])) {
  10. checkLogin();
  11. }
  12. // 获取日期范围参数
  13. $date_params = getDateRangeParams();
  14. $start_date = $date_params['start_date_sql'];
  15. $end_date = $date_params['end_date_sql'];
  16. $date_range = $date_params['date_range'];
  17. $period = $date_params['period'];
  18. // 页面头部
  19. include('statistics_header.php');
  20. ?>
  21. <div class="container">
  22. <div class="page-header">
  23. <h1 class="page-title">客户统计分析</h1>
  24. </div>
  25. <!-- 日期筛选 -->
  26. <div class="filter-form">
  27. <form method="get" class="filter-form-inline">
  28. <div class="form-group">
  29. <label for="date_range">选择日期范围</label>
  30. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  31. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  32. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  33. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  34. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  35. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  36. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  37. </select>
  38. </div>
  39. <div class="form-group custom-date-inputs" id="custom_start_date" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  40. <label for="start_date">开始日期</label>
  41. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  42. </div>
  43. <div class="form-group custom-date-inputs" id="custom_end_date" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  44. <label for="end_date">结束日期</label>
  45. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  46. </div>
  47. <div class="form-group">
  48. <button type="submit" class="btn">应用筛选</button>
  49. </div>
  50. </form>
  51. </div>
  52. <!-- 关键指标 -->
  53. <div class="key-metrics-section">
  54. <div class="section-title">
  55. <h2>关键指标</h2>
  56. </div>
  57. <?php
  58. // 获取关键指标数据
  59. $total_customers = getTotalCustomers($conn);
  60. $new_customers = getNewCustomers($conn, $start_date, $end_date);
  61. $avg_customer_value = getAverageCustomerValue($conn, $start_date, $end_date);
  62. $retention_data = getCustomerRetentionRate($conn, $start_date, $end_date);
  63. $conversion_data = getOrderConversionRate($conn, $start_date, $end_date);
  64. // 组合所有指标数据
  65. $kpi_data = [
  66. 'total_customers' => $total_customers,
  67. 'new_customers' => $new_customers,
  68. 'avg_customer_value' => $avg_customer_value,
  69. 'retention_rate' => $retention_data['retention_rate'],
  70. 'retained_count' => $retention_data['retained_count'],
  71. 'total_previous' => $retention_data['total_previous'],
  72. 'conversion_rate' => $conversion_data['conversion_rate'],
  73. 'customers_with_orders' => $conversion_data['customers_with_orders']
  74. ];
  75. // 渲染关键指标卡片
  76. renderKeyMetricsCard($kpi_data);
  77. ?>
  78. </div>
  79. <div class="stats-grid">
  80. <!-- 客户类型分布 -->
  81. <div class="stat-card">
  82. <?php
  83. $customer_type_result = getCustomerTypeDistribution($conn);
  84. $type_labels = [];
  85. $type_data = [];
  86. while ($row = $customer_type_result->fetch_assoc()) {
  87. $type_labels[] = $row['businessType'];
  88. $type_data[] = $row['customer_count'];
  89. }
  90. renderCustomerTypeChart($type_labels, $type_data);
  91. ?>
  92. </div>
  93. <!-- 成交阶段分布 -->
  94. <div class="stat-card">
  95. <?php
  96. $deal_stage_result = getDealStageDistribution($conn);
  97. $stage_labels = [];
  98. $stage_data = [];
  99. while ($row = $deal_stage_result->fetch_assoc()) {
  100. $stage_labels[] = $row['stage_name'];
  101. $stage_data[] = $row['customer_count'];
  102. }
  103. renderDealStageChart($stage_labels, $stage_data);
  104. ?>
  105. </div>
  106. </div>
  107. <!-- 客户增长趋势 -->
  108. <div class="chart-container">
  109. <?php
  110. $growth_result = getCustomerGrowthTrend($conn);
  111. $growth_labels = [];
  112. $growth_data = [];
  113. while ($row = $growth_result->fetch_assoc()) {
  114. $growth_labels[] = $row['month'];
  115. $growth_data[] = $row['new_customers'];
  116. }
  117. renderCustomerGrowthChart($growth_labels, $growth_data);
  118. ?>
  119. </div>
  120. <!-- 新老客户分析 -->
  121. <div class="chart-container">
  122. <?php
  123. $new_vs_returning = getNewVsReturningCustomerOrders($conn, $start_date, $end_date);
  124. renderNewVsReturningCustomersChart($new_vs_returning);
  125. ?>
  126. </div>
  127. <!-- 客户价值分布 -->
  128. <div class="chart-container">
  129. <?php
  130. $value_distribution = getCustomerValueDistribution($conn, $start_date, $end_date);
  131. renderCustomerValueCharts($value_distribution);
  132. ?>
  133. </div>
  134. <!-- 客户转化漏斗 -->
  135. <div class="chart-container">
  136. <?php
  137. $funnel_data = getCustomerConversionFunnel($conn, $start_date, $end_date);
  138. renderCustomerFunnelChart($funnel_data);
  139. ?>
  140. </div>
  141. <!-- 客户活跃度分析 -->
  142. <div class="chart-container">
  143. <?php
  144. $activity_data = getCustomerActivityAnalysis($conn, $end_date);
  145. renderCustomerActivityChart($activity_data);
  146. ?>
  147. </div>
  148. <!-- 客户流失风险分析 -->
  149. <div class="chart-container">
  150. <?php
  151. $risk_data = getCustomerChurnRiskAnalysis($conn, $end_date);
  152. renderCustomerChurnRiskChart($risk_data);
  153. ?>
  154. </div>
  155. <!-- 客户来源分析 -->
  156. <div class="chart-container">
  157. <?php
  158. $source_data = getCustomerSourceAnalysis($conn);
  159. renderCustomerSourceChart($source_data);
  160. ?>
  161. </div>
  162. </div>
  163. <script>
  164. function toggleCustomDates() {
  165. const dateRange = document.getElementById('date_range').value;
  166. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  167. if (dateRange === 'custom') {
  168. customDateInputs.forEach(el => el.style.display = 'inline-block');
  169. } else {
  170. customDateInputs.forEach(el => el.style.display = 'none');
  171. }
  172. }
  173. </script>
  174. <?php
  175. // 页面底部
  176. include('statistics_footer.php');
  177. ?>