statistics_sales.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. <?php
  2. /**
  3. * 销售统计分析模块
  4. *
  5. * 包含与销售相关的数据分析功能
  6. */
  7. require_once 'statistics_utils.php';
  8. /**
  9. * 获取销售概览数据
  10. *
  11. * @param mysqli $conn 数据库连接
  12. * @param string $start_date 开始日期
  13. * @param string $end_date 结束日期
  14. * @return array 销售概览数据
  15. */
  16. function getSalesOverview($conn, $start_date, $end_date) {
  17. $sql = "SELECT
  18. COUNT(id) as total_orders,
  19. SUM(total_amount) as total_revenue,
  20. AVG(total_amount) as avg_order_value
  21. FROM orders
  22. WHERE order_date BETWEEN ? AND ?";
  23. $stmt = $conn->prepare($sql);
  24. $stmt->bind_param("ss", $start_date, $end_date);
  25. $stmt->execute();
  26. $result = $stmt->get_result();
  27. return $result->fetch_assoc();
  28. }
  29. /**
  30. * 获取每月销售趋势
  31. *
  32. * @param mysqli $conn 数据库连接
  33. * @param string $start_date 开始日期
  34. * @param string $end_date 结束日期
  35. * @return mysqli_result 月度销售数据结果集
  36. */
  37. function getMonthlySalesTrend($conn, $start_date, $end_date) {
  38. $sql = "SELECT
  39. DATE_FORMAT(order_date, '%Y-%m') as month,
  40. COUNT(id) as orders,
  41. SUM(total_amount) as revenue
  42. FROM orders
  43. WHERE order_date BETWEEN ? AND ?
  44. GROUP BY DATE_FORMAT(order_date, '%Y-%m')
  45. ORDER BY month";
  46. $stmt = $conn->prepare($sql);
  47. $stmt->bind_param("ss", $start_date, $end_date);
  48. $stmt->execute();
  49. return $stmt->get_result();
  50. }
  51. /**
  52. * 获取详细时间段订单趋势
  53. *
  54. * @param mysqli $conn 数据库连接
  55. * @param string $start_date 开始日期
  56. * @param string $end_date 结束日期
  57. * @param string $period 时间粒度 (day/week/month)
  58. * @return mysqli_result 订单趋势数据结果集
  59. */
  60. function getDetailedOrderTrend($conn, $start_date, $end_date, $period = 'day') {
  61. $groupFormat = '%Y-%m-%d';
  62. $intervalUnit = 'DAY';
  63. if ($period == 'week') {
  64. $groupFormat = '%x-W%v'; // ISO year and week number
  65. $intervalUnit = 'WEEK';
  66. } else if ($period == 'month') {
  67. $groupFormat = '%Y-%m';
  68. $intervalUnit = 'MONTH';
  69. }
  70. $sql = "SELECT
  71. DATE_FORMAT(o.order_date, '$groupFormat') as time_period,
  72. COUNT(o.id) as order_count,
  73. SUM(oi.quantity) as total_quantity,
  74. SUM(o.total_amount) as total_amount
  75. FROM orders o
  76. LEFT JOIN order_items oi ON o.id = oi.order_id
  77. WHERE o.order_date BETWEEN ? AND ?
  78. GROUP BY time_period
  79. ORDER BY MIN(o.order_date)";
  80. $stmt = $conn->prepare($sql);
  81. $stmt->bind_param("ss", $start_date, $end_date);
  82. $stmt->execute();
  83. return $stmt->get_result();
  84. }
  85. /**
  86. * 渲染销售概览卡片
  87. *
  88. * @param array $sales_overview 销售概览数据
  89. * @return void
  90. */
  91. function renderSalesOverviewCards($sales_overview) {
  92. ?>
  93. <div class="stats-grid">
  94. <div class="stat-card">
  95. <h3>总订单数</h3>
  96. <div class="stat-value"><?php echo number_format($sales_overview['total_orders']); ?></div>
  97. </div>
  98. <div class="stat-card">
  99. <h3>总收入</h3>
  100. <div class="stat-value">¥<?php echo number_format($sales_overview['total_revenue'], 2); ?></div>
  101. </div>
  102. <div class="stat-card">
  103. <h3>平均订单金额</h3>
  104. <div class="stat-value">¥<?php echo number_format($sales_overview['avg_order_value'], 2); ?></div>
  105. </div>
  106. </div>
  107. <?php
  108. }
  109. /**
  110. * 渲染月度销售趋势图
  111. *
  112. * @param array $monthly_labels 月份标签
  113. * @param array $monthly_orders 月度订单数量
  114. * @param array $monthly_revenue 月度收入
  115. * @return void
  116. */
  117. function renderMonthlySalesTrendChart($monthly_labels, $monthly_orders, $monthly_revenue) {
  118. ?>
  119. <div class="chart-container">
  120. <div class="chart-header">
  121. <h2 class="chart-title">销售趋势</h2>
  122. </div>
  123. <canvas id="salesTrendChart"></canvas>
  124. </div>
  125. <script>
  126. // 销售趋势图
  127. var salesTrendCtx = document.getElementById('salesTrendChart').getContext('2d');
  128. var salesTrendChart = new Chart(salesTrendCtx, {
  129. type: 'line',
  130. data: {
  131. labels: <?php echo json_encode($monthly_labels); ?>,
  132. datasets: [
  133. {
  134. label: '订单数量',
  135. data: <?php echo json_encode($monthly_orders); ?>,
  136. backgroundColor: 'rgba(54, 162, 235, 0.2)',
  137. borderColor: 'rgba(54, 162, 235, 1)',
  138. borderWidth: 2,
  139. yAxisID: 'y-orders'
  140. },
  141. {
  142. label: '销售收入',
  143. data: <?php echo json_encode($monthly_revenue); ?>,
  144. backgroundColor: 'rgba(255, 99, 132, 0.2)',
  145. borderColor: 'rgba(255, 99, 132, 1)',
  146. borderWidth: 2,
  147. yAxisID: 'y-revenue'
  148. }
  149. ]
  150. },
  151. options: {
  152. responsive: true,
  153. scales: {
  154. 'y-orders': {
  155. type: 'linear',
  156. position: 'left',
  157. title: {
  158. display: true,
  159. text: '订单数量'
  160. }
  161. },
  162. 'y-revenue': {
  163. type: 'linear',
  164. position: 'right',
  165. title: {
  166. display: true,
  167. text: '销售收入'
  168. },
  169. grid: {
  170. drawOnChartArea: false
  171. }
  172. }
  173. }
  174. }
  175. });
  176. </script>
  177. <?php
  178. }
  179. /**
  180. * 渲染详细订单趋势图
  181. *
  182. * @param array $time_labels 时间标签
  183. * @param array $time_orders 时间段订单数量
  184. * @param array $time_quantities 时间段产品数量
  185. * @param string $period 时间粒度
  186. * @return void
  187. */
  188. function renderDetailedOrderTrendChart($time_labels, $time_orders, $time_quantities, $period = 'day') {
  189. $period_text = $period == 'day' ? '日' : ($period == 'week' ? '周' : '月');
  190. ?>
  191. <div class="chart-container">
  192. <div class="chart-header">
  193. <h2 class="chart-title">详细订单趋势 (<?php echo $period_text; ?>)</h2>
  194. </div>
  195. <canvas id="detailedOrdersChart"></canvas>
  196. </div>
  197. <script>
  198. // 详细时间段订单趋势图
  199. var detailedOrdersCtx = document.getElementById('detailedOrdersChart').getContext('2d');
  200. var detailedOrdersChart = new Chart(detailedOrdersCtx, {
  201. type: 'line',
  202. data: {
  203. labels: <?php echo json_encode($time_labels); ?>,
  204. datasets: [
  205. {
  206. label: '订单数量',
  207. data: <?php echo json_encode($time_orders); ?>,
  208. backgroundColor: 'rgba(75, 192, 192, 0.2)',
  209. borderColor: 'rgba(75, 192, 192, 1)',
  210. borderWidth: 2,
  211. yAxisID: 'y-orders',
  212. tension: 0.1
  213. },
  214. {
  215. label: '产品订购数量',
  216. data: <?php echo json_encode($time_quantities); ?>,
  217. backgroundColor: 'rgba(255, 159, 64, 0.2)',
  218. borderColor: 'rgba(255, 159, 64, 1)',
  219. borderWidth: 2,
  220. yAxisID: 'y-quantity',
  221. tension: 0.1
  222. }
  223. ]
  224. },
  225. options: {
  226. responsive: true,
  227. scales: {
  228. x: {
  229. title: {
  230. display: true,
  231. text: '时间'
  232. }
  233. },
  234. 'y-orders': {
  235. type: 'linear',
  236. position: 'left',
  237. title: {
  238. display: true,
  239. text: '订单数量'
  240. },
  241. beginAtZero: true
  242. },
  243. 'y-quantity': {
  244. type: 'linear',
  245. position: 'right',
  246. title: {
  247. display: true,
  248. text: '产品订购数量'
  249. },
  250. beginAtZero: true,
  251. grid: {
  252. drawOnChartArea: false
  253. }
  254. }
  255. }
  256. }
  257. });
  258. </script>
  259. <?php
  260. }