rebate_redeem_save.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 防止非POST提交
  5. if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
  6. echo "<script>alert('无效的请求方式'); window.location.href='rebate_summary.php';</script>";
  7. exit;
  8. }
  9. // 获取表单数据
  10. $customerId = isset($_POST['customer_id']) ? intval($_POST['customer_id']) : 0;
  11. $totalRebateAmount = isset($_POST['total_rebate_amount']) ? floatval($_POST['total_rebate_amount']) : 0;
  12. $notes = isset($_POST['notes']) ? mysqli_real_escape_string($conn, $_POST['notes']) : '';
  13. $items = isset($_POST['items']) ? $_POST['items'] : [];
  14. // 验证基本数据
  15. if ($customerId <= 0) {
  16. echo "<script>alert('客户信息无效'); window.location.href='rebate_summary.php';</script>";
  17. exit;
  18. }
  19. if ($totalRebateAmount <= 0) {
  20. echo "<script>alert('返点总额必须大于零'); window.location.href='rebate_redeem.php?customer_id=$customerId';</script>";
  21. exit;
  22. }
  23. if (empty($items)) {
  24. echo "<script>alert('没有可兑换的返点项目'); window.location.href='rebate_redeem.php?customer_id=$customerId';</script>";
  25. exit;
  26. }
  27. // 开始事务
  28. $conn->begin_transaction();
  29. try {
  30. // 获取当前登录的员工ID
  31. $employeeId = $_SESSION['employee_id'];
  32. // 1. 创建主兑换记录
  33. $insertRedemption = "INSERT INTO rebate_redemptions
  34. (customer_id, redemption_date, total_rebate_amount, status, notes, created_by)
  35. VALUES (?, NOW(), ?, 1, ?, ?)";
  36. $stmt = $conn->prepare($insertRedemption);
  37. $stmt->bind_param("idsi", $customerId, $totalRebateAmount, $notes, $employeeId);
  38. if (!$stmt->execute()) {
  39. throw new Exception("创建兑换记录失败: " . $stmt->error);
  40. }
  41. $redemptionId = $conn->insert_id;
  42. $stmt->close();
  43. // 2. 创建兑换明细记录
  44. $insertItemStmt = $conn->prepare("INSERT INTO rebate_redemption_items
  45. (redemption_id, order_id, order_item_id, product_id, quantity, rebate_amount, rebate_rule_id)
  46. VALUES (?, ?, ?, ?, ?, ?, ?)");
  47. foreach ($items as $item) {
  48. $orderId = intval($item['order_id']);
  49. $orderItemId = intval($item['order_item_id']);
  50. $productId = intval($item['product_id']);
  51. $quantity = intval($item['quantity']);
  52. $rebateAmount = floatval($item['item_rebate_total']);
  53. $rebateRuleId = intval($item['rebate_rule_id']);
  54. $insertItemStmt->bind_param("iiiiidi", $redemptionId, $orderId, $orderItemId, $productId, $quantity, $rebateAmount, $rebateRuleId);
  55. if (!$insertItemStmt->execute()) {
  56. throw new Exception("创建兑换明细记录失败: " . $insertItemStmt->error);
  57. }
  58. }
  59. $insertItemStmt->close();
  60. // 提交事务
  61. $conn->commit();
  62. // 返回成功消息
  63. echo "<script>alert('返点兑换成功!'); window.location.href='rebate_summary.php';</script>";
  64. } catch (Exception $e) {
  65. // 回滚事务
  66. $conn->rollback();
  67. // 显示错误信息
  68. echo "<script>alert('处理失败: " . addslashes($e->getMessage()) . "'); window.location.href='rebate_redeem.php?customer_id=$customerId';</script>";
  69. }
  70. ?>