region_stats.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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('statistics_header.php');
  19. ?>
  20. <div class="container">
  21. <div class="page-header">
  22. <h1 class="page-title">地区统计分析</h1>
  23. </div>
  24. <!-- 日期筛选 -->
  25. <div class="filter-form">
  26. <form method="get" class="filter-form-inline">
  27. <div class="form-group">
  28. <label for="date_range">选择日期范围</label>
  29. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  30. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  31. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  32. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  33. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  34. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  35. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  36. </select>
  37. </div>
  38. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  39. <label for="start_date">开始日期</label>
  40. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  41. </div>
  42. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  43. <label for="end_date">结束日期</label>
  44. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  45. </div>
  46. <div class="form-group">
  47. <button type="submit" class="btn">应用筛选</button>
  48. </div>
  49. </form>
  50. </div>
  51. <!-- 客户国家分布 -->
  52. <div class="chart-container">
  53. <?php
  54. $country_distribution = getCustomerCountryDistribution($conn);
  55. $country_labels = [];
  56. $country_data = [];
  57. while ($row = $country_distribution->fetch_assoc()) {
  58. $country_labels[] = $row['countryName'];
  59. $country_data[] = $row['customer_count'];
  60. }
  61. renderCustomerCountryDistributionChart($country_labels, $country_data);
  62. ?>
  63. </div>
  64. <!-- 地区订单分析 -->
  65. <div class="chart-container">
  66. <?php
  67. $region_orders = getOrdersByRegion($conn, $start_date, $end_date);
  68. $region_labels = [];
  69. $region_order_counts = [];
  70. $region_quantities = [];
  71. while ($row = $region_orders->fetch_assoc()) {
  72. $region_labels[] = $row['countryName'];
  73. $region_order_counts[] = $row['order_count'];
  74. $region_quantities[] = $row['total_quantity'];
  75. }
  76. renderRegionOrdersChart($region_labels, $region_order_counts, $region_quantities);
  77. ?>
  78. </div>
  79. <!-- 地区销售同比分析 -->
  80. <div class="chart-container">
  81. <?php
  82. $comparison_data = getRegionSalesComparison($conn, $start_date, $end_date);
  83. renderRegionSalesComparisonTable($comparison_data);
  84. ?>
  85. </div>
  86. </div>
  87. <style>
  88. .positive {
  89. color: #28a745;
  90. font-weight: bold;
  91. }
  92. .negative {
  93. color: #dc3545;
  94. font-weight: bold;
  95. }
  96. </style>
  97. <script>
  98. function toggleCustomDates() {
  99. const dateRange = document.getElementById('date_range').value;
  100. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  101. if (dateRange === 'custom') {
  102. customDateInputs.forEach(el => el.style.display = 'inline-block');
  103. } else {
  104. customDateInputs.forEach(el => el.style.display = 'none');
  105. }
  106. }
  107. </script>
  108. <?php
  109. // 页面底部
  110. include('statistics_footer.php');
  111. ?>