sales_stats.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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('header.php');
  20. ?>
  21. <div class="container-fluid px-4">
  22. <h1 class="mt-4">销售统计分析</h1>
  23. <ol class="breadcrumb mb-4">
  24. <li class="breadcrumb-item"><a href="index.php">控制台</a></li>
  25. <li class="breadcrumb-item active">销售统计</li>
  26. </ol>
  27. <!-- 日期筛选 -->
  28. <div class="card mb-4">
  29. <div class="card-header">
  30. <i class="fas fa-filter me-1"></i>
  31. 日期范围筛选
  32. </div>
  33. <div class="card-body">
  34. <form method="get" class="row g-3">
  35. <div class="col-md-3">
  36. <label for="date_range" class="form-label">选择日期范围</label>
  37. <select class="form-select" id="date_range" name="date_range" onchange="toggleCustomDates()">
  38. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  39. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  40. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  41. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  42. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  43. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  44. </select>
  45. </div>
  46. <div class="col-md-2 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
  47. <label for="start_date" class="form-label">开始日期</label>
  48. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  49. </div>
  50. <div class="col-md-2 custom-date" style="display: <?php echo $date_range == 'custom' ? 'block' : 'none'; ?>">
  51. <label for="end_date" class="form-label">结束日期</label>
  52. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  53. </div>
  54. <div class="col-md-3">
  55. <label for="period" class="form-label">时间粒度</label>
  56. <select class="form-select" id="period" name="period">
  57. <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>日</option>
  58. <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>周</option>
  59. <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>月</option>
  60. </select>
  61. </div>
  62. <div class="col-md-2 d-flex align-items-end">
  63. <button type="submit" class="btn btn-primary">应用筛选</button>
  64. </div>
  65. </form>
  66. </div>
  67. </div>
  68. <!-- 销售概览 -->
  69. <div class="card mb-4">
  70. <div class="card-header">
  71. <i class="fas fa-chart-bar me-1"></i>
  72. 销售概览
  73. </div>
  74. <div class="card-body">
  75. <?php
  76. $sales_overview = getSalesOverview($conn, $start_date, $end_date);
  77. renderSalesOverviewCards($sales_overview);
  78. ?>
  79. </div>
  80. </div>
  81. <div class="row">
  82. <!-- 月度销售趋势 -->
  83. <div class="col-lg-12 mb-4">
  84. <div class="card">
  85. <?php
  86. $monthly_sales = getMonthlySalesTrend($conn, $start_date, $end_date);
  87. $monthly_labels = [];
  88. $monthly_orders = [];
  89. $monthly_revenue = [];
  90. while ($row = $monthly_sales->fetch_assoc()) {
  91. $monthly_labels[] = $row['month'];
  92. $monthly_orders[] = $row['orders'];
  93. $monthly_revenue[] = $row['revenue'];
  94. }
  95. renderMonthlySalesTrendChart($monthly_labels, $monthly_orders, $monthly_revenue);
  96. ?>
  97. </div>
  98. </div>
  99. </div>
  100. <div class="row">
  101. <!-- 详细订单趋势 -->
  102. <div class="col-lg-12 mb-4">
  103. <div class="card">
  104. <?php
  105. $detailed_trends = getDetailedOrderTrend($conn, $start_date, $end_date, $period);
  106. $time_labels = [];
  107. $time_orders = [];
  108. $time_quantities = [];
  109. while ($row = $detailed_trends->fetch_assoc()) {
  110. $time_labels[] = $row['time_period'];
  111. $time_orders[] = $row['order_count'];
  112. $time_quantities[] = $row['total_quantity'];
  113. }
  114. renderDetailedOrderTrendChart($time_labels, $time_orders, $time_quantities, $period);
  115. ?>
  116. </div>
  117. </div>
  118. </div>
  119. <style>
  120. .stats-grid {
  121. display: grid;
  122. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  123. gap: 20px;
  124. margin-bottom: 20px;
  125. }
  126. .stat-card {
  127. background-color: #f8f9fa;
  128. border-radius: 8px;
  129. padding: 20px;
  130. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  131. text-align: center;
  132. }
  133. .stat-card h3 {
  134. margin-top: 0;
  135. color: #495057;
  136. font-size: 16px;
  137. }
  138. .stat-value {
  139. font-size: 24px;
  140. font-weight: bold;
  141. color: #0d6efd;
  142. margin-top: 10px;
  143. }
  144. </style>
  145. </div>
  146. <script>
  147. function toggleCustomDates() {
  148. const dateRange = document.getElementById('date_range').value;
  149. const customDates = document.querySelectorAll('.custom-date');
  150. if (dateRange === 'custom') {
  151. customDates.forEach(el => el.style.display = 'block');
  152. } else {
  153. customDates.forEach(el => el.style.display = 'none');
  154. }
  155. }
  156. </script>
  157. <?php
  158. // 页面底部
  159. include('footer.php');
  160. ?>