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