region_stats.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  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. $period = $date_params['period'];
  18. // 特定国家过滤
  19. $country_id = isset($_GET['country_id']) ? intval($_GET['country_id']) : 0;
  20. // 页面头部
  21. include('statistics_header.php');
  22. ?>
  23. <div class="page-header">
  24. <h1 class="page-title">地区统计分析</h1>
  25. </div>
  26. <!-- 日期筛选 -->
  27. <div class="filter-form">
  28. <form method="get" class="filter-form-inline">
  29. <div class="form-group">
  30. <label for="date_range">选择日期范围</label>
  31. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  32. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  33. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  34. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  35. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  36. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  37. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  38. </select>
  39. </div>
  40. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  41. <label for="start_date">开始日期</label>
  42. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  43. </div>
  44. <div class="form-group custom-date-inputs" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  45. <label for="end_date">结束日期</label>
  46. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  47. </div>
  48. <div class="form-group">
  49. <label for="period">时间粒度</label>
  50. <select class="form-control" id="period" name="period">
  51. <option value="day" <?php echo $period == 'day' ? 'selected' : ''; ?>>日</option>
  52. <option value="week" <?php echo $period == 'week' ? 'selected' : ''; ?>>周</option>
  53. <option value="month" <?php echo $period == 'month' ? 'selected' : ''; ?>>月</option>
  54. </select>
  55. </div>
  56. <div class="form-group">
  57. <label for="country_id">国家/地区</label>
  58. <select class="form-control" id="country_id" name="country_id">
  59. <option value="0">全部地区</option>
  60. <?php
  61. $country_filter = isset($_GET['country_id']) ? intval($_GET['country_id']) : 0;
  62. $sql = "SELECT id, countryName FROM country ORDER BY countryName";
  63. $countries = $conn->query($sql);
  64. while($country = $countries->fetch_assoc()) {
  65. $selected = ($country_filter == $country['id']) ? 'selected' : '';
  66. echo "<option value='{$country['id']}' {$selected}>{$country['countryName']}</option>";
  67. }
  68. ?>
  69. </select>
  70. </div>
  71. <div class="form-group">
  72. <button type="submit" class="btn">应用筛选</button>
  73. </div>
  74. </form>
  75. </div>
  76. <!-- 地区销售数据概览 -->
  77. <div class="key-metrics-section">
  78. <div class="section-title">
  79. <h2>地区销售概览</h2>
  80. </div>
  81. <div class="stats-row">
  82. <div class="stat-card">
  83. <h3>总销售额</h3>
  84. <?php
  85. $total_sales = getRegionTotalSales($conn, $start_date, $end_date);
  86. echo "<div class='stat-value'>¥" . number_format($total_sales['total_amount'], 2) . "</div>";
  87. echo "<div class='stat-trend " . ($total_sales['growth'] >= 0 ? 'positive' : 'negative') . "'>";
  88. echo ($total_sales['growth'] >= 0 ? '+' : '') . number_format($total_sales['growth'], 2) . "%</div>";
  89. ?>
  90. </div>
  91. <div class="stat-card">
  92. <h3>活跃国家数</h3>
  93. <?php
  94. $active_countries = getActiveCountries($conn, $start_date, $end_date);
  95. echo "<div class='stat-value'>" . $active_countries['count'] . "</div>";
  96. ?>
  97. </div>
  98. <div class="stat-card">
  99. <h3>平均订单金额</h3>
  100. <?php
  101. $avg_order = getAverageOrderByRegion($conn, $start_date, $end_date);
  102. echo "<div class='stat-value'>¥" . number_format($avg_order['global_avg'], 2) . "</div>";
  103. ?>
  104. </div>
  105. </div>
  106. </div>
  107. <!-- 热门地区 -->
  108. <div class="chart-container">
  109. <div class="section-title">
  110. <h2>热门地区</h2>
  111. </div>
  112. <?php
  113. $region_orders = getOrdersByRegion($conn, $start_date, $end_date);
  114. $region_labels = [];
  115. $region_order_counts = [];
  116. $region_quantities = [];
  117. $region_amounts = [];
  118. while ($row = $region_orders->fetch_assoc()) {
  119. $region_labels[] = $row['countryName'];
  120. $region_order_counts[] = $row['order_count'];
  121. $region_quantities[] = $row['total_quantity'];
  122. $region_amounts[] = $row['total_amount'];
  123. }
  124. renderTopRegionsTable($region_labels, $region_order_counts, $region_quantities, $region_amounts);
  125. ?>
  126. </div>
  127. <!-- 客户国家分布 -->
  128. <div class="chart-container">
  129. <div class="section-title">
  130. <h2>客户国家分布</h2>
  131. </div>
  132. <?php
  133. $country_distribution = getCustomerCountryDistribution($conn);
  134. $country_labels = [];
  135. $country_data = [];
  136. while ($row = $country_distribution->fetch_assoc()) {
  137. $country_labels[] = $row['countryName'];
  138. $country_data[] = $row['customer_count'];
  139. }
  140. renderCustomerCountryDistributionChart($country_labels, $country_data);
  141. ?>
  142. </div>
  143. <!-- 地区销售趋势 -->
  144. <div class="chart-container">
  145. <div class="section-title">
  146. <h2>地区销售趋势</h2>
  147. </div>
  148. <?php
  149. $growth_trends = getRegionGrowthTrends($conn, $start_date, $end_date, $period);
  150. renderRegionGrowthTrendsChart($growth_trends);
  151. ?>
  152. </div>
  153. <!-- 地区订单分析 -->
  154. <div class="chart-container">
  155. <div class="section-title">
  156. <h2>地区订单分析</h2>
  157. </div>
  158. <?php
  159. renderRegionOrdersChart($region_labels, $region_order_counts, $region_quantities);
  160. ?>
  161. </div>
  162. <!-- 地区平均订单金额分析 -->
  163. <div class="chart-container">
  164. <div class="section-title">
  165. <h2>地区平均订单金额分析</h2>
  166. </div>
  167. <?php
  168. $avg_order_data = getAverageOrderByRegion($conn, $start_date, $end_date);
  169. renderAverageOrderByRegionChart($avg_order_data['regions']);
  170. ?>
  171. </div>
  172. <!-- 各地区产品类别偏好 -->
  173. <div class="chart-container">
  174. <div class="section-title">
  175. <h2>各地区产品类别偏好</h2>
  176. </div>
  177. <?php
  178. $category_preferences = getRegionCategoryPreferences($conn, $start_date, $end_date);
  179. renderRegionCategoryPreferencesChart($category_preferences);
  180. ?>
  181. </div>
  182. <!-- 地区销售同比分析 -->
  183. <div class="chart-container">
  184. <div class="section-title">
  185. <h2>地区销售同比分析</h2>
  186. </div>
  187. <?php
  188. $comparison_data = getRegionSalesComparison($conn, $start_date, $end_date);
  189. renderRegionSalesComparisonTable($comparison_data);
  190. ?>
  191. </div>
  192. <!-- 地区季节性分析 -->
  193. <div class="chart-container">
  194. <div class="section-title">
  195. <h2>地区季节性分析</h2>
  196. </div>
  197. <?php
  198. $seasonal_analysis = getRegionSeasonalAnalysis($conn);
  199. renderRegionSeasonalAnalysisChart($seasonal_analysis);
  200. ?>
  201. </div>
  202. <!-- 地区销售预测 -->
  203. <div class="chart-container">
  204. <div class="section-title">
  205. <h2>地区销售预测</h2>
  206. </div>
  207. <?php
  208. $forecast_data = getRegionSalesForecast($conn, $start_date, $end_date);
  209. renderRegionSalesForecastChart($forecast_data);
  210. ?>
  211. </div>
  212. <style>
  213. .positive {
  214. color: #28a745;
  215. font-weight: bold;
  216. }
  217. .negative {
  218. color: #dc3545;
  219. font-weight: bold;
  220. }
  221. .key-metrics-section {
  222. margin-bottom: 30px;
  223. }
  224. .section-title {
  225. margin-bottom: 20px;
  226. border-bottom: 1px solid #eee;
  227. padding-bottom: 10px;
  228. }
  229. .section-title h2 {
  230. font-size: 20px;
  231. margin: 0;
  232. color: #333;
  233. }
  234. .stats-row {
  235. display: flex;
  236. flex-wrap: nowrap;
  237. gap: 20px;
  238. justify-content: space-between;
  239. width: 100%;
  240. margin-bottom: 20px;
  241. }
  242. .stat-card {
  243. background-color: #f8f9fa;
  244. border-radius: 8px;
  245. padding: 20px;
  246. margin-bottom: 0;
  247. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  248. height: 100%;
  249. transition: all 0.3s ease;
  250. flex: 1;
  251. min-width: 0; /* Prevents flex items from overflowing */
  252. }
  253. .stat-card:hover {
  254. transform: translateY(-5px);
  255. box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  256. }
  257. .stat-value {
  258. font-size: 24px;
  259. font-weight: bold;
  260. margin: 10px 0;
  261. }
  262. .stat-trend {
  263. font-size: 16px;
  264. }
  265. .chart-container {
  266. background-color: #fff;
  267. border-radius: 8px;
  268. padding: 20px;
  269. margin-bottom: 30px;
  270. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  271. }
  272. .chart-title {
  273. margin-top: 0;
  274. margin-bottom: 20px;
  275. font-size: 18px;
  276. font-weight: bold;
  277. }
  278. .filter-form {
  279. background-color: #f8f9fa;
  280. border-radius: 8px;
  281. padding: 15px;
  282. margin-bottom: 30px;
  283. box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  284. }
  285. .filter-form-inline {
  286. display: flex;
  287. flex-wrap: wrap;
  288. align-items: end;
  289. gap: 15px;
  290. }
  291. .form-group {
  292. margin-bottom: 10px;
  293. }
  294. .data-table {
  295. width: 100%;
  296. border-collapse: collapse;
  297. margin-top: 15px;
  298. }
  299. .data-table th, .data-table td {
  300. padding: 12px 15px;
  301. text-align: left;
  302. border-bottom: 1px solid #ddd;
  303. }
  304. .data-table th {
  305. background-color: #f8f9fa;
  306. font-weight: bold;
  307. color: #333;
  308. }
  309. .data-table tr:hover {
  310. background-color: #f5f5f5;
  311. }
  312. .subchart-container {
  313. margin-bottom: 20px;
  314. }
  315. .subchart-title {
  316. font-size: 16px;
  317. margin-bottom: 15px;
  318. color: #555;
  319. }
  320. .grid-row {
  321. display: flex;
  322. flex-wrap: wrap;
  323. margin: -10px; /* Negative margin to offset the padding in grid-column */
  324. }
  325. .grid-column {
  326. flex: 0 0 50%; /* Two columns per row */
  327. padding: 10px;
  328. box-sizing: border-box;
  329. }
  330. @media (max-width: 768px) {
  331. .grid-column {
  332. flex: 0 0 100%; /* Full width on small screens */
  333. }
  334. .stats-row {
  335. flex-direction: column;
  336. }
  337. }
  338. </style>
  339. <script>
  340. function toggleCustomDates() {
  341. const dateRange = document.getElementById('date_range').value;
  342. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  343. if (dateRange === 'custom') {
  344. customDateInputs.forEach(el => el.style.display = 'inline-block');
  345. } else {
  346. customDateInputs.forEach(el => el.style.display = 'none');
  347. }
  348. }
  349. // 初始化所有图表的配置
  350. Chart.defaults.font.family = "'Arial', sans-serif";
  351. Chart.defaults.color = '#666';
  352. Chart.defaults.plugins.tooltip.backgroundColor = 'rgba(0, 0, 0, 0.8)';
  353. Chart.defaults.plugins.legend.position = 'bottom';
  354. </script>
  355. <?php
  356. // 页面底部
  357. include('statistics_footer.php');
  358. ?>