region_stats.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. /**
  3. * 地区统计分析展示页面
  4. */
  5. require_once 'conn.php';
  6. require_once 'statistics_utils.php';
  7. require_once 'statistics_region.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. // 页面头部
  18. include('header.php');
  19. ?>
  20. <div class="container-fluid px-4">
  21. <h1 class="mt-4">地区统计分析</h1>
  22. <ol class="breadcrumb mb-4">
  23. <li class="breadcrumb-item"><a href="index.php">控制台</a></li>
  24. <li class="breadcrumb-item active">地区统计</li>
  25. </ol>
  26. <!-- 日期筛选 -->
  27. <div class="card mb-4">
  28. <div class="card-header">
  29. <i class="fas fa-filter me-1"></i>
  30. 日期范围筛选
  31. </div>
  32. <div class="card-body">
  33. <form method="get" class="row g-3">
  34. <div class="col-md-3">
  35. <label for="date_range" class="form-label">选择日期范围</label>
  36. <select class="form-select" id="date_range" name="date_range" onchange="toggleCustomDates()">
  37. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  38. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  39. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  40. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  41. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  42. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  43. </select>
  44. </div>
  45. <div class="col-md-3 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
  46. <label for="start_date" class="form-label">开始日期</label>
  47. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  48. </div>
  49. <div class="col-md-3 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
  50. <label for="end_date" class="form-label">结束日期</label>
  51. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  52. </div>
  53. <div class="col-md-2 d-flex align-items-end">
  54. <button type="submit" class="btn btn-primary">应用筛选</button>
  55. </div>
  56. </form>
  57. </div>
  58. </div>
  59. <div class="row">
  60. <!-- 客户国家分布 -->
  61. <div class="col-lg-12 mb-4">
  62. <div class="card">
  63. <?php
  64. $country_distribution = getCustomerCountryDistribution($conn);
  65. $country_labels = [];
  66. $country_data = [];
  67. while ($row = $country_distribution->fetch_assoc()) {
  68. $country_labels[] = $row['countryName'];
  69. $country_data[] = $row['customer_count'];
  70. }
  71. renderCustomerCountryDistributionChart($country_labels, $country_data);
  72. ?>
  73. </div>
  74. </div>
  75. </div>
  76. <div class="row">
  77. <!-- 地区订单分析 -->
  78. <div class="col-lg-12 mb-4">
  79. <div class="card">
  80. <?php
  81. $region_orders = getOrdersByRegion($conn, $start_date, $end_date);
  82. $region_labels = [];
  83. $region_order_counts = [];
  84. $region_quantities = [];
  85. while ($row = $region_orders->fetch_assoc()) {
  86. $region_labels[] = $row['countryName'];
  87. $region_order_counts[] = $row['order_count'];
  88. $region_quantities[] = $row['total_quantity'];
  89. }
  90. renderRegionOrdersChart($region_labels, $region_order_counts, $region_quantities);
  91. ?>
  92. </div>
  93. </div>
  94. </div>
  95. <div class="row">
  96. <!-- 地区销售同比分析 -->
  97. <div class="col-lg-12 mb-4">
  98. <div class="card">
  99. <?php
  100. $comparison_data = getRegionSalesComparison($conn, $start_date, $end_date);
  101. renderRegionSalesComparisonTable($comparison_data);
  102. ?>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. <style>
  108. .positive {
  109. color: #28a745;
  110. font-weight: bold;
  111. }
  112. .negative {
  113. color: #dc3545;
  114. font-weight: bold;
  115. }
  116. </style>
  117. <script>
  118. function toggleCustomDates() {
  119. const dateRange = document.getElementById('date_range').value;
  120. const customDates = document.querySelectorAll('.custom-date');
  121. if (dateRange === 'custom') {
  122. customDates.forEach(el => el.style.display = 'block');
  123. } else {
  124. customDates.forEach(el => el.style.display = 'none');
  125. }
  126. }
  127. </script>
  128. <?php
  129. // 页面底部
  130. include('footer.php');
  131. ?>