order_delete.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 获取订单ID
  5. $id = isset($_GET['id']) ? intval($_GET['id']) : 0;
  6. $keys = urlencode($_GET['keys'] ?? '');
  7. $page = $_GET['page'] ?? 1;
  8. // 验证参数
  9. if ($id <= 0) {
  10. echo "<script>alert('无效的订单ID');location.href='order.php?keys=$keys&Page=$page';</script>";
  11. exit;
  12. }
  13. // 验证订单所有权(只能删除自己的订单)
  14. $employee_id = $_SESSION['employee_id'];
  15. $isAdmin = checkIfAdmin();
  16. $checkSql = "SELECT id FROM orders WHERE id = $id";
  17. if (!$isAdmin) {
  18. $checkSql .= " AND employee_id = $employee_id";
  19. }
  20. $checkResult = mysqli_query($conn, $checkSql);
  21. if (mysqli_num_rows($checkResult) === 0) {
  22. echo "<script>alert('订单不存在或您没有权限删除该订单');location.href='order.php?keys=$keys&Page=$page';</script>";
  23. exit;
  24. }
  25. // 开始事务处理
  26. mysqli_autocommit($conn, FALSE);
  27. $error = false;
  28. try {
  29. // 先删除订单项目
  30. $deleteItemsSql = "DELETE FROM order_items WHERE order_id = $id";
  31. if (!mysqli_query($conn, $deleteItemsSql)) {
  32. throw new Exception("删除订单项目失败: " . mysqli_error($conn));
  33. }
  34. // 删除订单主表
  35. $deleteOrderSql = "DELETE FROM orders WHERE id = $id";
  36. if (!$isAdmin) {
  37. $deleteOrderSql .= " AND employee_id = $employee_id";
  38. }
  39. if (!mysqli_query($conn, $deleteOrderSql)) {
  40. throw new Exception("删除订单失败: " . mysqli_error($conn));
  41. }
  42. // 提交事务
  43. mysqli_commit($conn);
  44. echo "<script>alert('订单删除成功');location.href='order.php?keys=$keys&Page=$page';</script>";
  45. } catch (Exception $e) {
  46. // 回滚事务
  47. mysqli_rollback($conn);
  48. echo "<script>alert('删除订单时发生错误: " . $e->getMessage() . "');location.href='order.php?keys=$keys&Page=$page';</script>";
  49. }
  50. // 恢复自动提交
  51. mysqli_autocommit($conn, TRUE);
  52. exit;
  53. ?>