statistics_order_warnings.php 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133
  1. <?php
  2. /**
  3. * 订单预警系统 - 监控订单异常情况
  4. */
  5. require_once 'conn.php';
  6. require_once 'statistics_utils.php';
  7. // 检查登录状态
  8. if (!isset($_SESSION['employee_id'])) {
  9. checkLogin();
  10. }
  11. // 获取日期范围参数
  12. $date_params = getDateRangeParams();
  13. $current_start_date = $date_params['start_date_sql'];
  14. $current_end_date = $date_params['end_date_sql'];
  15. $date_range = $date_params['date_range'];
  16. // 获取选中的业务员ID
  17. $selected_employee = isset($_GET['employee_id']) ? intval($_GET['employee_id']) : 0;
  18. // 获取所有业务员列表
  19. $sql_employees = "SELECT id, em_user FROM employee ORDER BY em_user";
  20. $employees_result = $conn->query($sql_employees);
  21. // 计算上一个时间段范围(用于比较)
  22. $previous_start_date = '';
  23. $previous_end_date = '';
  24. // 根据当前选择的日期范围,计算上一个对比时段
  25. if ($date_range == 'current_month') {
  26. // 上个月
  27. $previous_start_date = date('Y-m-01', strtotime('-1 month', strtotime($current_start_date)));
  28. $previous_end_date = date('Y-m-t', strtotime('-1 month', strtotime($current_end_date)));
  29. } elseif ($date_range == 'last_month') {
  30. // 上上个月
  31. $previous_start_date = date('Y-m-01', strtotime('-2 month', strtotime($current_start_date)));
  32. $previous_end_date = date('Y-m-t', strtotime('-2 month', strtotime($current_end_date)));
  33. } elseif ($date_range == 'current_year') {
  34. // 去年同期
  35. $previous_start_date = date('Y-01-01', strtotime('-1 year', strtotime($current_start_date)));
  36. $previous_end_date = date('Y-12-31', strtotime('-1 year', strtotime($current_end_date)));
  37. } elseif ($date_range == 'last_30_days' || $date_range == 'last_90_days' || $date_range == 'custom') {
  38. // 上一个同长度周期
  39. $date_diff = (strtotime($current_end_date) - strtotime($current_start_date)) / (60 * 60 * 24);
  40. $previous_end_date = date('Y-m-d', strtotime('-1 day', strtotime($current_start_date)));
  41. $previous_start_date = date('Y-m-d', strtotime("-{$date_diff} day", strtotime($previous_end_date)));
  42. }
  43. // 阈值设置(可以移到数据库或配置文件中)
  44. $order_amount_decrease_threshold = -15; // 订单金额下降超过15%触发预警
  45. $repurchase_cycle_max_threshold = 90; // 复购周期超过90天触发预警
  46. $repurchase_cycle_min_threshold = 0.5; // 复购周期小于正常值的50%触发预警(异常频繁购买)
  47. $inactive_threshold = 60; // 60天未购买视为不活跃客户
  48. $normal_repurchase_days = 30; // 正常复购周期参考值(天)
  49. // 页面头部
  50. include('statistics_header.php');
  51. ?>
  52. <div class="page-header">
  53. <h1 class="page-title">订单预警系统</h1>
  54. <p class="page-description">监控订单异常情况,提前预警潜在问题</p>
  55. </div>
  56. <!-- 日期筛选 -->
  57. <div class="filter-form">
  58. <form method="get" class="filter-form-inline">
  59. <div class="form-group">
  60. <label for="date_range">分析周期</label>
  61. <select class="form-control" id="date_range" name="date_range" onchange="toggleCustomDates()">
  62. <option value="current_month" <?php echo $date_range == 'current_month' ? 'selected' : ''; ?>>本月</option>
  63. <option value="last_month" <?php echo $date_range == 'last_month' ? 'selected' : ''; ?>>上月</option>
  64. <option value="current_year" <?php echo $date_range == 'current_year' ? 'selected' : ''; ?>>今年</option>
  65. <option value="last_30_days" <?php echo $date_range == 'last_30_days' ? 'selected' : ''; ?>>最近30天</option>
  66. <option value="last_90_days" <?php echo $date_range == 'last_90_days' ? 'selected' : ''; ?>>最近90天</option>
  67. <option value="custom" <?php echo $date_range == 'custom' ? 'selected' : ''; ?>>自定义日期范围</option>
  68. </select>
  69. </div>
  70. <div class="form-group custom-date-inputs" id="custom_start_date" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  71. <label for="start_date">开始日期</label>
  72. <input type="date" class="form-control" id="start_date" name="start_date" value="<?php echo $date_params['custom_start']; ?>">
  73. </div>
  74. <div class="form-group custom-date-inputs" id="custom_end_date" style="display: <?php echo $date_range == 'custom' ? 'inline-block' : 'none'; ?>">
  75. <label for="end_date">结束日期</label>
  76. <input type="date" class="form-control" id="end_date" name="end_date" value="<?php echo $date_params['custom_end']; ?>">
  77. </div>
  78. <div class="form-group">
  79. <label for="employee_id">业务员</label>
  80. <select class="form-control" id="employee_id" name="employee_id">
  81. <option value="0">全部业务员</option>
  82. <?php while ($emp = $employees_result->fetch_assoc()): ?>
  83. <option value="<?php echo $emp['id']; ?>" <?php echo $selected_employee == $emp['id'] ? 'selected' : ''; ?>><?php echo htmlspecialchars($emp['em_user']); ?></option>
  84. <?php endwhile; ?>
  85. </select>
  86. </div>
  87. <div class="form-group">
  88. <button type="submit" class="form-btn form-btn-primary">应用筛选</button>
  89. </div>
  90. </form>
  91. </div>
  92. <!-- 预警概览 -->
  93. <div class="warnings-overview">
  94. <div class="row">
  95. <?php
  96. // 获取总预警数
  97. $sql_total_warnings = "SELECT
  98. (SELECT COUNT(*) FROM customer WHERE cs_deal = 3) as total_customers,
  99. (SELECT COUNT(DISTINCT customer_id) FROM orders WHERE order_date BETWEEN ? AND ?) as active_customers";
  100. $stmt = $conn->prepare($sql_total_warnings);
  101. $stmt->bind_param("ss", $current_start_date, $current_end_date);
  102. $stmt->execute();
  103. $result = $stmt->get_result();
  104. $warning_count = $result->fetch_assoc();
  105. // 获取订单金额下降的客户数
  106. $decreasing_amount_count = getDecreasingOrderAmountCustomers($conn, $current_start_date, $current_end_date, $previous_start_date, $previous_end_date, $order_amount_decrease_threshold, true, $selected_employee);
  107. // 获取复购周期异常的客户数
  108. $abnormal_cycle_count = getAbnormalRepurchaseCycleCustomers($conn, $current_start_date, $current_end_date, $repurchase_cycle_max_threshold, $repurchase_cycle_min_threshold, $normal_repurchase_days, true, $selected_employee);
  109. // 获取长期不活跃客户数
  110. $inactive_customers_count = getInactiveCustomers($conn, $current_end_date, $inactive_threshold, true, 1, 10, $selected_employee);
  111. ?>
  112. <div class="col-md-3">
  113. <div class="stat-card warning">
  114. <h3>订单金额下降客户</h3>
  115. <div class="stat-value"><?php echo $decreasing_amount_count; ?></div>
  116. <div class="stat-desc">金额下降超过<?php echo abs($order_amount_decrease_threshold); ?>%</div>
  117. </div>
  118. </div>
  119. <div class="col-md-3">
  120. <div class="stat-card warning">
  121. <h3>复购周期异常客户</h3>
  122. <div class="stat-value"><?php echo $abnormal_cycle_count; ?></div>
  123. <div class="stat-desc">周期异常或不规律</div>
  124. </div>
  125. </div>
  126. <div class="col-md-3">
  127. <div class="stat-card danger">
  128. <h3>长期不活跃客户</h3>
  129. <div class="stat-value"><?php echo $inactive_customers_count; ?></div>
  130. <div class="stat-desc"><?php echo $inactive_threshold; ?>天以上未下单</div>
  131. </div>
  132. </div>
  133. <div class="col-md-3">
  134. <div class="stat-card info">
  135. <h3>客户活跃率</h3>
  136. <div class="stat-value">
  137. <?php
  138. $active_rate = ($warning_count['total_customers'] > 0) ?
  139. round(($warning_count['active_customers'] / $warning_count['total_customers']) * 100, 1) : 0;
  140. echo $active_rate . '%';
  141. ?>
  142. </div>
  143. <div class="stat-desc">选定周期内下单客户占比</div>
  144. </div>
  145. </div>
  146. </div>
  147. </div>
  148. <!-- 订单金额下降客户列表 -->
  149. <div class="warning-section">
  150. <div class="section-header">
  151. <h2>订单金额下降客户</h2>
  152. <p>与上一周期相比,订单金额显著下降的客户</p>
  153. </div>
  154. <table class="data-table">
  155. <thead>
  156. <tr>
  157. <th>客户名称</th>
  158. <th>本期订单金额</th>
  159. <th>上期订单金额</th>
  160. <th>变化百分比</th>
  161. <th>最近订单日期</th>
  162. <th>业务员</th>
  163. <th>操作</th>
  164. </tr>
  165. </thead>
  166. <tbody>
  167. <?php
  168. $decreasing_customers = getDecreasingOrderAmountCustomers(
  169. $conn,
  170. $current_start_date,
  171. $current_end_date,
  172. $previous_start_date,
  173. $previous_end_date,
  174. $order_amount_decrease_threshold,
  175. false,
  176. $selected_employee
  177. );
  178. while ($customer = $decreasing_customers->fetch_assoc()) {
  179. $change_percent = round((($customer['current_amount'] - $customer['previous_amount']) / $customer['previous_amount']) * 100, 1);
  180. $change_class = $change_percent < -20 ? 'text-danger' : 'text-warning';
  181. echo "<tr>";
  182. echo "<td>" . htmlspecialchars($customer['cs_company']) . "</td>";
  183. echo "<td>¥" . number_format($customer['current_amount'], 2) . "</td>";
  184. echo "<td>¥" . number_format($customer['previous_amount'], 2) . "</td>";
  185. echo "<td class='{$change_class}'>" . $change_percent . "%</td>";
  186. echo "<td>" . $customer['last_order_date'] . "</td>";
  187. echo "<td>" . htmlspecialchars($customer['em_user']) . "</td>";
  188. echo "<td><a href='customer_detail.php?id=" . $customer['id'] . "&from_warning=1' class='action-btn action-btn-view'>查看</a></td>";
  189. echo "</tr>";
  190. }
  191. if ($decreasing_customers->num_rows == 0) {
  192. echo "<tr><td colspan='7' class='text-center'>没有发现订单金额下降的客户</td></tr>";
  193. }
  194. ?>
  195. </tbody>
  196. </table>
  197. </div>
  198. <!-- 复购周期异常客户列表 -->
  199. <div class="warning-section">
  200. <div class="section-header">
  201. <h2>复购周期异常客户</h2>
  202. <p>复购周期异常延长或缩短的客户</p>
  203. </div>
  204. <table class="data-table">
  205. <thead>
  206. <tr>
  207. <th>客户名称</th>
  208. <th>平均复购周期(天)</th>
  209. <th>最近复购周期(天)</th>
  210. <th>偏离正常值</th>
  211. <th>最近订单日期</th>
  212. <th>订单总数</th>
  213. <th>业务员</th>
  214. <th>操作</th>
  215. </tr>
  216. </thead>
  217. <tbody>
  218. <?php
  219. $abnormal_customers = getAbnormalRepurchaseCycleCustomers(
  220. $conn,
  221. $current_start_date,
  222. $current_end_date,
  223. $repurchase_cycle_max_threshold,
  224. $repurchase_cycle_min_threshold,
  225. $normal_repurchase_days,
  226. false,
  227. $selected_employee
  228. );
  229. while ($customer = $abnormal_customers->fetch_assoc()) {
  230. $deviation = round((($customer['recent_cycle'] - $normal_repurchase_days) / $normal_repurchase_days) * 100, 1);
  231. $deviation_text = $deviation > 0 ? "+{$deviation}%" : "{$deviation}%";
  232. $deviation_class = $deviation > 50 ? 'text-danger' : ($deviation < -30 ? 'text-warning' : 'text-info');
  233. echo "<tr>";
  234. echo "<td>" . htmlspecialchars($customer['cs_company']) . "</td>";
  235. echo "<td>" . round($customer['avg_cycle'], 1) . "</td>";
  236. echo "<td>" . round($customer['recent_cycle'], 1) . "</td>";
  237. echo "<td class='{$deviation_class}'>" . $deviation_text . "</td>";
  238. echo "<td>" . $customer['last_order_date'] . "</td>";
  239. echo "<td>" . $customer['order_count'] . "</td>";
  240. echo "<td>" . htmlspecialchars($customer['em_user']) . "</td>";
  241. echo "<td><a href='customer_detail.php?id=" . $customer['id'] . "&from_warning=1' class='action-btn action-btn-view'>查看</a></td>";
  242. echo "</tr>";
  243. }
  244. if ($abnormal_customers->num_rows == 0) {
  245. echo "<tr><td colspan='8' class='text-center'>没有发现复购周期异常的客户</td></tr>";
  246. }
  247. ?>
  248. </tbody>
  249. </table>
  250. </div>
  251. <!-- 长期不活跃客户列表 -->
  252. <div class="warning-section" id="inactive-customers">
  253. <div class="section-header">
  254. <h2>长期不活跃客户</h2>
  255. <p>超过<?php echo $inactive_threshold; ?>天未下单的客户</p>
  256. </div>
  257. <table class="data-table">
  258. <thead>
  259. <tr>
  260. <th>客户编码</th>
  261. <th>客户名称</th>
  262. <th>最后订单日期</th>
  263. <th>不活跃天数</th>
  264. <th>历史订单数</th>
  265. <th>历史订单总额</th>
  266. <th>业务员</th>
  267. <th>操作</th>
  268. </tr>
  269. </thead>
  270. <tbody>
  271. <?php
  272. // 获取分页参数
  273. $page = isset($_GET['inactive_page']) ? intval($_GET['inactive_page']) : 1;
  274. $page_size = 10; // 每页显示10条记录
  275. // 获取总记录数
  276. $total_inactive = getInactiveCustomers($conn, $current_end_date, $inactive_threshold, true, 1, 10, $selected_employee);
  277. // 计算总页数
  278. $total_pages = ceil($total_inactive / $page_size);
  279. // 确保页码合法
  280. if ($page < 1) $page = 1;
  281. if ($page > $total_pages && $total_pages > 0) $page = $total_pages;
  282. // 获取当页数据
  283. $inactive_customers = getInactiveCustomers($conn, $current_end_date, $inactive_threshold, false, $page, $page_size, $selected_employee);
  284. while ($customer = $inactive_customers->fetch_assoc()) {
  285. $inactive_days = $customer['inactive_days'];
  286. $inactive_class = $inactive_days > 90 ? 'text-danger' : 'text-warning';
  287. echo "<tr>";
  288. echo "<td title='{$customer['cs_code']}'>" . htmlspecialchars($customer['cs_code']) . "</td>";
  289. echo "<td>" . htmlspecialchars($customer['cs_company'] ?: '未填写') . "</td>";
  290. echo "<td>" . ($customer['last_order_date'] ? $customer['last_order_date'] : '从未下单') . "</td>";
  291. echo "<td class='{$inactive_class}'>" . $inactive_days . "</td>";
  292. echo "<td>" . $customer['order_count'] . "</td>";
  293. echo "<td>¥" . number_format($customer['total_amount'], 2) . "</td>";
  294. echo "<td>" . htmlspecialchars($customer['em_user']) . "</td>";
  295. echo "<td><a href='customer_detail.php?id=" . $customer['id'] . "&from_warning=1' class='action-btn action-btn-view'>查看</a></td>";
  296. echo "</tr>";
  297. }
  298. if ($inactive_customers->num_rows == 0) {
  299. echo "<tr><td colspan='8' class='text-center'>没有发现长期不活跃的客户</td></tr>";
  300. }
  301. ?>
  302. </tbody>
  303. </table>
  304. <!-- 分页控件 -->
  305. <?php if ($total_pages > 1): ?>
  306. <div class="pagination-container">
  307. <ul class="pagination">
  308. <?php
  309. // 生成分页链接的基础URL
  310. $base_url = '?';
  311. foreach ($_GET as $key => $value) {
  312. if ($key != 'inactive_page') {
  313. $base_url .= $key . '=' . urlencode($value) . '&';
  314. }
  315. }
  316. // 上一页链接
  317. if ($page > 1) {
  318. echo "<li class='pager-item'><a class='pager-link' href='{$base_url}inactive_page=" . ($page - 1) . "#inactive-customers'>上一页</a></li>";
  319. } else {
  320. echo "<li class='pager-item disabled'><a class='pager-link' href='#inactive-customers'>上一页</a></li>";
  321. }
  322. // 页码链接
  323. $start_page = max(1, $page - 2);
  324. $end_page = min($total_pages, $page + 2);
  325. if ($start_page > 1) {
  326. echo "<li class='pager-item'><a class='pager-link' href='{$base_url}inactive_page=1#inactive-customers'>1</a></li>";
  327. if ($start_page > 2) {
  328. echo "<li class='pager-item disabled'><a class='pager-link' href='#inactive-customers'>...</a></li>";
  329. }
  330. }
  331. for ($i = $start_page; $i <= $end_page; $i++) {
  332. if ($i == $page) {
  333. echo "<li class='pager-item active'><a class='pager-link' href='#inactive-customers'>{$i}</a></li>";
  334. } else {
  335. echo "<li class='pager-item'><a class='pager-link' href='{$base_url}inactive_page={$i}#inactive-customers'>{$i}</a></li>";
  336. }
  337. }
  338. if ($end_page < $total_pages) {
  339. if ($end_page < $total_pages - 1) {
  340. echo "<li class='pager-item disabled'><a class='pager-link' href='#inactive-customers'>...</a></li>";
  341. }
  342. echo "<li class='pager-item'><a class='pager-link' href='{$base_url}inactive_page={$total_pages}#inactive-customers'>{$total_pages}</a></li>";
  343. }
  344. // 下一页链接
  345. if ($page < $total_pages) {
  346. echo "<li class='pager-item'><a class='pager-link' href='{$base_url}inactive_page=" . ($page + 1) . "#inactive-customers'>下一页</a></li>";
  347. } else {
  348. echo "<li class='pager-item disabled'><a class='pager-link' href='#inactive-customers'>下一页</a></li>";
  349. }
  350. ?>
  351. </ul>
  352. <div class="pagination-info">
  353. 共 <?php echo $total_inactive; ?> 条记录,当前显示第 <?php echo $page; ?> 页,共 <?php echo $total_pages; ?> 页
  354. </div>
  355. </div>
  356. <?php endif; ?>
  357. </div>
  358. <!-- 总体订单趋势图 -->
  359. <div class="chart-section">
  360. <div class="section-header">
  361. <h2>总体订单趋势</h2>
  362. <p>最近12个月的订单数量和金额趋势</p>
  363. </div>
  364. <div class="chart-container">
  365. <canvas id="orderTrendChart"></canvas>
  366. </div>
  367. <?php
  368. // 获取最近12个月的订单趋势数据
  369. $sql_trend = "SELECT
  370. DATE_FORMAT(order_date, '%Y-%m') as month,
  371. COUNT(*) as order_count,
  372. SUM(total_amount) as total_amount
  373. FROM orders
  374. WHERE order_date >= DATE_SUB(?, INTERVAL 11 MONTH)
  375. GROUP BY DATE_FORMAT(order_date, '%Y-%m')
  376. ORDER BY month";
  377. $stmt = $conn->prepare($sql_trend);
  378. $stmt->bind_param("s", $current_end_date);
  379. $stmt->execute();
  380. $trend_result = $stmt->get_result();
  381. $months = [];
  382. $order_counts = [];
  383. $order_amounts = [];
  384. while ($row = $trend_result->fetch_assoc()) {
  385. $months[] = $row['month'];
  386. $order_counts[] = $row['order_count'];
  387. $order_amounts[] = $row['total_amount'];
  388. }
  389. // 转为JSON格式,用于JavaScript图表
  390. $months_json = json_encode($months);
  391. $order_counts_json = json_encode($order_counts);
  392. $order_amounts_json = json_encode($order_amounts);
  393. ?>
  394. </div>
  395. <style>
  396. .page-header {
  397. margin-bottom: 30px;
  398. }
  399. .page-title {
  400. font-size: 24px;
  401. margin-top: 0;
  402. margin-bottom: 5px;
  403. }
  404. .page-description {
  405. color: #666;
  406. margin-bottom: 0;
  407. }
  408. .filter-form {
  409. background-color: #f8f9fa;
  410. border-radius: 4px;
  411. padding: 20px;
  412. margin-bottom: 30px;
  413. box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  414. }
  415. .filter-form-inline {
  416. display: flex;
  417. flex-wrap: wrap;
  418. gap: 15px;
  419. align-items: end;
  420. }
  421. .warnings-overview {
  422. margin-bottom: 30px;
  423. }
  424. .warnings-overview .row {
  425. display: flex;
  426. flex-wrap: wrap;
  427. margin: 0 -10px;
  428. }
  429. .warnings-overview .col-md-3 {
  430. padding: 0 10px;
  431. width: 25%;
  432. flex: 0 0 25%;
  433. box-sizing: border-box;
  434. }
  435. @media (max-width: 992px) {
  436. .warnings-overview .col-md-3 {
  437. width: 50%;
  438. flex: 0 0 50%;
  439. }
  440. }
  441. @media (max-width: 576px) {
  442. .warnings-overview .col-md-3 {
  443. width: 100%;
  444. flex: 0 0 100%;
  445. }
  446. }
  447. .stat-card {
  448. border-radius: 8px;
  449. padding: 20px;
  450. color: #fff;
  451. height: 100%;
  452. margin-bottom: 20px;
  453. box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  454. text-align: center;
  455. transition: transform 0.3s ease;
  456. }
  457. .stat-card:hover {
  458. transform: translateY(-5px);
  459. }
  460. .stat-card h3 {
  461. margin-top: 0;
  462. font-size: 16px;
  463. font-weight: 500;
  464. margin-bottom: 10px;
  465. }
  466. .stat-value {
  467. font-size: 32px;
  468. font-weight: 600;
  469. margin-bottom: 10px;
  470. }
  471. .stat-desc {
  472. font-size: 15px;
  473. opacity: 0.8;
  474. }
  475. .stat-card.warning {
  476. background-color: #ff9800;
  477. }
  478. .stat-card.danger {
  479. background-color: #f44336;
  480. }
  481. .stat-card.info {
  482. background-color: #2196f3;
  483. }
  484. .stat-card.success {
  485. background-color: #4caf50;
  486. }
  487. .warning-section {
  488. background-color: white;
  489. border-radius: 8px;
  490. padding: 25px;
  491. margin-bottom: 35px;
  492. box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  493. }
  494. .section-header {
  495. margin-bottom: 20px;
  496. }
  497. .section-header h2 {
  498. font-size: 20px;
  499. margin-top: 0;
  500. margin-bottom: 5px;
  501. }
  502. .section-header p {
  503. color: #666;
  504. font-size: 15px;
  505. margin-bottom: 15px;
  506. }
  507. .chart-section {
  508. background-color: white;
  509. border-radius: 4px;
  510. padding: 20px;
  511. margin-bottom: 30px;
  512. box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  513. }
  514. .chart-container {
  515. height: 350px;
  516. }
  517. .text-danger {
  518. color: #f44336;
  519. }
  520. .text-warning {
  521. color: #ff9800;
  522. }
  523. .text-info {
  524. color: #2196f3;
  525. }
  526. /* 调整表格和内容样式 */
  527. .data-table {
  528. margin-bottom: 20px;
  529. width: 100%;
  530. font-size: 14px; /* 增加表格字体大小 */
  531. border-collapse: separate;
  532. border-spacing: 0;
  533. table-layout: fixed; /* 固定表格布局 */
  534. }
  535. .data-table th {
  536. font-size: 15px; /* 表头字体大小 */
  537. padding: 12px 15px;
  538. background-color: #f5f5f5;
  539. font-weight: 600;
  540. }
  541. .data-table td {
  542. padding: 12px 15px;
  543. vertical-align: middle;
  544. white-space: nowrap; /* 防止文本换行 */
  545. overflow: hidden; /* 溢出隐藏 */
  546. text-overflow: ellipsis; /* 文本溢出显示省略号 */
  547. }
  548. /* 为长期不活跃客户表格设置列宽 */
  549. #inactive-customers .data-table th:nth-child(1), /* 客户编码 */
  550. #inactive-customers .data-table td:nth-child(1) {
  551. width: 12%;
  552. }
  553. #inactive-customers .data-table th:nth-child(2), /* 客户名称 */
  554. #inactive-customers .data-table td:nth-child(2) {
  555. width: 20%;
  556. }
  557. #inactive-customers .data-table th:nth-child(3), /* 最后订单日期 */
  558. #inactive-customers .data-table td:nth-child(3) {
  559. width: 12%;
  560. }
  561. #inactive-customers .data-table th:nth-child(4), /* 不活跃天数 */
  562. #inactive-customers .data-table td:nth-child(4) {
  563. width: 10%;
  564. }
  565. #inactive-customers .data-table th:nth-child(5), /* 历史订单数 */
  566. #inactive-customers .data-table td:nth-child(5) {
  567. width: 10%;
  568. }
  569. #inactive-customers .data-table th:nth-child(6), /* 历史订单总额 */
  570. #inactive-customers .data-table td:nth-child(6) {
  571. width: 12%;
  572. }
  573. #inactive-customers .data-table th:nth-child(7), /* 业务员 */
  574. #inactive-customers .data-table td:nth-child(7) {
  575. width: 12%;
  576. }
  577. #inactive-customers .data-table th:nth-child(8), /* 操作 */
  578. #inactive-customers .data-table td:nth-child(8) {
  579. width: 12%;
  580. }
  581. .data-table td:last-child {
  582. min-width: 80px; /* 确保操作列有足够宽度 */
  583. text-align: center;
  584. }
  585. .data-table tr:hover {
  586. background-color: #f9f9f9;
  587. }
  588. .action-btn {
  589. padding: 5px 10px;
  590. margin: 0 3px;
  591. min-width: 60px;
  592. display: inline-block;
  593. text-align: center;
  594. border-radius: 4px;
  595. font-size: 13px;
  596. transition: all 0.3s ease;
  597. }
  598. .action-btn-view {
  599. background-color: #2196f3;
  600. color: white;
  601. border: none;
  602. }
  603. .action-btn-view:hover {
  604. background-color: #0d8aee;
  605. box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  606. }
  607. /* 为所有客户列表表格添加共同样式 */
  608. .warning-section .data-table {
  609. border: 1px solid #eee;
  610. border-radius: 4px;
  611. box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  612. }
  613. .warning-section .data-table th:first-child,
  614. .warning-section .data-table td:first-child {
  615. padding-left: 20px; /* 左侧留出更多间距 */
  616. }
  617. /* 表格内数字列的对齐方式 */
  618. .warning-section .data-table td:nth-child(3),
  619. .warning-section .data-table td:nth-child(4),
  620. .warning-section .data-table td:nth-child(5) {
  621. text-align: left;
  622. }
  623. /* 调整整体字体大小 */
  624. body {
  625. font-size: 14px;
  626. }
  627. /* 分页样式 */
  628. .pagination-container {
  629. margin-top: 25px;
  630. display: flex;
  631. flex-direction: column;
  632. align-items: center;
  633. }
  634. .pagination {
  635. display: flex;
  636. list-style: none;
  637. padding: 0;
  638. margin-bottom: 15px;
  639. }
  640. .pagination .pager-item {
  641. margin: 0 2px;
  642. }
  643. .pagination .pager-link {
  644. padding: 8px 16px;
  645. border-radius: 4px;
  646. margin: 0 3px;
  647. font-weight: 500;
  648. border: 1px solid #ddd;
  649. background-color: #fff;
  650. color: #2196f3;
  651. text-decoration: none;
  652. display: inline-block;
  653. }
  654. .pagination .pager-item.active .pager-link {
  655. background-color: #2196f3;
  656. color: white;
  657. border-color: #2196f3;
  658. }
  659. .pagination .pager-item.disabled .pager-link {
  660. color: #999;
  661. cursor: not-allowed;
  662. background-color: #f5f5f5;
  663. }
  664. .pagination-info {
  665. margin-top: 10px;
  666. font-size: 14px;
  667. color: #666;
  668. }
  669. .form-btn {
  670. padding: 8px 15px;
  671. border-radius: 4px;
  672. cursor: pointer;
  673. font-size: 14px;
  674. border: none;
  675. transition: all 0.3s ease;
  676. }
  677. .form-btn-primary {
  678. background-color: #2196f3;
  679. color: white;
  680. }
  681. .form-btn-primary:hover {
  682. background-color: #0d8aee;
  683. box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  684. }
  685. /* 添加斑马纹和悬停效果 */
  686. .data-table tr:nth-child(even) {
  687. background-color: #f8f8f8;
  688. }
  689. .data-table tbody tr:hover {
  690. background-color: #f0f7ff;
  691. }
  692. </style>
  693. <script>
  694. function toggleCustomDates() {
  695. const dateRange = document.getElementById('date_range').value;
  696. const customDateInputs = document.querySelectorAll('.custom-date-inputs');
  697. if (dateRange === 'custom') {
  698. customDateInputs.forEach(el => el.style.display = 'inline-block');
  699. } else {
  700. customDateInputs.forEach(el => el.style.display = 'none');
  701. }
  702. }
  703. // 订单趋势图
  704. document.addEventListener('DOMContentLoaded', function() {
  705. const ctx = document.getElementById('orderTrendChart').getContext('2d');
  706. const months = <?php echo $months_json; ?>;
  707. const orderCounts = <?php echo $order_counts_json; ?>;
  708. const orderAmounts = <?php echo $order_amounts_json; ?>;
  709. const chart = new Chart(ctx, {
  710. type: 'line',
  711. data: {
  712. labels: months,
  713. datasets: [
  714. {
  715. label: '订单数量',
  716. data: orderCounts,
  717. backgroundColor: 'rgba(54, 162, 235, 0.2)',
  718. borderColor: 'rgba(54, 162, 235, 1)',
  719. borderWidth: 2,
  720. yAxisID: 'y-axis-1'
  721. },
  722. {
  723. label: '订单金额',
  724. data: orderAmounts,
  725. backgroundColor: 'rgba(255, 99, 132, 0.2)',
  726. borderColor: 'rgba(255, 99, 132, 1)',
  727. borderWidth: 2,
  728. yAxisID: 'y-axis-2'
  729. }
  730. ]
  731. },
  732. options: {
  733. responsive: true,
  734. maintainAspectRatio: false,
  735. scales: {
  736. 'y-axis-1': {
  737. type: 'linear',
  738. position: 'left',
  739. title: {
  740. display: true,
  741. text: '订单数量'
  742. }
  743. },
  744. 'y-axis-2': {
  745. type: 'linear',
  746. position: 'right',
  747. title: {
  748. display: true,
  749. text: '订单金额'
  750. },
  751. grid: {
  752. drawOnChartArea: false
  753. }
  754. }
  755. }
  756. }
  757. });
  758. });
  759. </script>
  760. <?php
  761. /**
  762. * 获取订单金额下降的客户
  763. */
  764. function getDecreasingOrderAmountCustomers($conn, $current_start, $current_end, $previous_start, $previous_end, $threshold, $count_only = false, $selected_employee = 0) {
  765. // 构建业务员筛选条件
  766. $employee_filter = $selected_employee > 0 ? " AND c.cs_belong = ?" : "";
  767. // 如果只需要计数
  768. if ($count_only) {
  769. $sql = "SELECT COUNT(DISTINCT c.id) as count
  770. FROM customer c
  771. LEFT JOIN (
  772. SELECT customer_id, SUM(total_amount) as amount
  773. FROM orders
  774. WHERE order_date BETWEEN ? AND ?
  775. GROUP BY customer_id
  776. ) current_period ON c.id = current_period.customer_id
  777. LEFT JOIN (
  778. SELECT customer_id, SUM(total_amount) as amount
  779. FROM orders
  780. WHERE order_date BETWEEN ? AND ?
  781. GROUP BY customer_id
  782. ) previous_period ON c.id = previous_period.customer_id
  783. JOIN employee e ON c.cs_belong = e.id
  784. WHERE previous_period.amount > 0
  785. AND (current_period.amount IS NULL OR (current_period.amount / previous_period.amount - 1) * 100 <= ?)
  786. AND c.cs_deal = 3" . $employee_filter;
  787. $stmt = $conn->prepare($sql);
  788. if ($selected_employee > 0) {
  789. $stmt->bind_param("ssssdi", $current_start, $current_end, $previous_start, $previous_end, $threshold, $selected_employee);
  790. } else {
  791. $stmt->bind_param("ssssd", $current_start, $current_end, $previous_start, $previous_end, $threshold);
  792. }
  793. $stmt->execute();
  794. $result = $stmt->get_result();
  795. $row = $result->fetch_assoc();
  796. return $row['count'];
  797. }
  798. // 如果需要详细数据
  799. $sql = "SELECT
  800. c.id,
  801. c.cs_company,
  802. IFNULL(current_period.amount, 0) as current_amount,
  803. previous_period.amount as previous_amount,
  804. e.em_user,
  805. IFNULL((SELECT MAX(order_date) FROM orders WHERE customer_id = c.id), '') as last_order_date
  806. FROM customer c
  807. LEFT JOIN (
  808. SELECT customer_id, SUM(total_amount) as amount
  809. FROM orders
  810. WHERE order_date BETWEEN ? AND ?
  811. GROUP BY customer_id
  812. ) current_period ON c.id = current_period.customer_id
  813. LEFT JOIN (
  814. SELECT customer_id, SUM(total_amount) as amount
  815. FROM orders
  816. WHERE order_date BETWEEN ? AND ?
  817. GROUP BY customer_id
  818. ) previous_period ON c.id = previous_period.customer_id
  819. JOIN employee e ON c.cs_belong = e.id
  820. WHERE previous_period.amount > 0
  821. AND (current_period.amount IS NULL OR (current_period.amount / previous_period.amount - 1) * 100 <= ?)
  822. AND c.cs_deal = 3" . $employee_filter . "
  823. ORDER BY (current_period.amount / previous_period.amount) ASC";
  824. $stmt = $conn->prepare($sql);
  825. if ($selected_employee > 0) {
  826. $stmt->bind_param("ssssdi", $current_start, $current_end, $previous_start, $previous_end, $threshold, $selected_employee);
  827. } else {
  828. $stmt->bind_param("ssssd", $current_start, $current_end, $previous_start, $previous_end, $threshold);
  829. }
  830. $stmt->execute();
  831. return $stmt->get_result();
  832. }
  833. /**
  834. * 获取复购周期异常的客户
  835. */
  836. function getAbnormalRepurchaseCycleCustomers($conn, $current_start, $current_end, $max_threshold, $min_threshold, $normal_cycle, $count_only = false, $selected_employee = 0) {
  837. // 构建业务员筛选条件
  838. $employee_filter = $selected_employee > 0 ? " AND c.cs_belong = ?" : "";
  839. if ($count_only) {
  840. $sql = "SELECT COUNT(DISTINCT t.customer_id) as count
  841. FROM (
  842. SELECT
  843. o.customer_id,
  844. COUNT(o.id) as order_count,
  845. AVG(DATEDIFF(o.order_date, prev_order.order_date)) as avg_cycle,
  846. MAX(DATEDIFF(o.order_date, prev_order.order_date)) as recent_cycle
  847. FROM orders o
  848. JOIN customer c ON o.customer_id = c.id
  849. JOIN orders prev_order ON o.customer_id = prev_order.customer_id AND prev_order.order_date < o.order_date
  850. WHERE o.order_date BETWEEN ? AND ?" . $employee_filter . "
  851. GROUP BY o.customer_id
  852. HAVING order_count > 1
  853. AND (recent_cycle > ? OR recent_cycle < (? * ?))
  854. ) t";
  855. $stmt = $conn->prepare($sql);
  856. if ($selected_employee > 0) {
  857. $stmt->bind_param("ssiddd", $current_start, $current_end, $selected_employee, $max_threshold, $normal_cycle, $min_threshold);
  858. } else {
  859. $stmt->bind_param("ssddd", $current_start, $current_end, $max_threshold, $normal_cycle, $min_threshold);
  860. }
  861. $stmt->execute();
  862. $result = $stmt->get_result();
  863. $row = $result->fetch_assoc();
  864. return $row['count'];
  865. }
  866. // 使用子查询方式,先获取所有符合条件的客户及其复购周期数据
  867. $sql = "SELECT
  868. abnormal.customer_id as id,
  869. c.cs_company,
  870. abnormal.order_count,
  871. abnormal.avg_cycle,
  872. abnormal.recent_cycle,
  873. abnormal.last_order_date,
  874. e.em_user,
  875. CASE
  876. WHEN abnormal.recent_cycle > ? THEN 1 /* 周期过长 */
  877. ELSE 2 /* 周期过短 */
  878. END as cycle_type,
  879. CASE
  880. WHEN abnormal.recent_cycle > ? THEN abnormal.recent_cycle
  881. ELSE (? * ?) - abnormal.recent_cycle
  882. END as sort_value
  883. FROM (
  884. SELECT
  885. o.customer_id,
  886. COUNT(o.id) as order_count,
  887. AVG(DATEDIFF(o.order_date, prev_order.order_date)) as avg_cycle,
  888. MAX(DATEDIFF(o.order_date, prev_order.order_date)) as recent_cycle,
  889. (SELECT MAX(order_date) FROM orders WHERE customer_id = o.customer_id) as last_order_date
  890. FROM orders o
  891. JOIN customer c ON o.customer_id = c.id
  892. JOIN orders prev_order ON o.customer_id = prev_order.customer_id AND prev_order.order_date < o.order_date
  893. WHERE o.order_date BETWEEN ? AND ?" . $employee_filter . "
  894. GROUP BY o.customer_id
  895. HAVING order_count > 1
  896. AND (recent_cycle > ? OR recent_cycle < (? * ?))
  897. ) as abnormal
  898. JOIN customer c ON abnormal.customer_id = c.id
  899. JOIN employee e ON c.cs_belong = e.id
  900. ORDER BY sort_value DESC";
  901. $stmt = $conn->prepare($sql);
  902. if ($selected_employee > 0) {
  903. $stmt->bind_param("ddddssiddd", $max_threshold, $max_threshold, $normal_cycle, $min_threshold, $current_start, $current_end, $selected_employee, $max_threshold, $normal_cycle, $min_threshold);
  904. } else {
  905. $stmt->bind_param("ddddssddd", $max_threshold, $max_threshold, $normal_cycle, $min_threshold, $current_start, $current_end, $max_threshold, $normal_cycle, $min_threshold);
  906. }
  907. $stmt->execute();
  908. return $stmt->get_result();
  909. }
  910. /**
  911. * 获取长期不活跃的客户
  912. */
  913. function getInactiveCustomers($conn, $end_date, $inactive_days, $count_only = false, $page = 1, $page_size = 10, $selected_employee = 0) {
  914. // 构建业务员筛选条件
  915. $employee_filter = $selected_employee > 0 ? " AND c.cs_belong = ?" : "";
  916. if ($count_only) {
  917. $sql = "SELECT COUNT(*) as count
  918. FROM customer c
  919. LEFT JOIN (
  920. SELECT customer_id, MAX(order_date) as last_order_date
  921. FROM orders
  922. GROUP BY customer_id
  923. ) last_orders ON c.id = last_orders.customer_id
  924. JOIN employee e ON c.cs_belong = e.id
  925. WHERE c.cs_deal = 3
  926. AND (
  927. last_orders.last_order_date IS NULL
  928. OR DATEDIFF(?, last_orders.last_order_date) > ?
  929. )" . $employee_filter;
  930. $stmt = $conn->prepare($sql);
  931. if ($selected_employee > 0) {
  932. $stmt->bind_param("sii", $end_date, $inactive_days, $selected_employee);
  933. } else {
  934. $stmt->bind_param("si", $end_date, $inactive_days);
  935. }
  936. $stmt->execute();
  937. $result = $stmt->get_result();
  938. $row = $result->fetch_assoc();
  939. return $row['count'];
  940. }
  941. $sql = "SELECT
  942. c.id,
  943. c.cs_company,
  944. c.cs_code,
  945. last_orders.last_order_date,
  946. CASE
  947. WHEN last_orders.last_order_date IS NULL THEN DATEDIFF(?, c.cs_addtime)
  948. ELSE DATEDIFF(?, last_orders.last_order_date)
  949. END as inactive_days,
  950. IFNULL(order_stats.order_count, 0) as order_count,
  951. IFNULL(order_stats.total_amount, 0) as total_amount,
  952. e.em_user
  953. FROM customer c
  954. LEFT JOIN (
  955. SELECT customer_id, MAX(order_date) as last_order_date
  956. FROM orders
  957. GROUP BY customer_id
  958. ) last_orders ON c.id = last_orders.customer_id
  959. LEFT JOIN (
  960. SELECT customer_id, COUNT(*) as order_count, SUM(total_amount) as total_amount
  961. FROM orders
  962. GROUP BY customer_id
  963. ) order_stats ON c.id = order_stats.customer_id
  964. JOIN employee e ON c.cs_belong = e.id
  965. WHERE c.cs_deal = 3
  966. AND (
  967. last_orders.last_order_date IS NULL
  968. OR DATEDIFF(?, last_orders.last_order_date) > ?
  969. )" . $employee_filter . "
  970. ORDER BY inactive_days DESC
  971. LIMIT ?, ?";
  972. $offset = ($page - 1) * $page_size;
  973. $stmt = $conn->prepare($sql);
  974. if ($selected_employee > 0) {
  975. $stmt->bind_param("sssiiii", $end_date, $end_date, $end_date, $inactive_days, $selected_employee, $offset, $page_size);
  976. } else {
  977. $stmt->bind_param("sssiii", $end_date, $end_date, $end_date, $inactive_days, $offset, $page_size);
  978. }
  979. $stmt->execute();
  980. return $stmt->get_result();
  981. }
  982. // 页面底部
  983. include('statistics_footer.php');
  984. ?>