rebate_expiring.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 辅助函数
  5. $urlStr = '';
  6. // 处理筛选条件
  7. $fliterFromDate = $_GET['fliterFromDate'] ?? '';
  8. $fliterToDate = $_GET['fliterToDate'] ?? '';
  9. $expiryDays = $_GET['expiryDays'] ?? 7; // 默认显示7天内过期的返点
  10. $fliterStr = "";
  11. if (!empty($fliterFromDate)) {
  12. $fliterStr .= " AND o.order_date >= '" . mysqli_real_escape_string($conn, $fliterFromDate) . "'";
  13. $urlStr .= "&fliterFromDate=" . urlencode($fliterFromDate);
  14. }
  15. if (!empty($fliterToDate)) {
  16. $fliterStr .= " AND o.order_date <= '" . mysqli_real_escape_string($conn, $fliterToDate) . " 23:59:59'";
  17. $urlStr .= "&fliterToDate=" . urlencode($fliterToDate);
  18. }
  19. // 搜索参数
  20. $keys = $_GET['Keys'] ?? '';
  21. $keyscode = mysqli_real_escape_string($conn, $keys);
  22. $page = $_GET['Page'] ?? 1;
  23. // 构建基本条件SQL
  24. $employee_id = $_SESSION['employee_id'];
  25. $isAdmin = checkIfAdmin();
  26. // 查询即将过期的返点订单
  27. // 这里我们获取那些在90天期限内,但是已经接近过期的订单(比如只剩7天有效期)
  28. $cutoffDate = date('Y-m-d', strtotime("-" . (90 - $expiryDays) . " days"));
  29. $expiryDate = date('Y-m-d', strtotime("-90 days"));
  30. $customerListSql = "SELECT DISTINCT
  31. o.customer_id,
  32. c.cs_company AS customer_name,
  33. c.cs_code,
  34. MIN(o.order_date) AS oldest_order_date,
  35. DATE_ADD(MIN(o.order_date), INTERVAL 90 DAY) AS expiry_date,
  36. DATEDIFF(DATE_ADD(MIN(o.order_date), INTERVAL 90 DAY), CURRENT_DATE()) AS days_left
  37. FROM orders o
  38. JOIN order_items oi ON o.id = oi.order_id
  39. JOIN customer c ON o.customer_id = c.id
  40. JOIN products p ON oi.product_id = p.id
  41. WHERE
  42. o.order_date BETWEEN '$expiryDate' AND '$cutoffDate'
  43. AND p.rebate = 1
  44. AND NOT EXISTS (
  45. SELECT 1
  46. FROM rebate_redemption_items rri
  47. WHERE rri.order_item_id = oi.id
  48. )
  49. AND EXISTS (
  50. SELECT 1
  51. FROM rebate_rules rr
  52. WHERE rr.product_id = oi.product_id
  53. )
  54. AND (
  55. SELECT SUM(oi2.quantity)
  56. FROM order_items oi2
  57. JOIN orders o2 ON oi2.order_id = o2.id
  58. WHERE o2.customer_id = o.customer_id
  59. AND oi2.product_id = oi.product_id
  60. AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
  61. AND NOT EXISTS (
  62. SELECT 1
  63. FROM rebate_redemption_items rri
  64. WHERE rri.order_item_id = oi2.id
  65. )
  66. ) >= (
  67. SELECT MIN(rr.min_quantity)
  68. FROM rebate_rules rr
  69. WHERE rr.product_id = oi.product_id
  70. )";
  71. // 非管理员只能查看自己的客户返点
  72. if (!$isAdmin) {
  73. $customerListSql .= " AND c.cs_belong = $employee_id";
  74. }
  75. // 添加搜索条件
  76. if (!empty($keyscode)) {
  77. $customerListSql .= " AND (c.cs_company LIKE '%$keyscode%' OR c.cs_code LIKE '%$keyscode%')";
  78. }
  79. // 添加日期筛选
  80. $customerListSql .= $fliterStr;
  81. // 分组并按剩余天数排序
  82. $customerListSql .= " GROUP BY o.customer_id, c.cs_company, c.cs_code ORDER BY days_left ASC";
  83. // 执行查询获取客户列表
  84. $result = mysqli_query($conn, $customerListSql);
  85. if (!$result) {
  86. die("查询即将过期返点错误: " . mysqli_error($conn));
  87. }
  88. // 获取客户列表
  89. $customers = [];
  90. while ($row = mysqli_fetch_assoc($result)) {
  91. $customers[] = $row;
  92. }
  93. // 设置每页显示记录数和分页
  94. $pageSize = 20;
  95. $totalRecords = count($customers);
  96. // 计算总页数
  97. $totalPages = ceil($totalRecords / $pageSize);
  98. if ($totalPages < 1) $totalPages = 1;
  99. // 验证当前页码
  100. $page = (int)$page;
  101. if ($page < 1) $page = 1;
  102. if ($page > $totalPages) $page = $totalPages;
  103. // 分页处理
  104. $paginatedCustomers = array_slice($customers, ($page - 1) * $pageSize, $pageSize);
  105. // 获取每个客户的返点金额
  106. foreach ($paginatedCustomers as &$customer) {
  107. $customer_id = $customer['customer_id'];
  108. // 计算客户的总返点金额
  109. $rebateAmountSql = "
  110. SELECT
  111. SUM(
  112. oi.quantity * (
  113. SELECT rr.rebate_amount
  114. FROM rebate_rules rr
  115. WHERE rr.product_id = oi.product_id
  116. AND rr.min_quantity <= (
  117. SELECT SUM(oi2.quantity)
  118. FROM order_items oi2
  119. JOIN orders o2 ON oi2.order_id = o2.id
  120. WHERE o2.customer_id = o.customer_id
  121. AND oi2.product_id = oi.product_id
  122. AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
  123. AND NOT EXISTS (
  124. SELECT 1
  125. FROM rebate_redemption_items rri
  126. WHERE rri.order_item_id = oi2.id
  127. )
  128. )
  129. ORDER BY rr.min_quantity DESC
  130. LIMIT 1
  131. )
  132. ) AS total_rebate_amount,
  133. COUNT(DISTINCT oi.product_id) AS qualifying_products
  134. FROM
  135. orders o
  136. JOIN
  137. order_items oi ON o.id = oi.order_id
  138. JOIN
  139. products p ON oi.product_id = p.id
  140. WHERE
  141. o.customer_id = $customer_id
  142. AND o.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
  143. AND p.rebate = 1
  144. AND NOT EXISTS (
  145. SELECT 1
  146. FROM rebate_redemption_items rri
  147. WHERE rri.order_item_id = oi.id
  148. )";
  149. $amountResult = mysqli_query($conn, $rebateAmountSql);
  150. if (!$amountResult) {
  151. die("计算返点金额错误: " . mysqli_error($conn));
  152. }
  153. $amountRow = mysqli_fetch_assoc($amountResult);
  154. $customer['total_rebate_amount'] = $amountRow['total_rebate_amount'] ?? 0;
  155. $customer['qualifying_products'] = $amountRow['qualifying_products'] ?? 0;
  156. }
  157. ?>
  158. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  159. <html xmlns="http://www.w3.org/1999/xhtml">
  160. <head>
  161. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  162. <title>即将过期返点提醒</title>
  163. <link rel="stylesheet" href="css/common.css" type="text/css" />
  164. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  165. <script src="js/jquery-1.7.2.min.js"></script>
  166. <script src="js/js.js"></script>
  167. <style>
  168. body {
  169. margin: 0;
  170. padding: 20px;
  171. background: #fff;
  172. }
  173. #man_zone {
  174. margin-left: 0;
  175. }
  176. /* 表格布局 */
  177. .table2 {
  178. width: 100%;
  179. }
  180. .theader, .tline {
  181. display: flex;
  182. flex-direction: row;
  183. align-items: center;
  184. width: 100%;
  185. border-bottom: 1px solid #ddd;
  186. }
  187. .theader {
  188. background-color: #f2f2f2;
  189. font-weight: bold;
  190. height: 40px;
  191. }
  192. .tline {
  193. height: 45px;
  194. }
  195. .tline:hover {
  196. background-color: #f5f5f5;
  197. }
  198. .col2 { width: 5%; text-align: center; }
  199. .col3 { width: 15%; }
  200. .col4 { width: 20%; }
  201. .col5 { width: 12%; text-align: center; }
  202. .col6 { width: 12%; text-align: center; }
  203. .col7 { width: 8%; text-align: center; }
  204. .col8 { width: 12%; text-align: right; }
  205. .col9 { width: 16%; text-align: center; }
  206. /* 表格布局修复 */
  207. .table2 .col2 { width: 5%; text-align: center; }
  208. .table2 .col3 { width: 15%; }
  209. .table2 .col4 { width: 20%; }
  210. .table2 .col5 { width: 12%; text-align: center; }
  211. .table2 .col6 { width: 12%; text-align: center; }
  212. .table2 .col7 { width: 8%; text-align: center; }
  213. .table2 .col8 { width: 12%; text-align: right; }
  214. .table2 .col9 { width: 16%; text-align: center; }
  215. .theader > div, .tline > div {
  216. padding: 0 5px;
  217. overflow: hidden;
  218. text-overflow: ellipsis;
  219. white-space: nowrap;
  220. display: flex;
  221. align-items: center;
  222. justify-content: center;
  223. }
  224. .col3, .col4 {
  225. justify-content: flex-start !important;
  226. }
  227. .col8 {
  228. justify-content: flex-end !important;
  229. }
  230. /* 日期选择器样式 */
  231. .date-input {
  232. padding: 5px;
  233. border: 1px solid #ccc;
  234. border-radius: 3px;
  235. }
  236. /* 警告信息样式 */
  237. .expiry-warning {
  238. color: #ff0000;
  239. font-weight: bold;
  240. }
  241. .days-left-critical {
  242. background-color: #ffeeee;
  243. }
  244. .days-left-warning {
  245. background-color: #fff5e6;
  246. }
  247. /* 选择框样式 */
  248. .select-days {
  249. padding: 5px;
  250. border: 1px solid #ccc;
  251. border-radius: 3px;
  252. margin-left: 5px;
  253. }
  254. /* 顶部提示样式 */
  255. .alert-box {
  256. background-color: #f8d7da;
  257. color: #721c24;
  258. padding: 15px;
  259. margin-bottom: 20px;
  260. border: 1px solid #f5c6cb;
  261. border-radius: 4px;
  262. }
  263. .fastSelect .selectItem
  264. {
  265. width: 50%;
  266. }
  267. .inputSearch {
  268. display: flex;
  269. align-items: center;
  270. }
  271. .inputTxt {
  272. padding: 5px;
  273. border: 1px solid #ccc;
  274. border-radius: 3px;
  275. margin-right: 5px;
  276. width: 180px;
  277. }
  278. .searchgo {
  279. padding: 5px 15px;
  280. background: #3498db;
  281. color: white;
  282. border: none;
  283. border-radius: 3px;
  284. cursor: pointer;
  285. }
  286. .searchgo:hover {
  287. background: #2980b9;
  288. }
  289. .action-buttons {
  290. width: 100%;
  291. display: flex;
  292. justify-content: flex-end;
  293. margin-top: 10px;
  294. }
  295. </style>
  296. </head>
  297. <body>
  298. <div id="man_zone">
  299. <div class="alert-box">
  300. <strong>注意!</strong> 此页面显示即将过期的返点信息。返点订单在创建后90天内有效,过期后将无法兑换。请尽快处理以下客户的返点兑换。
  301. </div>
  302. <div class="fastSelect clear">
  303. <H1>筛选条件</H1>
  304. <div class="selectItem">
  305. <label>订单日期</label>
  306. <input type="date" name="fliterFromDate" class="date-input filterSearch" value="<?= $fliterFromDate ?>">
  307. <label>到</label>
  308. <input type="date" name="fliterToDate" class="date-input filterSearch" value="<?= $fliterToDate ?>">
  309. <label>过期天数</label>
  310. <select name="expiryDays" class="select-days filterSearch">
  311. <option value="3" <?= $expiryDays == 3 ? 'selected' : '' ?>>3天内</option>
  312. <option value="7" <?= $expiryDays == 7 ? 'selected' : '' ?>>7天内</option>
  313. <option value="14" <?= $expiryDays == 14 ? 'selected' : '' ?>>14天内</option>
  314. <option value="30" <?= $expiryDays == 30 ? 'selected' : '' ?>>30天内</option>
  315. </select>
  316. </div>
  317. <div class="inputSearch">
  318. <input type="text" id="keys" class="inputTxt" placeholder="请输入客户名称或编码"
  319. value="<?= empty($keyscode) ? '' : $keyscode ?>" />
  320. <input type="button" id="searchgo" class="searchgo" value="搜索"
  321. onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)+'&expiryDays='+document.getElementsByName('expiryDays')[0].value" />
  322. </div>
  323. </div>
  324. <div align="right" style="margin-bottom: 10px;">
  325. <a href="rebate_history.php" class="btn1" style="display: inline-flex; align-items: center; justify-content: center; padding: 5px 15px; margin-top: 0; height: 22px; margin-right: 5px;">查看返点历史</a>
  326. <a href="rebate_summary.php" class="btn1" style="display: inline-flex; align-items: center; justify-content: center; padding: 5px 15px; margin-top: 0; height: 22px;">返回返点统计</a>
  327. </div>
  328. <div class="table2 em<?= $_SESSION['employee_id'] ?>">
  329. <div class="theader">
  330. <div class="col2">序号</div>
  331. <div class="col3">客户编码</div>
  332. <div class="col4">客户名称</div>
  333. <div class="col5">最早订单日期</div>
  334. <div class="col6">过期日期</div>
  335. <div class="col7">剩余天数</div>
  336. <div class="col8">返点金额</div>
  337. <div class="col9">操作</div>
  338. </div>
  339. <?php
  340. if (!empty($paginatedCustomers)) {
  341. $tempNum = ($page - 1) * $pageSize;
  342. foreach ($paginatedCustomers as $customer) {
  343. $tempNum++;
  344. $daysLeft = $customer['days_left'];
  345. $rowClass = '';
  346. // 根据剩余天数添加不同的警告样式
  347. if ($daysLeft <= 3) {
  348. $rowClass = 'days-left-critical';
  349. } elseif ($daysLeft <= 7) {
  350. $rowClass = 'days-left-warning';
  351. }
  352. ?>
  353. <div class="tline <?= $rowClass ?>">
  354. <div class="col2"><?= $tempNum ?></div>
  355. <div class="col3"><?= htmlspecialcharsFix($customer['cs_code']) ?></div>
  356. <div class="col4"><?= htmlspecialcharsFix($customer['customer_name']) ?></div>
  357. <div class="col5"><?= date('Y-m-d', strtotime($customer['oldest_order_date'])) ?></div>
  358. <div class="col6"><?= date('Y-m-d', strtotime($customer['expiry_date'])) ?></div>
  359. <div class="col7 <?= $daysLeft <= 3 ? 'expiry-warning' : '' ?>"><?= $daysLeft ?> 天</div>
  360. <div class="col8"><?= number_format($customer['total_rebate_amount'], 2) ?> 元</div>
  361. <div class="col9">
  362. <a href="rebate_redeem.php?customer_id=<?= $customer['customer_id'] ?>" class="ico_edit ico">立即处理兑换</a>
  363. </div>
  364. </div>
  365. <?php
  366. }
  367. } else {
  368. echo '<div class="tline"><div style="width: 100%; text-align: center;">目前没有即将过期的返点订单</div></div>';
  369. }
  370. ?>
  371. <div class="showpagebox">
  372. <?php
  373. if ($totalPages > 1) {
  374. $pageName = "?Keys=$keys$urlStr&expiryDays=$expiryDays&";
  375. $pageLen = 3;
  376. if ($page > 1) {
  377. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  378. echo "<a href=\"{$pageName}Page=" . ($page - 1) . "\">上一页</a>";
  379. }
  380. if ($pageLen * 2 + 1 >= $totalPages) {
  381. $startPage = 1;
  382. $endPage = $totalPages;
  383. } else {
  384. if ($page <= $pageLen + 1) {
  385. $startPage = 1;
  386. $endPage = $pageLen * 2 + 1;
  387. } else {
  388. $startPage = $page - $pageLen;
  389. $endPage = $page + $pageLen;
  390. }
  391. if ($page + $pageLen > $totalPages) {
  392. $startPage = $totalPages - $pageLen * 2;
  393. $endPage = $totalPages;
  394. }
  395. }
  396. for ($i = $startPage; $i <= $endPage; $i++) {
  397. if ($i == $page) {
  398. echo "<a class=\"current\">$i</a>";
  399. } else {
  400. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  401. }
  402. }
  403. if ($page < $totalPages) {
  404. if ($totalPages - $page > $pageLen) {
  405. echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
  406. }
  407. echo "<a href=\"{$pageName}Page=" . ($page + 1) . "\">下一页</a>";
  408. echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
  409. }
  410. }
  411. ?>
  412. </div>
  413. </div>
  414. <script>
  415. $(document).ready(function() {
  416. // 添加日期验证逻辑
  417. $('input[name="fliterToDate"]').on('change', function() {
  418. var fromDate = $('input[name="fliterFromDate"]').val();
  419. var toDate = $(this).val();
  420. if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
  421. alert('结束日期不能早于开始日期');
  422. $(this).val(''); // 清空结束日期
  423. return false;
  424. }
  425. });
  426. // 开始日期变更时也进行验证
  427. $('input[name="fliterFromDate"]').on('change', function() {
  428. var fromDate = $(this).val();
  429. var toDate = $('input[name="fliterToDate"]').val();
  430. if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
  431. alert('开始日期不能晚于结束日期');
  432. $('input[name="fliterToDate"]').val(''); // 清空结束日期
  433. return false;
  434. }
  435. });
  436. // 处理筛选条件改变
  437. $('.filterSearch').change(function() {
  438. var url = '?';
  439. var keys = $('#keys').val();
  440. if (keys && keys != '请输入客户名称或编码') {
  441. url += 'Keys=' + encodeURIComponent(keys) + '&';
  442. }
  443. url += 'expiryDays=' + $('select[name="expiryDays"]').val() + '&';
  444. $('.date-input.filterSearch').each(function() {
  445. var name = $(this).attr('name');
  446. var value = $(this).val();
  447. if (value) {
  448. url += name + '=' + encodeURIComponent(value) + '&';
  449. }
  450. });
  451. // 移除末尾的&
  452. if (url.endsWith('&')) {
  453. url = url.substring(0, url.length - 1);
  454. }
  455. location.href = url;
  456. });
  457. });
  458. </script>
  459. </div>
  460. </body>
  461. </html>