get_rebate_details.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. header('Content-Type: application/json');
  5. // 获取返点兑换ID
  6. $redemptionId = isset($_GET['redemption_id']) ? intval($_GET['redemption_id']) : 0;
  7. if ($redemptionId <= 0) {
  8. echo json_encode(['success' => false, 'message' => '无效的兑换ID']);
  9. exit;
  10. }
  11. // 验证权限
  12. $employee_id = $_SESSION['employee_id'];
  13. $isAdmin = checkIfAdmin();
  14. // 获取返点兑换详情
  15. $sql = "SELECT
  16. rri.id,
  17. rri.order_id,
  18. rri.order_item_id,
  19. rri.product_id,
  20. rri.quantity,
  21. rri.rebate_amount,
  22. rri.rebate_rule_id,
  23. p.ProductName AS product_name,
  24. o.order_code,
  25. oi.unit,
  26. (SELECT rr.rebate_amount FROM rebate_rules rr WHERE rr.id = rri.rebate_rule_id) AS rule_amount
  27. FROM
  28. rebate_redemption_items rri
  29. JOIN
  30. products p ON rri.product_id = p.id
  31. JOIN
  32. orders o ON rri.order_id = o.id
  33. JOIN
  34. order_items oi ON rri.order_item_id = oi.id
  35. JOIN
  36. rebate_redemptions rr ON rri.redemption_id = rr.id
  37. JOIN
  38. customer c ON rr.customer_id = c.id
  39. WHERE
  40. rri.redemption_id = ?";
  41. // 非管理员只能查看自己客户的数据
  42. if (!$isAdmin) {
  43. $sql .= " AND c.cs_belong = $employee_id";
  44. }
  45. $sql .= " ORDER BY o.order_code, p.ProductName";
  46. // 使用预处理语句防止SQL注入
  47. $stmt = $conn->prepare($sql);
  48. $stmt->bind_param("i", $redemptionId);
  49. $stmt->execute();
  50. $result = $stmt->get_result();
  51. if (!$result) {
  52. echo json_encode(['success' => false, 'message' => '查询失败: ' . $conn->error]);
  53. exit;
  54. }
  55. // 获取所有返点项目
  56. $items = [];
  57. while ($row = $result->fetch_assoc()) {
  58. // 使用规则表中的单位返点金额,而不是存储的总返点金额
  59. $unitRebate = isset($row['rule_amount']) ? $row['rule_amount'] : $row['rebate_amount'];
  60. // 计算每项的总返点金额
  61. $totalRebate = $row['quantity'] * $unitRebate;
  62. $items[] = [
  63. 'id' => $row['id'],
  64. 'order_id' => $row['order_id'],
  65. 'order_code' => $row['order_code'],
  66. 'product_id' => $row['product_id'],
  67. 'product_name' => htmlspecialcharsFix($row['product_name']),
  68. 'quantity' => $row['quantity'],
  69. 'unit' => $row['unit'],
  70. 'rebate_amount' => number_format($unitRebate, 2),
  71. 'total_rebate' => number_format($totalRebate, 2)
  72. ];
  73. }
  74. // 返回JSON数据
  75. echo json_encode([
  76. 'success' => true,
  77. 'redemption_id' => $redemptionId,
  78. 'items' => $items,
  79. 'count' => count($items)
  80. ]);
  81. ?>