products_stats.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. <button type="submit" class="btn">应用筛选</button>
  59. </div>
  60. </form>
  61. </div>
  62. <!-- 热门产品 -->
  63. <div class="chart-container">
  64. <?php
  65. $top_products = getTopProducts($conn, $start_date, $end_date, 10);
  66. renderTopProductsTable($top_products);
  67. ?>
  68. </div>
  69. <!-- 产品销售趋势 -->
  70. <div class="chart-container">
  71. <?php
  72. $product_trends = getProductSalesTrend($conn, $start_date, $end_date, $product_id, $period);
  73. $time_labels = [];
  74. $quantities = [];
  75. $revenues = [];
  76. while ($row = $product_trends->fetch_assoc()) {
  77. $time_labels[] = $row['time_period'];
  78. $quantities[] = $row['total_quantity'];
  79. $revenues[] = $row['total_revenue'];
  80. }
  81. renderProductSalesTrendChart($time_labels, $quantities, $revenues);
  82. ?>
  83. </div>
  84. <!-- 产品类别销售分布 -->
  85. <div class="chart-container">
  86. <?php
  87. $category_sales = getProductCategorySales($conn, $start_date, $end_date);
  88. $categories = [];
  89. $category_quantities = [];
  90. $category_revenues = [];
  91. while ($row = $category_sales->fetch_assoc()) {
  92. $categories[] = $row['category_name'];
  93. $category_quantities[] = $row['total_quantity'];
  94. $category_revenues[] = $row['total_revenue'];
  95. }
  96. renderProductCategorySalesChart($categories, $category_quantities, $category_revenues);
  97. ?>
  98. </div>
  99. <!-- 产品地区关联分析 -->
  100. <div class="chart-container">
  101. <?php
  102. $product_region_data = getProductRegionAnalysis($conn, $start_date, $end_date);
  103. renderProductRegionAnalysisTable($product_region_data);
  104. ?>
  105. </div>
  106. </div>
  107. <script>
  108. function toggleCustomDates() {
  109. const dateRange = document.getElementById('date_range').value;
  110. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  111. if (dateRange === 'custom') {
  112. customDateInputs.forEach(el => el.style.display = 'inline-block');
  113. } else {
  114. customDateInputs.forEach(el => el.style.display = 'none');
  115. }
  116. }
  117. </script>
  118. <?php
  119. // 页面底部
  120. include('statistics_footer.php');
  121. ?>