customers_stats.php 7.9 KB

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