rebate_redeem.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 获取客户ID
  5. $customerId = isset($_GET['customer_id']) ? intval($_GET['customer_id']) : 0;
  6. if ($customerId <= 0) {
  7. echo "<script>alert('请选择一个有效的客户'); window.location.href='rebate_summary.php';</script>";
  8. exit;
  9. }
  10. // 获取客户信息
  11. $customerQuery = $conn->query("SELECT c.id, c.cs_code, c.cs_company
  12. FROM customer c
  13. WHERE c.id = " . $customerId);
  14. if (!$customerQuery || $customerQuery->num_rows == 0) {
  15. echo "<script>alert('找不到指定的客户'); window.location.href='rebate_summary.php';</script>";
  16. exit;
  17. }
  18. $customerInfo = $customerQuery->fetch_assoc();
  19. // 获取可兑换的返点信息 - 从订单项目中获取
  20. $rebateQuery = "
  21. SELECT
  22. o.id AS order_id,
  23. o.order_code,
  24. o.order_date,
  25. oi.id AS order_item_id,
  26. oi.product_id,
  27. p.ProductName,
  28. oi.quantity,
  29. oi.unit,
  30. (
  31. SELECT rr.id
  32. FROM rebate_rules rr
  33. WHERE rr.product_id = oi.product_id
  34. AND rr.min_quantity <= (
  35. SELECT SUM(oi2.quantity)
  36. FROM order_items oi2
  37. JOIN orders o2 ON oi2.order_id = o2.id
  38. WHERE o2.customer_id = o.customer_id
  39. AND oi2.product_id = oi.product_id
  40. AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
  41. AND NOT EXISTS (
  42. SELECT 1
  43. FROM rebate_redemption_items rri
  44. WHERE rri.order_item_id = oi2.id
  45. )
  46. )
  47. ORDER BY rr.min_quantity DESC
  48. LIMIT 1
  49. ) AS rebate_rule_id,
  50. (
  51. SELECT rr.rebate_amount
  52. FROM rebate_rules rr
  53. WHERE rr.product_id = oi.product_id
  54. AND rr.min_quantity <= (
  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. ORDER BY rr.min_quantity DESC
  68. LIMIT 1
  69. ) AS rebate_amount,
  70. oi.quantity * (
  71. SELECT rr.rebate_amount
  72. FROM rebate_rules rr
  73. WHERE rr.product_id = oi.product_id
  74. AND rr.min_quantity <= (
  75. SELECT SUM(oi2.quantity)
  76. FROM order_items oi2
  77. JOIN orders o2 ON oi2.order_id = o2.id
  78. WHERE o2.customer_id = o.customer_id
  79. AND oi2.product_id = oi.product_id
  80. AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
  81. AND NOT EXISTS (
  82. SELECT 1
  83. FROM rebate_redemption_items rri
  84. WHERE rri.order_item_id = oi2.id
  85. )
  86. )
  87. ORDER BY rr.min_quantity DESC
  88. LIMIT 1
  89. ) AS item_rebate_total
  90. FROM
  91. orders o
  92. JOIN
  93. order_items oi ON o.id = oi.order_id
  94. JOIN
  95. products p ON oi.product_id = p.id
  96. WHERE
  97. o.customer_id = $customerId
  98. AND o.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
  99. AND p.rebate = 1
  100. AND NOT EXISTS (
  101. SELECT 1
  102. FROM rebate_redemption_items rri
  103. WHERE rri.order_item_id = oi.id
  104. )
  105. -- 确保该订单项有返点规则可用
  106. AND EXISTS (
  107. SELECT 1
  108. FROM rebate_rules rr
  109. WHERE rr.product_id = oi.product_id
  110. AND rr.min_quantity <= (
  111. SELECT SUM(oi2.quantity)
  112. FROM order_items oi2
  113. JOIN orders o2 ON oi2.order_id = o2.id
  114. WHERE o2.customer_id = o.customer_id
  115. AND oi2.product_id = oi.product_id
  116. AND o2.order_date >= DATE_SUB(CURRENT_DATE(), INTERVAL 90 DAY)
  117. AND NOT EXISTS (
  118. SELECT 1
  119. FROM rebate_redemption_items rri
  120. WHERE rri.order_item_id = oi2.id
  121. )
  122. )
  123. )
  124. ORDER BY
  125. o.order_date DESC, p.ProductName ASC";
  126. $rebateResult = $conn->query($rebateQuery);
  127. if (!$rebateResult) {
  128. echo "<script>alert('获取返点信息失败: " . $conn->error . "'); window.location.href='rebate_summary.php';</script>";
  129. exit;
  130. }
  131. // 计算总返点金额
  132. $totalRebateAmount = 0;
  133. $rebateItems = [];
  134. while ($row = $rebateResult->fetch_assoc()) {
  135. $rebateItems[] = $row;
  136. $totalRebateAmount += floatval($row['item_rebate_total']);
  137. }
  138. // 如果没有可兑换的返点,返回列表页
  139. if (count($rebateItems) == 0) {
  140. echo "<script>alert('该客户当前没有可兑换的返点'); window.location.href='rebate_summary.php';</script>";
  141. exit;
  142. }
  143. ?>
  144. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  145. <html xmlns="http://www.w3.org/1999/xhtml">
  146. <head>
  147. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  148. <title>返点兑换</title>
  149. <link rel="stylesheet" href="css/common.css" type="text/css" />
  150. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  151. <script src="js/jquery-1.7.2.min.js"></script>
  152. <script src="js/js.js"></script>
  153. <style>
  154. body {
  155. margin: 0;
  156. padding: 20px;
  157. background: #fff;
  158. }
  159. #man_zone {
  160. margin-left: 0;
  161. }
  162. .rebate-item-row {
  163. position: relative;
  164. padding: 12px 15px;
  165. margin-bottom: 8px;
  166. border-radius: 4px;
  167. display: flex;
  168. align-items: center;
  169. flex-wrap: wrap;
  170. gap: 15px;
  171. background-color: #f9f9f9;
  172. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  173. }
  174. .rebate-item-row:hover {
  175. background-color: #f0f0f0;
  176. }
  177. .order-code {
  178. flex: 1;
  179. min-width: 100px;
  180. }
  181. .order-date {
  182. flex: 1;
  183. min-width: 120px;
  184. }
  185. .product-name {
  186. flex: 2;
  187. min-width: 150px;
  188. }
  189. .item-quantity {
  190. flex: 0.8;
  191. min-width: 80px;
  192. text-align: center;
  193. }
  194. .rebate-rate {
  195. flex: 0.8;
  196. min-width: 100px;
  197. text-align: right;
  198. }
  199. .item-total {
  200. flex: 1;
  201. min-width: 100px;
  202. text-align: right;
  203. font-weight: bold;
  204. color: #e74c3c;
  205. }
  206. .customer-info {
  207. background-color: #f5f5f5;
  208. padding: 15px;
  209. border-radius: 5px;
  210. margin-bottom: 20px;
  211. border: 1px solid #ddd;
  212. display: flex;
  213. justify-content: space-between;
  214. align-items: center;
  215. }
  216. .customer-info .customer-details {
  217. flex: 1;
  218. }
  219. .customer-info h2 {
  220. margin-top: 0;
  221. margin-bottom: 10px;
  222. font-size: 18px;
  223. color: #333;
  224. }
  225. .customer-info p {
  226. margin: 5px 0;
  227. color: #555;
  228. }
  229. .customer-info .actions {
  230. text-align: right;
  231. }
  232. .btn-history {
  233. background-color: #3498db;
  234. color: white;
  235. border: none;
  236. padding: 8px 16px;
  237. font-size: 14px;
  238. border-radius: 4px;
  239. cursor: pointer;
  240. text-decoration: none;
  241. display: inline-block;
  242. }
  243. .btn-history:hover {
  244. background-color: #2980b9;
  245. }
  246. .list-header {
  247. display: flex;
  248. background-color: #eee;
  249. padding: 10px 15px;
  250. margin-bottom: 10px;
  251. border-radius: 4px;
  252. font-weight: bold;
  253. color: #555;
  254. font-size: 13px;
  255. gap: 15px;
  256. }
  257. .total-section {
  258. margin-top: 20px;
  259. padding: 15px;
  260. background-color: #f5f5f5;
  261. border-radius: 4px;
  262. box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  263. }
  264. .btn-redeem {
  265. background-color: #e74c3c;
  266. color: white;
  267. border: none;
  268. padding: 10px 20px;
  269. font-size: 16px;
  270. border-radius: 4px;
  271. cursor: pointer;
  272. margin-top: 20px;
  273. }
  274. .btn-redeem:hover {
  275. background-color: #c0392b;
  276. }
  277. .btn-cancel {
  278. background-color: #7f8c8d;
  279. color: white;
  280. border: none;
  281. padding: 10px 20px;
  282. font-size: 16px;
  283. border-radius: 4px;
  284. cursor: pointer;
  285. margin-right: 10px;
  286. }
  287. .btn-cancel:hover {
  288. background-color: #6c7a7a;
  289. }
  290. .rebate-notes {
  291. margin-top: 15px;
  292. width: 100%;
  293. padding: 8px;
  294. border: 1px solid #ddd;
  295. border-radius: 4px;
  296. resize: vertical;
  297. min-height: 60px;
  298. }
  299. @media (max-width: 768px) {
  300. .rebate-item-row {
  301. flex-direction: column;
  302. align-items: flex-start;
  303. }
  304. .list-header {
  305. display: none;
  306. }
  307. .order-code, .order-date, .product-name, .item-quantity,
  308. .rebate-rate, .item-total {
  309. width: 100%;
  310. min-width: 100%;
  311. margin-bottom: 5px;
  312. }
  313. }
  314. </style>
  315. </head>
  316. <body>
  317. <div id="man_zone">
  318. <div class="customer-info">
  319. <div class="customer-details">
  320. <h2>客户返点兑换</h2>
  321. <p><strong>客户编码:</strong> <?= htmlspecialcharsFix($customerInfo['cs_code']) ?></p>
  322. <p><strong>客户名称:</strong> <?= htmlspecialcharsFix($customerInfo['cs_company']) ?></p>
  323. </div>
  324. <div class="actions">
  325. <a href="rebate_history.php" class="btn-history">查看返点历史</a>
  326. </div>
  327. </div>
  328. <form name="redeemForm" id="redeemForm" method="post" action="rebate_redeem_save.php" onsubmit="return validateRedeemForm()">
  329. <input type="hidden" name="customer_id" value="<?= $customerId ?>">
  330. <input type="hidden" name="total_rebate_amount" id="total-rebate-amount" value="<?= $totalRebateAmount ?>">
  331. <div class="list-header">
  332. <div class="order-code">订单编号</div>
  333. <div class="order-date">订单日期</div>
  334. <div class="product-name">产品名称</div>
  335. <div class="item-quantity">数量</div>
  336. <div class="rebate-rate">返点单价</div>
  337. <div class="item-total">返点金额</div>
  338. </div>
  339. <div id="rebate-items-container">
  340. <?php foreach ($rebateItems as $index => $item): ?>
  341. <div class="rebate-item-row">
  342. <!-- 隐藏字段,所有项目都会被提交 -->
  343. <input type="hidden" name="items[<?= $index ?>][selected]" value="1">
  344. <input type="hidden" name="items[<?= $index ?>][order_id]" value="<?= $item['order_id'] ?>">
  345. <input type="hidden" name="items[<?= $index ?>][order_item_id]" value="<?= $item['order_item_id'] ?>">
  346. <input type="hidden" name="items[<?= $index ?>][product_id]" value="<?= $item['product_id'] ?>">
  347. <input type="hidden" name="items[<?= $index ?>][quantity]" value="<?= $item['quantity'] ?>">
  348. <input type="hidden" name="items[<?= $index ?>][rebate_amount]" value="<?= $item['rebate_amount'] ?>">
  349. <input type="hidden" name="items[<?= $index ?>][rebate_rule_id]" value="<?= $item['rebate_rule_id'] ?>">
  350. <input type="hidden" name="items[<?= $index ?>][item_rebate_total]" value="<?= $item['item_rebate_total'] ?>">
  351. <div class="order-code"><?= htmlspecialcharsFix($item['order_code']) ?></div>
  352. <div class="order-date"><?= date('Y-m-d', strtotime($item['order_date'])) ?></div>
  353. <div class="product-name"><?= htmlspecialcharsFix($item['ProductName']) ?></div>
  354. <div class="item-quantity"><?= $item['quantity'] ?> <?= $item['unit'] ?></div>
  355. <div class="rebate-rate"><?= number_format($item['rebate_amount'], 2) ?> 元/件</div>
  356. <div class="item-total"><?= number_format($item['item_rebate_total'], 2) ?> 元</div>
  357. </div>
  358. <?php endforeach; ?>
  359. </div>
  360. <div class="total-section">
  361. <div style="display: flex; justify-content: space-between; align-items: center;">
  362. <div>
  363. <label for="notes">兑换备注:</label>
  364. <textarea name="notes" id="notes" class="rebate-notes" placeholder="可选备注内容..."></textarea>
  365. </div>
  366. <div style="display: flex; flex-direction: column; align-items: flex-end;">
  367. <div style="font-size: 16px; margin-bottom: 10px;">
  368. <label>总返点金额:</label>
  369. <span id="total-rebate-display" style="font-size: 18px; font-weight: bold; color: #e74c3c;"><?= number_format($totalRebateAmount, 2) ?> 元</span>
  370. </div>
  371. <div>
  372. <button type="button" class="btn-cancel" onclick="window.location.href='rebate_summary.php'">取消</button>
  373. <button type="submit" class="btn-redeem">确认兑换</button>
  374. </div>
  375. </div>
  376. </div>
  377. </div>
  378. </form>
  379. <script>
  380. // 验证表单
  381. function validateRedeemForm() {
  382. return confirm('确定要兑换所有返点项目吗?此操作不可逆!');
  383. }
  384. </script>
  385. </div>
  386. </body>
  387. </html>