query($sql_employees); // 计算上一个时间段范围(用于比较) $previous_start_date = ''; $previous_end_date = ''; // 根据当前选择的日期范围,计算上一个对比时段 if ($date_range == 'current_month') { // 上个月 $previous_start_date = date('Y-m-01', strtotime('-1 month', strtotime($current_start_date))); $previous_end_date = date('Y-m-t', strtotime('-1 month', strtotime($current_end_date))); } elseif ($date_range == 'last_month') { // 上上个月 $previous_start_date = date('Y-m-01', strtotime('-2 month', strtotime($current_start_date))); $previous_end_date = date('Y-m-t', strtotime('-2 month', strtotime($current_end_date))); } elseif ($date_range == 'current_year') { // 去年同期 $previous_start_date = date('Y-01-01', strtotime('-1 year', strtotime($current_start_date))); $previous_end_date = date('Y-12-31', strtotime('-1 year', strtotime($current_end_date))); } elseif ($date_range == 'last_30_days' || $date_range == 'last_90_days' || $date_range == 'custom') { // 上一个同长度周期 $date_diff = (strtotime($current_end_date) - strtotime($current_start_date)) / (60 * 60 * 24); $previous_end_date = date('Y-m-d', strtotime('-1 day', strtotime($current_start_date))); $previous_start_date = date('Y-m-d', strtotime("-{$date_diff} day", strtotime($previous_end_date))); } // 阈值设置(可以移到数据库或配置文件中) $order_amount_decrease_threshold = -15; // 订单金额下降超过15%触发预警 $repurchase_cycle_threshold = 90; // 复购周期超过90天触发预警(3个月内未录入订单) $inactive_threshold = 90; // 90天未有客户信息修改视为不活跃客户(3个月) $churn_threshold = 365; // 365天未下单视为流失客户(1年) $normal_repurchase_days = 30; // 正常复购周期参考值(天) // 页面头部 include('statistics_header.php'); ?>
监控订单异常情况,提前预警潜在问题
与上一周期相比,订单金额显著下降的客户
客户名称 | 本期订单金额 | 上期订单金额 | 变化百分比 | 最近出货日期 | 业务员 | 操作 |
---|---|---|---|---|---|---|
" . htmlspecialchars($customer['cs_company']) . " | "; echo "¥" . number_format($customer['current_amount'], 2) . " | "; echo "¥" . number_format($customer['previous_amount'], 2) . " | "; echo "" . $change_percent . "% | "; echo "" . $customer['last_order_date'] . " | "; echo "" . htmlspecialchars($customer['em_user']) . " | "; echo "查看 | "; echo "
没有发现订单金额下降的客户 |
3个月内未录入订单的客户
客户编码 | 客户名称 | 上次订单日期 | 未订单天数 | 历史订单总数 | 历史订单总额 | 业务员 | 操作 |
---|---|---|---|---|---|---|---|
" . htmlspecialchars($customer['cs_code']) . " | "; echo "" . htmlspecialchars($customer['cs_company'] ?: '未填写') . " | "; echo "" . ($customer['last_order_date'] ? $customer['last_order_date'] : '从未下单') . " | "; echo "" . $inactive_days . " | "; echo "" . $customer['order_count'] . " | "; echo "¥" . number_format($customer['total_amount'], 2) . " | "; echo "" . htmlspecialchars($customer['em_user']) . " | "; echo "查看 | "; echo "
没有发现复购周期异常的客户 |
1年内未录入订单的客户
客户编码 | 客户名称 | 最后出货日期 | 未订单天数 | 历史订单数 | 历史订单总额 | 业务员 | 操作 |
---|---|---|---|---|---|---|---|
" . htmlspecialchars($customer['cs_code']) . " | "; echo "" . htmlspecialchars($customer['cs_company'] ?: '未填写') . " | "; echo "" . ($customer['last_order_date'] ? $customer['last_order_date'] : '从未下单') . " | "; echo "" . $inactive_days . " | "; echo "" . $customer['order_count'] . " | "; echo "¥" . number_format($customer['total_amount'], 2) . " | "; echo "" . htmlspecialchars($customer['em_user']) . " | "; echo "查看 | "; echo "
没有发现流失客户 |
最近12个月的订单数量和金额趋势