123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149 |
- <?php
- /**
- * 产品统计分析模块
- *
- * 包含与产品相关的数据分析功能
- */
- require_once 'statistics_utils.php';
- /**
- * 获取热门产品数据
- *
- * @param mysqli $conn 数据库连接
- * @param string $start_date 开始日期
- * @param string $end_date 结束日期
- * @param int $limit 限制返回的产品数量
- * @return mysqli_result 热门产品数据结果集
- */
- function getTopProducts($conn, $start_date, $end_date, $limit = 5) {
- $sql = "SELECT
- p.ProductName,
- SUM(oi.quantity) as total_quantity,
- SUM(oi.total_price) as total_revenue
- FROM order_items oi
- JOIN products p ON oi.product_id = p.id
- JOIN orders o ON oi.order_id = o.id
- WHERE o.order_date BETWEEN ? AND ?
- GROUP BY oi.product_id
- ORDER BY total_revenue DESC
- LIMIT ?";
-
- $stmt = $conn->prepare($sql);
- $stmt->bind_param("ssi", $start_date, $end_date, $limit);
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 获取产品销售趋势
- *
- * @param mysqli $conn 数据库连接
- * @param string $start_date 开始日期
- * @param string $end_date 结束日期
- * @param int $product_id 产品ID,为0时获取所有产品的总体趋势
- * @param string $period 时间粒度 (day/week/month)
- * @return mysqli_result 产品销售趋势数据结果集
- */
- function getProductSalesTrend($conn, $start_date, $end_date, $product_id = 0, $period = 'month') {
- $groupFormat = '%Y-%m-%d';
- if ($period == 'week') {
- $groupFormat = '%x-W%v'; // ISO year and week number
- } else if ($period == 'month') {
- $groupFormat = '%Y-%m';
- }
-
- $sql = "SELECT
- DATE_FORMAT(o.order_date, '$groupFormat') as time_period,
- SUM(oi.quantity) as total_quantity,
- SUM(oi.total_price) as total_revenue,
- COUNT(DISTINCT o.id) as order_count
- FROM order_items oi
- JOIN orders o ON oi.order_id = o.id";
-
- if ($product_id > 0) {
- $sql .= " WHERE o.order_date BETWEEN ? AND ? AND oi.product_id = ?";
- } else {
- $sql .= " WHERE o.order_date BETWEEN ? AND ?";
- }
-
- $sql .= " GROUP BY time_period
- ORDER BY MIN(o.order_date)";
-
- $stmt = $conn->prepare($sql);
-
- if ($product_id > 0) {
- $stmt->bind_param("ssi", $start_date, $end_date, $product_id);
- } else {
- $stmt->bind_param("ss", $start_date, $end_date);
- }
-
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 获取产品类别销售分布
- *
- * @param mysqli $conn 数据库连接
- * @param string $start_date 开始日期
- * @param string $end_date 结束日期
- * @return mysqli_result 产品类别销售分布数据结果集
- */
- function getProductCategorySales($conn, $start_date, $end_date) {
- $sql = "SELECT
- pc.name as category_name,
- SUM(oi.quantity) as total_quantity,
- SUM(oi.total_price) as total_revenue,
- COUNT(DISTINCT o.id) as order_count
- FROM order_items oi
- JOIN products p ON oi.product_id = p.id
- JOIN product_categories pc ON p.category_id = pc.id
- JOIN orders o ON oi.order_id = o.id
- WHERE o.order_date BETWEEN ? AND ?
- GROUP BY p.category_id
- ORDER BY total_revenue DESC";
-
- $stmt = $conn->prepare($sql);
- $stmt->bind_param("ss", $start_date, $end_date);
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 获取产品与地区关联分析
- *
- * @param mysqli $conn 数据库连接
- * @param string $start_date 开始日期
- * @param string $end_date 结束日期
- * @param int $limit 限制返回的产品-地区组合数量
- * @return mysqli_result 产品与地区关联分析数据结果集
- */
- function getProductRegionAnalysis($conn, $start_date, $end_date, $limit = 10) {
- $sql = "SELECT
- p.ProductName,
- c.countryName,
- SUM(oi.quantity) as total_quantity,
- SUM(oi.total_price) as total_revenue
- FROM order_items oi
- JOIN products p ON oi.product_id = p.id
- JOIN orders o ON oi.order_id = o.id
- JOIN customer cu ON o.customer_id = cu.id
- JOIN country c ON cu.cs_country = c.id
- WHERE o.order_date BETWEEN ? AND ?
- GROUP BY oi.product_id, cu.cs_country
- ORDER BY total_revenue DESC
- LIMIT ?";
-
- $stmt = $conn->prepare($sql);
- $stmt->bind_param("ssi", $start_date, $end_date, $limit);
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 获取产品销售概览数据
- */
- function getProductSalesOverview($conn, $start_date, $end_date, $category_filter = 0) {
- $where_clause = "WHERE o.order_date BETWEEN ? AND ?";
- $params = [$start_date, $end_date];
-
- if ($category_filter > 0) {
- $where_clause .= " AND p.category_id = ?";
- $params[] = $category_filter;
- }
-
- $sql = "SELECT
- COUNT(DISTINCT oi.product_id) as total_products,
- SUM(oi.quantity) as total_quantity,
- SUM(oi.total_price) as total_revenue,
- AVG(oi.unit_price) as avg_unit_price,
- COUNT(DISTINCT o.id) as total_orders,
- SUM(oi.total_price) / COUNT(DISTINCT o.id) as avg_order_value,
- COUNT(DISTINCT o.customer_id) as total_customers
- FROM order_items oi
- JOIN orders o ON oi.order_id = o.id
- JOIN products p ON oi.product_id = p.id
- $where_clause";
-
- $stmt = $conn->prepare($sql);
- $stmt->bind_param(str_repeat('s', count($params)), ...$params);
- $stmt->execute();
- return $stmt->get_result()->fetch_assoc();
- }
- /**
- * 获取产品价格趋势分析
- */
- function getProductPriceTrendAnalysis($conn, $start_date, $end_date, $product_id = 0, $period = 'month') {
- $groupFormat = getPeriodFormat($period);
-
- $sql = "SELECT
- DATE_FORMAT(o.order_date, '$groupFormat') as time_period,
- AVG(oi.unit_price) as avg_price,
- MIN(oi.unit_price) as min_price,
- MAX(oi.unit_price) as max_price
- FROM order_items oi
- JOIN orders o ON oi.order_id = o.id";
-
- if ($product_id > 0) {
- $sql .= " WHERE o.order_date BETWEEN ? AND ? AND oi.product_id = ?";
- } else {
- $sql .= " WHERE o.order_date BETWEEN ? AND ?";
- }
-
- $sql .= " GROUP BY time_period ORDER BY MIN(o.order_date)";
-
- $stmt = $conn->prepare($sql);
- if ($product_id > 0) {
- $stmt->bind_param("ssi", $start_date, $end_date, $product_id);
- } else {
- $stmt->bind_param("ss", $start_date, $end_date);
- }
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 获取产品季节性分析
- */
- function getProductSeasonalityAnalysis($conn, $start_date, $end_date, $product_id = 0) {
- $sql = "SELECT
- MONTH(o.order_date) as month,
- SUM(oi.quantity) as total_quantity,
- SUM(oi.total_price) as total_revenue,
- COUNT(DISTINCT o.id) as order_count
- FROM order_items oi
- JOIN orders o ON oi.order_id = o.id";
-
- if ($product_id > 0) {
- $sql .= " WHERE oi.product_id = ? AND o.order_date BETWEEN ? AND ?";
- } else {
- $sql .= " WHERE o.order_date BETWEEN ? AND ?";
- }
-
- $sql .= " GROUP BY MONTH(o.order_date)
- ORDER BY MONTH(o.order_date)";
-
- $stmt = $conn->prepare($sql);
- if ($product_id > 0) {
- $stmt->bind_param("iss", $product_id, $start_date, $end_date);
- } else {
- $stmt->bind_param("ss", $start_date, $end_date);
- }
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 获取产品客户细分分析
- */
- function getProductCustomerSegmentAnalysis($conn, $start_date, $end_date, $product_id = 0) {
- $sql = "SELECT
- ct.businessType as segment_name,
- COUNT(DISTINCT o.customer_id) as customer_count,
- SUM(oi.quantity) as total_quantity,
- SUM(oi.total_price) as total_revenue,
- AVG(oi.unit_price) as avg_unit_price
- FROM order_items oi
- JOIN orders o ON oi.order_id = o.id
- JOIN customer c ON o.customer_id = c.id
- JOIN clienttype ct ON c.cs_type = ct.id";
-
- if ($product_id > 0) {
- $sql .= " WHERE oi.product_id = ? AND o.order_date BETWEEN ? AND ?";
- } else {
- $sql .= " WHERE o.order_date BETWEEN ? AND ?";
- }
-
- $sql .= " GROUP BY ct.id";
-
- $stmt = $conn->prepare($sql);
- if ($product_id > 0) {
- $stmt->bind_param("iss", $product_id, $start_date, $end_date);
- } else {
- $stmt->bind_param("ss", $start_date, $end_date);
- }
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 获取产品分类列表
- *
- * @param mysqli $conn 数据库连接
- * @return mysqli_result 产品分类数据结果集
- */
- function getProductCategories($conn) {
- $sql = "SELECT
- id,
- parent_id,
- name,
- description,
- sort_order
- FROM product_categories
- WHERE status = 1
- ORDER BY sort_order ASC, id ASC";
-
- $stmt = $conn->prepare($sql);
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 渲染热门产品表格
- *
- * @param mysqli_result $top_products 热门产品数据
- * @return void
- */
- function renderTopProductsTable($top_products) {
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">热门产品</h2>
- </div>
- <table class="data-table">
- <thead>
- <tr>
- <th>产品名称</th>
- <th>销售数量</th>
- <th>销售收入</th>
- </tr>
- </thead>
- <tbody>
- <?php while ($row = $top_products->fetch_assoc()): ?>
- <tr>
- <td><?php echo htmlspecialchars($row['ProductName']); ?></td>
- <td><?php echo number_format($row['total_quantity']); ?></td>
- <td>¥<?php echo number_format($row['total_revenue'], 2); ?></td>
- </tr>
- <?php endwhile; ?>
- </tbody>
- </table>
- </div>
- <?php
- }
- /**
- * 渲染产品销售趋势图
- *
- * @param array $time_labels 时间标签
- * @param array $quantities 产品销售数量
- * @param array $revenues 产品销售收入
- * @return void
- */
- function renderProductSalesTrendChart($time_labels, $quantities, $revenues) {
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品销售趋势</h2>
- </div>
- <canvas id="productSalesTrendChart"></canvas>
- </div>
-
- <script>
- // 产品销售趋势图
- var productSalesTrendCtx = document.getElementById('productSalesTrendChart').getContext('2d');
- var productSalesTrendChart = new Chart(productSalesTrendCtx, {
- type: 'line',
- data: {
- labels: <?php echo json_encode($time_labels); ?>,
- datasets: [
- {
- label: '销售数量',
- data: <?php echo json_encode($quantities); ?>,
- backgroundColor: 'rgba(54, 162, 235, 0.2)',
- borderColor: 'rgba(54, 162, 235, 1)',
- borderWidth: 2,
- yAxisID: 'y-quantity',
- tension: 0.1
- },
- {
- label: '销售收入',
- data: <?php echo json_encode($revenues); ?>,
- backgroundColor: 'rgba(255, 99, 132, 0.2)',
- borderColor: 'rgba(255, 99, 132, 1)',
- borderWidth: 2,
- yAxisID: 'y-revenue',
- tension: 0.1
- }
- ]
- },
- options: {
- responsive: true,
- scales: {
- 'y-quantity': {
- type: 'linear',
- position: 'left',
- title: {
- display: true,
- text: '销售数量'
- },
- beginAtZero: true
- },
- 'y-revenue': {
- type: 'linear',
- position: 'right',
- title: {
- display: true,
- text: '销售收入'
- },
- beginAtZero: true,
- grid: {
- drawOnChartArea: false
- }
- }
- }
- }
- });
- </script>
- <?php
- }
- /**
- * 渲染产品类别销售分布图
- *
- * @param array $categories 类别名称
- * @param array $quantities 类别销售数量
- * @param array $revenues 类别销售收入
- * @return void
- */
- function renderProductCategorySalesChart($categories, $quantities, $revenues) {
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品类别销售分布</h2>
- </div>
- <style>
- .pie-charts-container {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-bottom: 20px;
- }
- .pie-chart-wrapper {
- flex: 0 0 48%;
- max-width: 48%;
- }
- </style>
- <div class="pie-charts-container">
- <div class="pie-chart-wrapper">
- <h3 style="text-align: center; margin-bottom: 15px;">产品类别销售数量分布</h3>
- <canvas id="categoryQuantityChart"></canvas>
- </div>
- <div class="pie-chart-wrapper">
- <h3 style="text-align: center; margin-bottom: 15px;">产品类别销售收入分布</h3>
- <canvas id="categoryRevenueChart"></canvas>
- </div>
- </div>
- </div>
-
- <script>
- // 产品类别数量分布图
- var categoryQuantityCtx = document.getElementById('categoryQuantityChart').getContext('2d');
- var categoryQuantityChart = new Chart(categoryQuantityCtx, {
- type: 'pie',
- data: {
- labels: <?php echo json_encode($categories); ?>,
- datasets: [{
- data: <?php echo json_encode($quantities); ?>,
- backgroundColor: [
- 'rgba(255, 99, 132, 0.7)',
- 'rgba(54, 162, 235, 0.7)',
- 'rgba(255, 206, 86, 0.7)',
- 'rgba(75, 192, 192, 0.7)',
- 'rgba(153, 102, 255, 0.7)',
- 'rgba(255, 159, 64, 0.7)'
- ],
- borderWidth: 1
- }]
- },
- options: {
- responsive: true,
- maintainAspectRatio: true,
- plugins: {
- legend: {
- position: 'bottom',
- }
- }
- }
- });
-
- // 产品类别收入分布图
- var categoryRevenueCtx = document.getElementById('categoryRevenueChart').getContext('2d');
- var categoryRevenueChart = new Chart(categoryRevenueCtx, {
- type: 'pie',
- data: {
- labels: <?php echo json_encode($categories); ?>,
- datasets: [{
- data: <?php echo json_encode($revenues); ?>,
- backgroundColor: [
- 'rgba(255, 99, 132, 0.7)',
- 'rgba(54, 162, 235, 0.7)',
- 'rgba(255, 206, 86, 0.7)',
- 'rgba(75, 192, 192, 0.7)',
- 'rgba(153, 102, 255, 0.7)',
- 'rgba(255, 159, 64, 0.7)'
- ],
- borderWidth: 1
- }]
- },
- options: {
- responsive: true,
- maintainAspectRatio: true,
- plugins: {
- legend: {
- position: 'bottom',
- }
- }
- }
- });
- </script>
- <?php
- }
- /**
- * 渲染产品与地区关联分析表格
- *
- * @param mysqli_result $product_region_data 产品与地区关联数据
- * @return void
- */
- function renderProductRegionAnalysisTable($product_region_data) {
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品地区关联分析</h2>
- </div>
- <table class="data-table">
- <thead>
- <tr>
- <th>产品名称</th>
- <th>国家/地区</th>
- <th>销售数量</th>
- <th>销售收入</th>
- </tr>
- </thead>
- <tbody>
- <?php while ($row = $product_region_data->fetch_assoc()): ?>
- <tr>
- <td><?php echo htmlspecialchars($row['ProductName']); ?></td>
- <td><?php echo htmlspecialchars($row['countryName']); ?></td>
- <td><?php echo number_format($row['total_quantity']); ?></td>
- <td>¥<?php echo number_format($row['total_revenue'], 2); ?></td>
- </tr>
- <?php endwhile; ?>
- </tbody>
- </table>
- </div>
- <?php
- }
- /**
- * 渲染产品销售概览
- */
- function renderProductSalesOverview($overview) {
- // 处理可能为null的值
- $total_products = isset($overview['total_products']) ? $overview['total_products'] : 0;
- $total_quantity = isset($overview['total_quantity']) ? $overview['total_quantity'] : 0;
- $total_revenue = isset($overview['total_revenue']) ? $overview['total_revenue'] : 0;
- $avg_unit_price = isset($overview['avg_unit_price']) ? $overview['avg_unit_price'] : 0;
- $total_orders = isset($overview['total_orders']) ? $overview['total_orders'] : 0;
- $avg_order_value = isset($overview['avg_order_value']) ? $overview['avg_order_value'] : 0;
- ?>
- <div class="stats-card-container">
- <div class="stats-card">
- <div class="stats-card-header">
- <h3>总销售产品数</h3>
- </div>
- <div class="stats-card-body">
- <div class="stats-card-value"><?php echo number_format($total_products); ?></div>
- <div class="stats-card-subtitle">种类</div>
- </div>
- </div>
-
- <div class="stats-card">
- <div class="stats-card-header">
- <h3>总销售数量</h3>
- </div>
- <div class="stats-card-body">
- <div class="stats-card-value"><?php echo number_format($total_quantity); ?></div>
- <div class="stats-card-subtitle">件</div>
- </div>
- </div>
-
- <div class="stats-card">
- <div class="stats-card-header">
- <h3>总销售收入</h3>
- </div>
- <div class="stats-card-body">
- <div class="stats-card-value">¥<?php echo number_format($total_revenue, 2); ?></div>
- <div class="stats-card-subtitle">元</div>
- </div>
- </div>
-
- <div class="stats-card">
- <div class="stats-card-header">
- <h3>平均单价</h3>
- </div>
- <div class="stats-card-body">
- <div class="stats-card-value">¥<?php echo number_format($avg_unit_price, 2); ?></div>
- <div class="stats-card-subtitle">元/件</div>
- </div>
- </div>
-
- <div class="stats-card">
- <div class="stats-card-header">
- <h3>订单数量</h3>
- </div>
- <div class="stats-card-body">
- <div class="stats-card-value"><?php echo number_format($total_orders); ?></div>
- <div class="stats-card-subtitle">笔</div>
- </div>
- </div>
-
- <div class="stats-card">
- <div class="stats-card-header">
- <h3>平均订单金额</h3>
- </div>
- <div class="stats-card-body">
- <div class="stats-card-value">¥<?php echo number_format($avg_order_value, 2); ?></div>
- <div class="stats-card-subtitle">元/订单</div>
- </div>
- </div>
- </div>
- <?php
- }
- /**
- * 渲染产品价格趋势图表
- */
- function renderProductPriceTrendChart($price_trend_data) {
- $time_periods = [];
- $avg_prices = [];
- $min_prices = [];
- $max_prices = [];
-
- while ($row = $price_trend_data->fetch_assoc()) {
- $time_periods[] = $row['time_period'];
- $avg_prices[] = round($row['avg_price'], 2);
- $min_prices[] = round($row['min_price'], 2);
- $max_prices[] = round($row['max_price'], 2);
- }
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品价格趋势分析</h2>
- </div>
- <canvas id="priceTrendChart"></canvas>
- </div>
-
- <script>
- var priceTrendCtx = document.getElementById('priceTrendChart').getContext('2d');
- new Chart(priceTrendCtx, {
- type: 'line',
- data: {
- labels: <?php echo json_encode($time_periods); ?>,
- datasets: [
- {
- label: '平均价格',
- data: <?php echo json_encode($avg_prices); ?>,
- borderColor: 'rgb(54, 162, 235)',
- backgroundColor: 'rgba(54, 162, 235, 0.1)',
- borderWidth: 2,
- fill: false
- },
- {
- label: '最低价格',
- data: <?php echo json_encode($min_prices); ?>,
- borderColor: 'rgb(75, 192, 192)',
- backgroundColor: 'rgba(75, 192, 192, 0.1)',
- borderWidth: 2,
- fill: false
- },
- {
- label: '最高价格',
- data: <?php echo json_encode($max_prices); ?>,
- borderColor: 'rgb(255, 99, 132)',
- backgroundColor: 'rgba(255, 99, 132, 0.1)',
- borderWidth: 2,
- fill: false
- }
- ]
- },
- options: {
- responsive: true,
- scales: {
- y: {
- beginAtZero: true,
- title: {
- display: true,
- text: '价格 (元)'
- }
- }
- },
- plugins: {
- title: {
- display: true,
- text: '产品价格变化趋势'
- }
- }
- }
- });
- </script>
- <?php
- }
- /**
- * 渲染产品季节性分析图表
- */
- function renderProductSeasonalityChart($seasonality_data) {
- $months = [];
- $quantities = [];
- $revenues = [];
- $order_counts = [];
-
- while ($row = $seasonality_data->fetch_assoc()) {
- $months[] = date('n月', mktime(0, 0, 0, $row['month'], 1));
- $quantities[] = (int)$row['total_quantity'];
- $revenues[] = round($row['total_revenue'], 2);
- $order_counts[] = (int)$row['order_count'];
- }
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品季节性分析</h2>
- </div>
- <canvas id="seasonalityChart"></canvas>
- </div>
-
- <script>
- var seasonalityCtx = document.getElementById('seasonalityChart').getContext('2d');
- new Chart(seasonalityCtx, {
- type: 'bar',
- data: {
- labels: <?php echo json_encode($months); ?>,
- datasets: [
- {
- label: '销售数量',
- data: <?php echo json_encode($quantities); ?>,
- backgroundColor: 'rgba(54, 162, 235, 0.5)',
- borderColor: 'rgb(54, 162, 235)',
- borderWidth: 1,
- yAxisID: 'y-quantity'
- },
- {
- label: '销售收入',
- data: <?php echo json_encode($revenues); ?>,
- backgroundColor: 'rgba(255, 99, 132, 0.5)',
- borderColor: 'rgb(255, 99, 132)',
- borderWidth: 1,
- yAxisID: 'y-revenue'
- },
- {
- label: '订单数',
- data: <?php echo json_encode($order_counts); ?>,
- type: 'line',
- fill: false,
- borderColor: 'rgb(75, 192, 192)',
- tension: 0.1,
- yAxisID: 'y-orders'
- }
- ]
- },
- options: {
- responsive: true,
- scales: {
- 'y-quantity': {
- type: 'linear',
- position: 'left',
- title: {
- display: true,
- text: '销售数量'
- }
- },
- 'y-revenue': {
- type: 'linear',
- position: 'right',
- title: {
- display: true,
- text: '销售收入 (元)'
- },
- grid: {
- drawOnChartArea: false
- }
- },
- 'y-orders': {
- type: 'linear',
- position: 'right',
- title: {
- display: true,
- text: '订单数'
- },
- grid: {
- drawOnChartArea: false
- }
- }
- },
- plugins: {
- title: {
- display: true,
- text: '产品销售季节性分布'
- }
- }
- }
- });
- </script>
- <?php
- }
- /**
- * 渲染产品客户细分分析图表
- */
- function renderProductCustomerSegmentChart($segment_data) {
- $segments = [];
- $customer_counts = [];
- $revenues = [];
- $avg_prices = [];
-
- while ($row = $segment_data->fetch_assoc()) {
- $segments[] = $row['segment_name'];
- $customer_counts[] = (int)$row['customer_count'];
- $revenues[] = round($row['total_revenue'], 2);
- $avg_prices[] = round($row['avg_unit_price'], 2);
- }
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品客户细分分析</h2>
- </div>
- <div class="chart-row">
- <div class="chart-column">
- <canvas id="customerSegmentChart1"></canvas>
- </div>
- <div class="chart-column">
- <canvas id="customerSegmentChart2"></canvas>
- </div>
- </div>
- </div>
-
- <script>
- // 客户数量和收入分布
- var segmentCtx1 = document.getElementById('customerSegmentChart1').getContext('2d');
- new Chart(segmentCtx1, {
- type: 'bar',
- data: {
- labels: <?php echo json_encode($segments); ?>,
- datasets: [
- {
- label: '客户数量',
- data: <?php echo json_encode($customer_counts); ?>,
- backgroundColor: 'rgba(54, 162, 235, 0.5)',
- borderColor: 'rgb(54, 162, 235)',
- borderWidth: 1,
- yAxisID: 'y-customers'
- },
- {
- label: '销售收入',
- data: <?php echo json_encode($revenues); ?>,
- backgroundColor: 'rgba(255, 99, 132, 0.5)',
- borderColor: 'rgb(255, 99, 132)',
- borderWidth: 1,
- yAxisID: 'y-revenue'
- }
- ]
- },
- options: {
- responsive: true,
- scales: {
- 'y-customers': {
- type: 'linear',
- position: 'left',
- title: {
- display: true,
- text: '客户数量'
- }
- },
- 'y-revenue': {
- type: 'linear',
- position: 'right',
- title: {
- display: true,
- text: '销售收入 (元)'
- },
- grid: {
- drawOnChartArea: false
- }
- }
- },
- plugins: {
- title: {
- display: true,
- text: '客户细分分布'
- }
- }
- }
- });
- // 平均单价分布
- var segmentCtx2 = document.getElementById('customerSegmentChart2').getContext('2d');
- new Chart(segmentCtx2, {
- type: 'radar',
- data: {
- labels: <?php echo json_encode($segments); ?>,
- datasets: [{
- label: '平均单价',
- data: <?php echo json_encode($avg_prices); ?>,
- backgroundColor: 'rgba(75, 192, 192, 0.2)',
- borderColor: 'rgb(75, 192, 192)',
- pointBackgroundColor: 'rgb(75, 192, 192)',
- pointBorderColor: '#fff',
- pointHoverBackgroundColor: '#fff',
- pointHoverBorderColor: 'rgb(75, 192, 192)'
- }]
- },
- options: {
- responsive: true,
- plugins: {
- title: {
- display: true,
- text: '客户细分平均单价分布'
- }
- }
- }
- });
- </script>
- <?php
- }
- /**
- * 获取产品增长率分析
- */
- function getProductGrowthAnalysis($conn, $start_date, $end_date, $period = 'month') {
- $groupFormat = getPeriodFormat($period);
-
- // 获取当前期间的数据
- $sql = "SELECT
- p.ProductName,
- SUM(oi.total_price) as current_revenue,
- SUM(oi.quantity) as current_quantity,
- COUNT(DISTINCT o.id) as current_orders
- FROM order_items oi
- JOIN products p ON oi.product_id = p.id
- JOIN orders o ON oi.order_id = o.id
- WHERE o.order_date BETWEEN ? AND ?
- GROUP BY oi.product_id
- HAVING current_revenue > 0
- ORDER BY current_revenue DESC
- LIMIT 10";
-
- $stmt = $conn->prepare($sql);
- $stmt->bind_param("ss", $start_date, $end_date);
- $stmt->execute();
- $current_data = $stmt->get_result();
-
- // 计算上一个时间段
- $date1 = new DateTime($start_date);
- $date2 = new DateTime($end_date);
- $interval = $date1->diff($date2);
- $days_diff = $interval->days;
-
- $prev_end = $date1->format('Y-m-d');
- $prev_start = $date1->modify("-{$days_diff} days")->format('Y-m-d');
-
- // 获取上一期间的数据
- $sql = "SELECT
- p.ProductName,
- SUM(oi.total_price) as prev_revenue,
- SUM(oi.quantity) as prev_quantity,
- COUNT(DISTINCT o.id) as prev_orders
- FROM order_items oi
- JOIN products p ON oi.product_id = p.id
- JOIN orders o ON oi.order_id = o.id
- WHERE o.order_date BETWEEN ? AND ?
- GROUP BY oi.product_id";
-
- $stmt = $conn->prepare($sql);
- $stmt->bind_param("ss", $prev_start, $prev_end);
- $stmt->execute();
- $prev_result = $stmt->get_result();
-
- $prev_data = [];
- while ($row = $prev_result->fetch_assoc()) {
- $prev_data[$row['ProductName']] = $row;
- }
-
- $growth_data = [];
- while ($current = $current_data->fetch_assoc()) {
- $product_name = $current['ProductName'];
- $prev = isset($prev_data[$product_name]) ? $prev_data[$product_name] : [
- 'prev_revenue' => 0,
- 'prev_quantity' => 0,
- 'prev_orders' => 0
- ];
-
- $growth_data[] = [
- 'product_name' => $product_name,
- 'current_revenue' => $current['current_revenue'],
- 'current_quantity' => $current['current_quantity'],
- 'current_orders' => $current['current_orders'],
- 'prev_revenue' => $prev['prev_revenue'],
- 'prev_quantity' => $prev['prev_quantity'],
- 'prev_orders' => $prev['prev_orders'],
- 'revenue_growth' => calculateGrowthRate($current['current_revenue'], $prev['prev_revenue']),
- 'quantity_growth' => calculateGrowthRate($current['current_quantity'], $prev['prev_quantity']),
- 'orders_growth' => calculateGrowthRate($current['current_orders'], $prev['prev_orders'])
- ];
- }
-
- return $growth_data;
- }
- /**
- * 计算增长率
- */
- function calculateGrowthRate($current, $previous) {
- if ($previous == 0) {
- return $current > 0 ? 100 : 0;
- }
- return round((($current - $previous) / $previous) * 100, 2);
- }
- /**
- * 渲染产品增长率分析
- */
- function renderProductGrowthAnalysis($growth_data) {
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品增长率分析</h2>
- <div class="chart-subtitle">与上一时期相比</div>
- </div>
- <table class="data-table">
- <thead>
- <tr>
- <th>产品名称</th>
- <th>当期收入</th>
- <th>收入增长率</th>
- <th>当期销量</th>
- <th>销量增长率</th>
- <th>当期订单数</th>
- <th>订单增长率</th>
- </tr>
- </thead>
- <tbody>
- <?php foreach ($growth_data as $row): ?>
- <tr>
- <td><?php echo htmlspecialchars($row['product_name']); ?></td>
- <td>¥<?php echo number_format($row['current_revenue'], 2); ?></td>
- <td class="<?php echo $row['revenue_growth'] >= 0 ? 'positive' : 'negative'; ?>">
- <?php echo ($row['revenue_growth'] >= 0 ? '+' : '') . $row['revenue_growth']; ?>%
- </td>
- <td><?php echo number_format($row['current_quantity']); ?></td>
- <td class="<?php echo $row['quantity_growth'] >= 0 ? 'positive' : 'negative'; ?>">
- <?php echo ($row['quantity_growth'] >= 0 ? '+' : '') . $row['quantity_growth']; ?>%
- </td>
- <td><?php echo number_format($row['current_orders']); ?></td>
- <td class="<?php echo $row['orders_growth'] >= 0 ? 'positive' : 'negative'; ?>">
- <?php echo ($row['orders_growth'] >= 0 ? '+' : '') . $row['orders_growth']; ?>%
- </td>
- </tr>
- <?php endforeach; ?>
- </tbody>
- </table>
- </div>
-
- <style>
- .positive {
- color: #4CAF50;
- font-weight: bold;
- }
- .negative {
- color: #f44336;
- font-weight: bold;
- }
- .chart-subtitle {
- font-size: 14px;
- color: #666;
- margin-top: 5px;
- }
- </style>
- <?php
- }
- /**
- * 获取产品购买频率分析
- */
- function getProductPurchaseFrequency($conn, $start_date, $end_date) {
- $sql = "SELECT
- p.ProductName,
- COUNT(DISTINCT o.id) as order_count,
- COUNT(DISTINCT o.customer_id) as customer_count,
- COUNT(DISTINCT o.id) / COUNT(DISTINCT o.customer_id) as purchase_frequency,
- AVG(
- CASE
- WHEN next_order.next_date IS NOT NULL
- THEN DATEDIFF(next_order.next_date, o.order_date)
- ELSE NULL
- END
- ) as avg_days_between_orders
- FROM order_items oi
- JOIN products p ON oi.product_id = p.id
- JOIN orders o ON oi.order_id = o.id
- LEFT JOIN (
- SELECT
- o1.customer_id,
- o1.order_date,
- MIN(o2.order_date) as next_date
- FROM orders o1
- LEFT JOIN orders o2 ON o1.customer_id = o2.customer_id
- AND o2.order_date > o1.order_date
- WHERE o1.order_date BETWEEN ? AND ?
- GROUP BY o1.customer_id, o1.order_date
- ) next_order ON o.customer_id = next_order.customer_id
- AND o.order_date = next_order.order_date
- WHERE o.order_date BETWEEN ? AND ?
- GROUP BY p.id
- HAVING order_count > 1
- ORDER BY purchase_frequency DESC
- LIMIT 10";
-
- $stmt = $conn->prepare($sql);
- $stmt->bind_param("ssss", $start_date, $end_date, $start_date, $end_date);
- $stmt->execute();
- return $stmt->get_result();
- }
- /**
- * 渲染产品购买频率分析
- */
- function renderProductPurchaseFrequency($frequency_data) {
- ?>
- <div class="chart-container">
- <div class="chart-header">
- <h2 class="chart-title">产品购买频率分析</h2>
- </div>
- <table class="data-table">
- <thead>
- <tr>
- <th>产品名称</th>
- <th>订单总数</th>
- <th>购买客户数</th>
- <th>平均购买频率</th>
- <th>平均购买间隔(天)</th>
- </tr>
- </thead>
- <tbody>
- <?php while ($row = $frequency_data->fetch_assoc()): ?>
- <tr>
- <td><?php echo htmlspecialchars($row['ProductName']); ?></td>
- <td><?php echo number_format($row['order_count']); ?></td>
- <td><?php echo number_format($row['customer_count']); ?></td>
- <td><?php echo number_format($row['purchase_frequency'], 2); ?>次/客户</td>
- <td><?php echo $row['avg_days_between_orders'] ? number_format($row['avg_days_between_orders'], 1) : '-'; ?></td>
- </tr>
- <?php endwhile; ?>
- </tbody>
- </table>
- </div>
- <?php
- }
|