save_relationship.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. header('Content-Type: application/json');
  5. // 验证必要的字段
  6. if (
  7. !isset($_POST['source_customer_id']) || !is_numeric($_POST['source_customer_id']) ||
  8. !isset($_POST['target_customer_id']) || !is_numeric($_POST['target_customer_id']) ||
  9. !isset($_POST['relationship_type']) || !is_numeric($_POST['relationship_type'])
  10. ) {
  11. echo json_encode(['success' => false, 'message' => '参数错误']);
  12. exit;
  13. }
  14. $sourceId = intval($_POST['source_customer_id']);
  15. $targetId = intval($_POST['target_customer_id']);
  16. $relationType = intval($_POST['relationship_type']);
  17. $relationStatus = isset($_POST['relationship_status']) ? intval($_POST['relationship_status']) : 1;
  18. $description = isset($_POST['description']) ? mysqli_real_escape_string($conn, $_POST['description']) : '';
  19. $id = isset($_POST['id']) && !empty($_POST['id']) ? intval($_POST['id']) : null;
  20. $employeeId = $_SESSION['employee_id'];
  21. $isAdmin = checkIfAdmin();
  22. // 验证权限
  23. if (!$isAdmin) {
  24. // 检查当前用户是否是源客户的负责人
  25. $customerSql = "SELECT id FROM customer WHERE id = $sourceId AND cs_belong = $employeeId";
  26. $customerResult = mysqli_query($conn, $customerSql);
  27. if (mysqli_num_rows($customerResult) == 0) {
  28. echo json_encode(['success' => false, 'message' => '您没有权限操作此客户关系']);
  29. exit;
  30. }
  31. // 如果是编辑,还需要验证是否有权限修改
  32. if ($id) {
  33. $checkSql = "SELECT source_customer_id FROM customer_relationship WHERE id = $id";
  34. $checkResult = mysqli_query($conn, $checkSql);
  35. if ($checkRow = mysqli_fetch_assoc($checkResult)) {
  36. $existingSourceId = $checkRow['source_customer_id'];
  37. // 检查现有关系的源客户是否是当前用户负责的
  38. if ($existingSourceId != $sourceId) {
  39. $sourceCheckSql = "SELECT id FROM customer WHERE id = $existingSourceId AND cs_belong = $employeeId";
  40. $sourceResult = mysqli_query($conn, $sourceCheckSql);
  41. if (mysqli_num_rows($sourceResult) == 0) {
  42. echo json_encode(['success' => false, 'message' => '您没有权限修改此客户关系']);
  43. exit;
  44. }
  45. }
  46. }
  47. }
  48. }
  49. // 检查源客户和目标客户是否相同
  50. if ($sourceId == $targetId) {
  51. echo json_encode(['success' => false, 'message' => '源客户和目标客户不能是同一个']);
  52. exit;
  53. }
  54. // 检查是否已存在相同的关系
  55. $checkDuplicateSql = "SELECT id FROM customer_relationship WHERE
  56. ((source_customer_id = $sourceId AND target_customer_id = $targetId) OR
  57. (source_customer_id = $targetId AND target_customer_id = $sourceId))";
  58. // 如果是编辑模式,需要排除当前记录
  59. if ($id) {
  60. $checkDuplicateSql .= " AND id != $id";
  61. }
  62. $duplicateResult = mysqli_query($conn, $checkDuplicateSql);
  63. if (mysqli_num_rows($duplicateResult) > 0) {
  64. echo json_encode(['success' => false, 'message' => '已存在相同的客户关系']);
  65. exit;
  66. }
  67. // 创建或更新关系
  68. if ($id) {
  69. // 更新现有关系
  70. $sql = "UPDATE customer_relationship SET
  71. source_customer_id = $sourceId,
  72. target_customer_id = $targetId,
  73. relationship_type = $relationType,
  74. relationship_status = $relationStatus,
  75. description = '$description',
  76. updated_at = NOW()
  77. WHERE id = $id";
  78. } else {
  79. // 创建新关系
  80. $sql = "INSERT INTO customer_relationship
  81. (source_customer_id, target_customer_id, relationship_type, relationship_status, description, employee_id, created_at, updated_at)
  82. VALUES ($sourceId, $targetId, $relationType, $relationStatus, '$description', $employeeId, NOW(), NOW())";
  83. }
  84. $result = mysqli_query($conn, $sql);
  85. if ($result) {
  86. $relationId = $id ?: mysqli_insert_id($conn);
  87. echo json_encode(['success' => true, 'id' => $relationId, 'message' => '保存成功']);
  88. } else {
  89. echo json_encode(['success' => false, 'message' => '保存失败: ' . mysqli_error($conn)]);
  90. }
  91. ?>