products_stats.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. /**
  3. * 产品统计分析展示页面
  4. */
  5. require_once 'conn.php';
  6. require_once 'statistics_utils.php';
  7. require_once 'statistics_products.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. $product_id = isset($_GET['product_id']) ? intval($_GET['product_id']) : 0;
  20. // 页面头部
  21. include('statistics_header.php');
  22. ?>
  23. <div class="container">
  24. <div class="page-header">
  25. <h1 class="page-title">产品统计分析</h1>
  26. </div>
  27. <!-- 日期筛选 -->
  28. <div class="filter-form">
  29. <form method="get" class="filter-form-inline">
  30. <div class="form-group">
  31. <label for="date_range">选择日期范围</label>
  32. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  33. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  34. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  35. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  36. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  37. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  38. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  39. </select>
  40. </div>
  41. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  42. <label for="start_date">开始日期</label>
  43. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  44. </div>
  45. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  46. <label for="end_date">结束日期</label>
  47. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  48. </div>
  49. <div class="form-group">
  50. <label for="period">时间粒度</label>
  51. <select class="form-control" id="period" name="period">
  52. <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>日</option>
  53. <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>周</option>
  54. <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>月</option>
  55. </select>
  56. </div>
  57. <div class="form-group">
  58. <label for="category_id">产品分类</label>
  59. <select class="form-control" id="category_id" name="category_id">
  60. <option value="0">全部分类</option>
  61. <?php
  62. $category_filter = isset($_GET['category_id']) ? intval($_GET['category_id']) : 0;
  63. $categories = getProductCategories($conn);
  64. while($category = $categories->fetch_assoc()) {
  65. $selected = ($category_filter == $category['id']) ? 'selected' : '';
  66. echo "<option value='{$category['id']}' {$selected}>{$category['name']}</option>";
  67. }
  68. ?>
  69. </select>
  70. </div>
  71. <div class="form-group">
  72. <button type="submit" class="btn">应用筛选</button>
  73. </div>
  74. </form>
  75. </div>
  76. <!-- 产品销售概览 -->
  77. <div class="key-metrics-section">
  78. <div class="section-title">
  79. <h2>产品销售概览</h2>
  80. </div>
  81. <?php
  82. $sales_overview = getProductSalesOverview($conn, $start_date, $end_date, $category_filter);
  83. renderProductSalesOverview($sales_overview);
  84. ?>
  85. </div>
  86. <!-- 热门产品 -->
  87. <div class="chart-container">
  88. <?php
  89. $top_products = getTopProducts($conn, $start_date, $end_date, 10);
  90. renderTopProductsTable($top_products);
  91. ?>
  92. </div>
  93. <!-- 产品销售趋势 -->
  94. <div class="chart-container" style="display: none">
  95. <?php
  96. $product_trends = getProductSalesTrend($conn, $start_date, $end_date, $product_id, $period);
  97. $time_labels = [];
  98. $quantities = [];
  99. $revenues = [];
  100. while ($row = $product_trends->fetch_assoc()) {
  101. $time_labels[] = $row['time_period'];
  102. $quantities[] = $row['total_quantity'];
  103. $revenues[] = $row['total_revenue'];
  104. }
  105. renderProductSalesTrendChart($time_labels, $quantities, $revenues);
  106. ?>
  107. </div>
  108. <!-- 产品类别销售分布 -->
  109. <div class="chart-container" style="display: none">
  110. <?php
  111. $category_sales = getProductCategorySales($conn, $start_date, $end_date);
  112. $categories = [];
  113. $category_quantities = [];
  114. $category_revenues = [];
  115. while ($row = $category_sales->fetch_assoc()) {
  116. $categories[] = $row['category_name'];
  117. $category_quantities[] = $row['total_quantity'];
  118. $category_revenues[] = $row['total_revenue'];
  119. }
  120. renderProductCategorySalesChart($categories, $category_quantities, $category_revenues);
  121. ?>
  122. </div>
  123. <!-- 产品价格趋势分析 -->
  124. <div class="chart-container" style="display: none">
  125. <?php
  126. $price_trend_data = getProductPriceTrendAnalysis($conn, $start_date, $end_date, $product_id, $period);
  127. renderProductPriceTrendChart($price_trend_data);
  128. ?>
  129. </div>
  130. <!-- 产品季节性分析 -->
  131. <div class="chart-container" style="display: none">
  132. <?php
  133. $seasonality_data = getProductSeasonalityAnalysis($conn, $start_date, $end_date, $product_id);
  134. renderProductSeasonalityChart($seasonality_data);
  135. ?>
  136. </div>
  137. <!-- 产品客户细分分析 -->
  138. <div class="chart-container" style="display: none">
  139. <?php
  140. $customer_segment_data = getProductCustomerSegmentAnalysis($conn, $start_date, $end_date, $product_id);
  141. renderProductCustomerSegmentChart($customer_segment_data);
  142. ?>
  143. </div>
  144. <!-- 产品地区关联分析 -->
  145. <div class="chart-container" style="display: none">
  146. <?php
  147. $product_region_data = getProductRegionAnalysis($conn, $start_date, $end_date);
  148. renderProductRegionAnalysisTable($product_region_data);
  149. ?>
  150. </div>
  151. <!-- 产品增长率分析 -->
  152. <div class="chart-container" style="display: none">
  153. <?php
  154. $growth_data = getProductGrowthAnalysis($conn, $start_date, $end_date, $period);
  155. renderProductGrowthAnalysis($growth_data);
  156. ?>
  157. </div>
  158. <!-- 产品购买频率分析 -->
  159. <div class="chart-container" style="display: none">
  160. <?php
  161. $frequency_data = getProductPurchaseFrequency($conn, $start_date, $end_date);
  162. renderProductPurchaseFrequency($frequency_data);
  163. ?>
  164. </div>
  165. </div>
  166. <script>
  167. function toggleCustomDates() {
  168. const dateRange = document.getElementById('date_range').value;
  169. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  170. if (dateRange === 'custom') {
  171. customDateInputs.forEach(el => el.style.display = 'inline-block');
  172. } else {
  173. customDateInputs.forEach(el => el.style.display = 'none');
  174. }
  175. }
  176. // 初始化所有图表的配置
  177. Chart.defaults.font.family = "'Arial', sans-serif";
  178. Chart.defaults.color = '#666';
  179. Chart.defaults.plugins.tooltip.backgroundColor = 'rgba(0, 0, 0, 0.8)';
  180. Chart.defaults.plugins.legend.position = 'bottom';
  181. </script>
  182. <?php
  183. // 页面底部
  184. include('statistics_footer.php');
  185. ?>