sales_stats.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. /**
  3. * 销售统计分析展示页面
  4. */
  5. require_once 'conn.php';
  6. require_once 'statistics_utils.php';
  7. require_once 'statistics_sales.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. include('statistics_header.php');
  20. ?>
  21. <div class="container">
  22. <div class="page-header">
  23. <h1 class="page-title">销售统计分析</h1>
  24. </div>
  25. <!-- 日期筛选 -->
  26. <div class="filter-form">
  27. <form method="get" class="filter-form-inline">
  28. <div class="form-group">
  29. <label for="date_range">选择日期范围</label>
  30. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  31. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  32. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  33. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  34. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  35. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  36. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  37. </select>
  38. </div>
  39. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  40. <label for="start_date">开始日期</label>
  41. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  42. </div>
  43. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  44. <label for="end_date">结束日期</label>
  45. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  46. </div>
  47. <div class="form-group">
  48. <label for="period">时间粒度</label>
  49. <select class="form-control" id="period" name="period">
  50. <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>日</option>
  51. <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>周</option>
  52. <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>月</option>
  53. </select>
  54. </div>
  55. <div class="form-group">
  56. <button type="submit" class="btn">应用筛选</button>
  57. </div>
  58. </form>
  59. </div>
  60. <!-- 销售概览 -->
  61. <div class="chart-container">
  62. <div class="chart-header">
  63. <h2 class="chart-title">销售概览</h2>
  64. </div>
  65. <div class="card-body">
  66. <?php
  67. $sales_overview = getSalesOverview($conn, $start_date, $end_date);
  68. renderSalesOverviewCards($sales_overview);
  69. ?>
  70. </div>
  71. </div>
  72. <!-- 月度销售趋势 -->
  73. <div class="chart-container">
  74. <?php
  75. $monthly_sales = getMonthlySalesTrend($conn, $start_date, $end_date);
  76. $monthly_labels = [];
  77. $monthly_orders = [];
  78. $monthly_revenue = [];
  79. while ($row = $monthly_sales->fetch_assoc()) {
  80. $monthly_labels[] = $row['month'];
  81. $monthly_orders[] = $row['orders'];
  82. $monthly_revenue[] = $row['revenue'];
  83. }
  84. renderMonthlySalesTrendChart($monthly_labels, $monthly_orders, $monthly_revenue);
  85. ?>
  86. </div>
  87. <!-- 详细订单趋势 -->
  88. <div class="chart-container">
  89. <?php
  90. $detailed_trends = getDetailedOrderTrend($conn, $start_date, $end_date, $period);
  91. $time_labels = [];
  92. $time_orders = [];
  93. $time_quantities = [];
  94. while ($row = $detailed_trends->fetch_assoc()) {
  95. $time_labels[] = $row['time_period'];
  96. $time_orders[] = $row['order_count'];
  97. $time_quantities[] = $row['total_quantity'];
  98. }
  99. renderDetailedOrderTrendChart($time_labels, $time_orders, $time_quantities, $period);
  100. ?>
  101. </div>
  102. </div>
  103. <script>
  104. function toggleCustomDates() {
  105. const dateRange = document.getElementById('date_range').value;
  106. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  107. if (dateRange === 'custom') {
  108. customDateInputs.forEach(el => el.style.display = 'inline-block');
  109. } else {
  110. customDateInputs.forEach(el => el.style.display = 'none');
  111. }
  112. }
  113. </script>
  114. <?php
  115. // 页面底部
  116. include('statistics_footer.php');
  117. ?>