statistics_order_warnings.php 42 KB

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