rebate_history.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 辅助函数
  5. $urlStr = '';
  6. // 处理筛选条件
  7. $fliterFromDate = $_GET['fliterFromDate'] ?? '';
  8. $fliterToDate = $_GET['fliterToDate'] ?? '';
  9. $fliterStr = "";
  10. if (!empty($fliterFromDate)) {
  11. $fliterStr .= " AND rr.redemption_date >= '" . mysqli_real_escape_string($conn, $fliterFromDate) . "'";
  12. $urlStr .= "&fliterFromDate=" . urlencode($fliterFromDate);
  13. }
  14. if (!empty($fliterToDate)) {
  15. $fliterStr .= " AND rr.redemption_date <= '" . mysqli_real_escape_string($conn, $fliterToDate) . " 23:59:59'";
  16. $urlStr .= "&fliterToDate=" . urlencode($fliterToDate);
  17. }
  18. // 搜索参数
  19. $keys = $_GET['Keys'] ?? '';
  20. $keyscode = mysqli_real_escape_string($conn, $keys);
  21. $page = isset($_GET['Page']) ? intval($_GET['Page']) : 1;
  22. // 构建基本条件SQL
  23. $employee_id = $_SESSION['employee_id'];
  24. $isAdmin = checkIfAdmin();
  25. // 基础查询,计算总记录数
  26. $countSql = "SELECT COUNT(*) AS total
  27. FROM rebate_redemptions rr
  28. JOIN customer c ON rr.customer_id = c.id
  29. WHERE 1=1";
  30. // 非管理员只能查看自己客户的返点历史
  31. if (!$isAdmin) {
  32. $countSql .= " AND c.cs_belong = $employee_id";
  33. }
  34. // 添加搜索条件
  35. if (!empty($keyscode)) {
  36. $countSql .= " AND (c.cs_company LIKE '%$keyscode%' OR c.cs_code LIKE '%$keyscode%')";
  37. }
  38. // 添加日期筛选
  39. $countSql .= $fliterStr;
  40. // 执行查询获取总记录数
  41. $countResult = mysqli_query($conn, $countSql);
  42. if (!$countResult) {
  43. die("查询记录数量错误: " . mysqli_error($conn));
  44. }
  45. $countRow = mysqli_fetch_assoc($countResult);
  46. $totalRecords = $countRow['total'];
  47. // 设置每页显示记录数和分页
  48. $pageSize = 20;
  49. // 计算总页数
  50. $totalPages = ceil($totalRecords / $pageSize);
  51. if ($totalPages < 1) $totalPages = 1;
  52. // 验证当前页码
  53. if ($page < 1) $page = 1;
  54. if ($page > $totalPages) $page = $totalPages;
  55. // 计算起始记录
  56. $offset = ($page - 1) * $pageSize;
  57. // 查询返点兑换历史记录
  58. $sql = "SELECT
  59. rr.id AS redemption_id,
  60. rr.customer_id,
  61. c.cs_code,
  62. c.cs_company AS customer_name,
  63. rr.redemption_date,
  64. rr.total_rebate_amount,
  65. rr.notes,
  66. rr.status,
  67. e.em_user AS employee_name,
  68. (SELECT COUNT(DISTINCT product_id) FROM rebate_redemption_items WHERE redemption_id = rr.id) AS product_count
  69. FROM
  70. rebate_redemptions rr
  71. JOIN
  72. customer c ON rr.customer_id = c.id
  73. LEFT JOIN
  74. employee e ON rr.created_by = e.id
  75. WHERE
  76. 1=1";
  77. // 非管理员只能查看自己客户的返点历史
  78. if (!$isAdmin) {
  79. $sql .= " AND c.cs_belong = $employee_id";
  80. }
  81. // 添加搜索条件
  82. if (!empty($keyscode)) {
  83. $sql .= " AND (c.cs_company LIKE '%$keyscode%' OR c.cs_code LIKE '%$keyscode%')";
  84. }
  85. // 添加日期筛选
  86. $sql .= $fliterStr;
  87. // 添加排序和分页
  88. $sql .= " ORDER BY rr.redemption_date DESC, rr.id DESC LIMIT $offset, $pageSize";
  89. $result = mysqli_query($conn, $sql);
  90. if (!$result) {
  91. die("查询返点历史错误: " . mysqli_error($conn));
  92. }
  93. // 获取返点历史记录
  94. $redemptions = [];
  95. while ($row = mysqli_fetch_assoc($result)) {
  96. $redemptions[] = $row;
  97. }
  98. ?>
  99. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  100. <html xmlns="http://www.w3.org/1999/xhtml">
  101. <head>
  102. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  103. <title>客户返点历史</title>
  104. <link rel="stylesheet" href="css/common.css" type="text/css" />
  105. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  106. <script src="js/jquery-1.7.2.min.js"></script>
  107. <script src="js/js.js"></script>
  108. <style>
  109. body {
  110. margin: 0;
  111. padding: 20px;
  112. background: #fff;
  113. }
  114. #man_zone {
  115. margin-left: 0;
  116. }
  117. /* 表格布局 */
  118. .table2 {
  119. width: 100%;
  120. }
  121. .theader, .tline {
  122. display: flex;
  123. flex-direction: row;
  124. align-items: center;
  125. width: 100%;
  126. border-bottom: 1px solid #ddd;
  127. }
  128. .theader {
  129. background-color: #f2f2f2;
  130. font-weight: bold;
  131. height: 40px;
  132. }
  133. .tline {
  134. height: 45px;
  135. }
  136. .tline:hover {
  137. background-color: #f5f5f5;
  138. }
  139. .col2 { width: 5%; text-align: center; }
  140. .col3 { width: 15%; }
  141. .col4 { width: 20%; }
  142. .col5 { width: 12%; text-align: center; }
  143. .col6 { width: 10%; text-align: center; }
  144. .col7 { width: 15%; text-align: right; }
  145. .col8 { width: 10%; text-align: center; }
  146. .col9 { width: 13%; text-align: center; }
  147. /* 表格布局修复 */
  148. .table2 .col2 { width: 5%; text-align: center; }
  149. .table2 .col3 { width: 15%; }
  150. .table2 .col4 { width: 20%; }
  151. .table2 .col5 { width: 12%; text-align: center; }
  152. .table2 .col6 { width: 10%; text-align: center; }
  153. .table2 .col7 { width: 15%; text-align: right; }
  154. .table2 .col8 { width: 10%; text-align: center; }
  155. .table2 .col9 { width: 13%; text-align: center; }
  156. .theader > div, .tline > div {
  157. padding: 0 5px;
  158. overflow: hidden;
  159. text-overflow: ellipsis;
  160. white-space: nowrap;
  161. display: flex;
  162. align-items: center;
  163. justify-content: center;
  164. }
  165. .col3, .col4 {
  166. justify-content: flex-start !important;
  167. }
  168. .col7 {
  169. justify-content: flex-end !important;
  170. }
  171. /* 日期选择器样式 */
  172. .date-input {
  173. padding: 5px;
  174. border: 1px solid #ccc;
  175. border-radius: 3px;
  176. }
  177. /* 滑动面板样式 */
  178. .rb-slidepanel {
  179. cursor: pointer;
  180. }
  181. .rb-slidepanel.open {
  182. font-weight: bold;
  183. color: #3366cc;
  184. }
  185. .notepanel {
  186. display: none;
  187. background: #f9f9f9;
  188. padding: 10px;
  189. border: 1px solid #eee;
  190. margin-bottom: 10px;
  191. }
  192. .notepanel .noteItem {
  193. font-weight: bold;
  194. margin-bottom: 5px;
  195. }
  196. .rebate-details {
  197. margin-top: 10px;
  198. border-top: 1px dashed #ddd;
  199. padding-top: 10px;
  200. }
  201. /* 状态样式 */
  202. .status-active {
  203. color: #27ae60;
  204. font-weight: bold;
  205. }
  206. .status-cancelled {
  207. color: #e74c3c;
  208. text-decoration: line-through;
  209. }
  210. /* 备注文本溢出控制 */
  211. .notes-text {
  212. max-width: 200px;
  213. white-space: nowrap;
  214. overflow: hidden;
  215. text-overflow: ellipsis;
  216. display: inline-block;
  217. }
  218. </style>
  219. </head>
  220. <body>
  221. <div id="man_zone">
  222. <div class="fastSelect clear">
  223. <H1>客户返点历史查询</H1>
  224. <div class="selectItem">
  225. <label>兑换日期</label>
  226. <input type="date" name="fliterFromDate" class="date-input filterSearch" value="<?= $fliterFromDate ?>">
  227. <label>到</label>
  228. <input type="date" name="fliterToDate" class="date-input filterSearch" value="<?= $fliterToDate ?>">
  229. </div>
  230. <div class="inputSearch">
  231. <input type="text" id="keys" class="inputTxt" placeholder="请输入客户名称或编码"
  232. value="<?= empty($keyscode) ? '' : $keyscode ?>" />
  233. <input type="button" id="searchgo" class="searchgo" value="搜索"
  234. onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
  235. </div>
  236. <div style="text-align: right; margin-top: 10px; clear: both;">
  237. <a href="rebate_expiring.php" class="btn1" style="display: inline-flex; align-items: center; justify-content: center; padding: 5px 15px; margin-top: 0; height: 22px; background-color: #e74c3c; margin-right: 5px;">查看过期预警</a>
  238. <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>
  239. </div>
  240. </div>
  241. <div class="table2 em<?= $_SESSION['employee_id'] ?>">
  242. <div class="theader">
  243. <div class="col2">序号</div>
  244. <div class="col3">客户编码</div>
  245. <div class="col4">客户名称</div>
  246. <div class="col5">兑换日期</div>
  247. <div class="col6">产品数</div>
  248. <div class="col7">返点金额</div>
  249. <div class="col8">处理人</div>
  250. <div class="col9">操作</div>
  251. </div>
  252. <?php
  253. if (!empty($redemptions)) {
  254. $tempNum = ($page - 1) * $pageSize;
  255. foreach ($redemptions as $redemption) {
  256. $tempNum++;
  257. $statusClass = $redemption['status'] == 1 ? 'status-active' : 'status-cancelled';
  258. ?>
  259. <div class="tline">
  260. <div class="col2"><?= $tempNum ?></div>
  261. <div class="col3"><?= htmlspecialcharsFix($redemption['cs_code']) ?></div>
  262. <div class="col4 rb-slidepanel" data-id="<?= $redemption['redemption_id'] ?>"><?= htmlspecialcharsFix($redemption['customer_name']) ?></div>
  263. <div class="col5"><?= date('Y-m-d', strtotime($redemption['redemption_date'])) ?></div>
  264. <div class="col6"><?= $redemption['product_count'] ?></div>
  265. <div class="col7 <?= $statusClass ?>"><?= number_format($redemption['total_rebate_amount'], 2) ?> 元</div>
  266. <div class="col8"><?= htmlspecialcharsFix($redemption['employee_name']) ?></div>
  267. <div class="col9">
  268. <a href="javascript:void(0)" class="rb-toggleDetail" data-id="<?= $redemption['redemption_id'] ?>">查看详情</a>
  269. </div>
  270. </div>
  271. <div class="notepanel clear" id="detail-<?= $redemption['redemption_id'] ?>">
  272. <div class="noteItem">返点详情</div>
  273. <?php if (!empty($redemption['notes'])): ?>
  274. <div style="margin-bottom: 10px; color: #666;">
  275. <strong>备注:</strong> <?= htmlspecialcharsFix($redemption['notes']) ?>
  276. </div>
  277. <?php endif; ?>
  278. <div class="rebate-details" id="rebate-details-<?= $redemption['redemption_id'] ?>">
  279. <div style="text-align: center; padding: 10px;">
  280. <img src="images/loading.gif" alt="加载中" style="width: 20px; height: 20px;">
  281. 加载返点详情...
  282. </div>
  283. </div>
  284. </div>
  285. <?php
  286. }
  287. } else {
  288. if (empty($keys) && empty($fliterStr)) {
  289. echo '<div class="tline"><div style="width: 100%; text-align: center;">当前没有返点历史记录</div></div>';
  290. } else {
  291. echo '<div class="tline"><div style="width: 100%; text-align: center;"><a href="?">没有找到匹配的返点历史记录,点击返回</a></div></div>';
  292. }
  293. }
  294. ?>
  295. <div class="showpagebox">
  296. <?php
  297. if ($totalPages > 1) {
  298. $pageName = "?Keys=$keys$urlStr&";
  299. $pageLen = 3;
  300. if ($page > 1) {
  301. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  302. echo "<a href=\"{$pageName}Page=" . ($page - 1) . "\">上一页</a>";
  303. }
  304. if ($pageLen * 2 + 1 >= $totalPages) {
  305. $startPage = 1;
  306. $endPage = $totalPages;
  307. } else {
  308. if ($page <= $pageLen + 1) {
  309. $startPage = 1;
  310. $endPage = $pageLen * 2 + 1;
  311. } else {
  312. $startPage = $page - $pageLen;
  313. $endPage = $page + $pageLen;
  314. }
  315. if ($page + $pageLen > $totalPages) {
  316. $startPage = $totalPages - $pageLen * 2;
  317. $endPage = $totalPages;
  318. }
  319. }
  320. for ($i = $startPage; $i <= $endPage; $i++) {
  321. if ($i == $page) {
  322. echo "<a class=\"current\">$i</a>";
  323. } else {
  324. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  325. }
  326. }
  327. if ($page < $totalPages) {
  328. if ($totalPages - $page > $pageLen) {
  329. echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
  330. }
  331. echo "<a href=\"{$pageName}Page=" . ($page + 1) . "\">下一页</a>";
  332. echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
  333. }
  334. }
  335. ?>
  336. </div>
  337. </div>
  338. <script>
  339. $(document).ready(function() {
  340. // 添加日期验证逻辑
  341. $('input[name="fliterToDate"]').on('change', function() {
  342. var fromDate = $('input[name="fliterFromDate"]').val();
  343. var toDate = $(this).val();
  344. if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
  345. alert('结束日期不能早于开始日期');
  346. $(this).val(''); // 清空结束日期
  347. return false;
  348. }
  349. });
  350. // 开始日期变更时也进行验证
  351. $('input[name="fliterFromDate"]').on('change', function() {
  352. var fromDate = $(this).val();
  353. var toDate = $('input[name="fliterToDate"]').val();
  354. if (fromDate && toDate && new Date(toDate) < new Date(fromDate)) {
  355. alert('开始日期不能晚于结束日期');
  356. $('input[name="fliterToDate"]').val(''); // 清空结束日期
  357. return false;
  358. }
  359. });
  360. // 处理筛选条件改变
  361. $('.filterSearch').change(function() {
  362. var url = '?';
  363. var keys = $('#keys').val();
  364. if (keys && keys != '请输入客户名称或编码') {
  365. url += 'Keys=' + encodeURIComponent(keys) + '&';
  366. }
  367. $('.filterSearch').each(function() {
  368. var name = $(this).attr('name');
  369. var value = $(this).val();
  370. if (value) {
  371. url += name + '=' + encodeURIComponent(value) + '&';
  372. }
  373. });
  374. // 移除末尾的&
  375. if (url.endsWith('&')) {
  376. url = url.substring(0, url.length - 1);
  377. }
  378. location.href = url;
  379. });
  380. // 切换显示返点详情
  381. $('.rb-toggleDetail').on('click', function(e) {
  382. e.preventDefault();
  383. e.stopPropagation(); // 阻止事件冒泡
  384. var redemptionId = $(this).data('id');
  385. var $detailPanel = $('#detail-' + redemptionId);
  386. var $panel = $(this);
  387. if ($detailPanel.is(':visible')) {
  388. $detailPanel.slideUp();
  389. $panel.text('查看详情');
  390. // 移除打开状态
  391. $panel.closest('.tline').find('.rb-slidepanel').removeClass('open');
  392. } else {
  393. $detailPanel.slideDown();
  394. $panel.text('收起详情');
  395. // 添加打开状态
  396. $panel.closest('.tline').find('.rb-slidepanel').addClass('open');
  397. // 加载详情数据
  398. loadRedemptionDetails(redemptionId);
  399. }
  400. });
  401. // 客户名称点击也可以切换显示
  402. $('.rb-slidepanel').on('click', function(e) {
  403. e.preventDefault();
  404. e.stopPropagation(); // 阻止事件冒泡
  405. var redemptionId = $(this).data('id');
  406. var $detailPanel = $('#detail-' + redemptionId);
  407. var $toggleButton = $('.rb-toggleDetail[data-id="' + redemptionId + '"]');
  408. if ($detailPanel.is(':visible')) {
  409. $detailPanel.slideUp();
  410. $toggleButton.text('查看详情');
  411. $(this).removeClass('open');
  412. } else {
  413. $detailPanel.slideDown();
  414. $toggleButton.text('收起详情');
  415. $(this).addClass('open');
  416. // 加载详情数据
  417. loadRedemptionDetails(redemptionId);
  418. }
  419. });
  420. // 加载返点详情
  421. function loadRedemptionDetails(redemptionId) {
  422. var $detailsContainer = $('#rebate-details-' + redemptionId);
  423. // 检查是否已经加载过
  424. if ($detailsContainer.data('loaded')) {
  425. return;
  426. }
  427. // 异步加载详情
  428. $.ajax({
  429. url: 'get_rebate_details.php',
  430. type: 'GET',
  431. data: { redemption_id: redemptionId },
  432. dataType: 'json',
  433. success: function(data) {
  434. if (data && data.success) {
  435. var html = '<table class="detail-table" style="width:100%; border-collapse: collapse;">';
  436. html += '<tr style="background-color: #eee; font-weight: bold;">' +
  437. '<th style="padding: 8px; text-align: left; border: 1px solid #ddd;">订单编号</th>' +
  438. '<th style="padding: 8px; text-align: left; border: 1px solid #ddd;">产品名称</th>' +
  439. '<th style="padding: 8px; text-align: center; border: 1px solid #ddd;">数量</th>' +
  440. '<th style="padding: 8px; text-align: right; border: 1px solid #ddd;">返点单价</th>' +
  441. '<th style="padding: 8px; text-align: right; border: 1px solid #ddd;">返点金额</th>' +
  442. '</tr>';
  443. $.each(data.items, function(i, item) {
  444. html += '<tr style="border-bottom: 1px solid #ddd;">' +
  445. '<td style="padding: 8px; border: 1px solid #ddd;">' + item.order_code + '</td>' +
  446. '<td style="padding: 8px; border: 1px solid #ddd;">' + item.product_name + '</td>' +
  447. '<td style="padding: 8px; text-align: center; border: 1px solid #ddd;">' + item.quantity + ' ' + item.unit + '</td>' +
  448. '<td style="padding: 8px; text-align: right; border: 1px solid #ddd;">' + item.rebate_amount + ' 元/件</td>' +
  449. '<td style="padding: 8px; text-align: right; border: 1px solid #ddd;">' + item.total_rebate + ' 元</td>' +
  450. '</tr>';
  451. });
  452. html += '</table>';
  453. $detailsContainer.html(html);
  454. $detailsContainer.data('loaded', true);
  455. } else {
  456. $detailsContainer.html('<div style="padding: 10px; color: #e74c3c;">加载详情失败: ' + (data.message || '未知错误') + '</div>');
  457. }
  458. },
  459. error: function(jqXHR, textStatus, errorThrown) {
  460. $detailsContainer.html('<div style="padding: 10px; color: #e74c3c;">加载详情失败: ' + textStatus + '</div>');
  461. }
  462. });
  463. }
  464. });
  465. </script>
  466. </div>
  467. </body>
  468. </html>