relationshipSave.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 获取操作类型
  5. $act = $_GET['act'] ?? '';
  6. // 获取表单数据
  7. $id = isset($_POST['id']) ? intval($_POST['id']) : (isset($_GET['id']) ? intval($_GET['id']) : 0);
  8. $source_customer_id = isset($_POST['source_customer_id']) ? intval($_POST['source_customer_id']) : 0;
  9. $target_customer_id = isset($_POST['target_customer_id']) ? intval($_POST['target_customer_id']) : 0;
  10. $relationship_type = isset($_POST['relationship_type']) ? intval($_POST['relationship_type']) : 0;
  11. $relationship_status = isset($_POST['relationship_status']) ? intval($_POST['relationship_status']) : 1;
  12. $description = isset($_POST['description']) ? textEncode($_POST['description']) : '';
  13. // 当前员工ID
  14. $employee_id = $_SESSION['employee_id'];
  15. // 删除操作
  16. if ($act == 'delete' && $id > 0) {
  17. // 验证关系记录是否存在
  18. $checkQuery = "SELECT * FROM customer_relationship WHERE id = $id";
  19. $result = $conn->query($checkQuery);
  20. if ($result->num_rows == 0) {
  21. echo "<script>alert('未找到指定的客户关系记录!'); window.location.href='relationships.php';</script>";
  22. exit;
  23. }
  24. // 记录删除操作到日志
  25. $row = $result->fetch_assoc();
  26. $source_company_query = "SELECT cs_company FROM customer WHERE id = ".$row['source_customer_id'];
  27. $target_company_query = "SELECT cs_company FROM customer WHERE id = ".$row['target_customer_id'];
  28. $source_result = $conn->query($source_company_query);
  29. $source_company = '';
  30. if ($source_row = $source_result->fetch_assoc()) {
  31. $source_company = textDecode($source_row['cs_company']);
  32. }
  33. $target_result = $conn->query($target_company_query);
  34. $target_company = '';
  35. if ($target_row = $target_result->fetch_assoc()) {
  36. $target_company = textDecode($target_row['cs_company']);
  37. }
  38. $log_message = $_SESSION['employee_name'] . " 删除了客户关系记录:" .
  39. $source_company . " 和 " . $target_company . " 之间的关系";
  40. logAction($log_message);
  41. // 执行删除操作
  42. $deleteQuery = "DELETE FROM customer_relationship WHERE id = $id";
  43. $conn->query($deleteQuery);
  44. echo "<script>alert('客户关系记录已成功删除!'); window.location.href='relationships.php';</script>";
  45. exit;
  46. }
  47. // 表单数据验证
  48. if ($_SERVER['REQUEST_METHOD'] == 'POST') {
  49. // 验证源客户和目标客户
  50. if ($source_customer_id <= 0 || $target_customer_id <= 0) {
  51. echo "<script>alert('请选择有效的源客户和目标客户!'); history.back();</script>";
  52. exit;
  53. }
  54. if ($source_customer_id == $target_customer_id) {
  55. echo "<script>alert('源客户和目标客户不能是同一个客户!'); history.back();</script>";
  56. exit;
  57. }
  58. // 验证关系类型
  59. if ($relationship_type <= 0 || $relationship_type > 6) {
  60. echo "<script>alert('请选择有效的关系类型!'); history.back();</script>";
  61. exit;
  62. }
  63. // 检查相同的关系是否已存在
  64. $checkDuplicateQuery = "SELECT * FROM customer_relationship
  65. WHERE source_customer_id = $source_customer_id
  66. AND target_customer_id = $target_customer_id
  67. AND relationship_type = $relationship_type";
  68. if ($id > 0) {
  69. $checkDuplicateQuery .= " AND id != $id";
  70. }
  71. $result = $conn->query($checkDuplicateQuery);
  72. if ($result->num_rows > 0) {
  73. echo "<script>alert('相同的客户关系记录已存在!'); history.back();</script>";
  74. exit;
  75. }
  76. // 根据是否有ID决定是更新还是新增
  77. if ($id > 0) {
  78. // 更新操作
  79. $updateQuery = "UPDATE customer_relationship SET
  80. source_customer_id = $source_customer_id,
  81. target_customer_id = $target_customer_id,
  82. relationship_type = $relationship_type,
  83. relationship_status = $relationship_status,
  84. description = '$description',
  85. updated_by = $employee_id,
  86. updated_at = NOW()
  87. WHERE id = $id";
  88. if ($conn->query($updateQuery)) {
  89. // 获取源客户和目标客户名称
  90. $source_company_query = "SELECT cs_company FROM customer WHERE id = $source_customer_id";
  91. $target_company_query = "SELECT cs_company FROM customer WHERE id = $target_customer_id";
  92. $source_result = $conn->query($source_company_query);
  93. $source_company = '';
  94. if ($source_row = $source_result->fetch_assoc()) {
  95. $source_company = textDecode($source_row['cs_company']);
  96. }
  97. $target_result = $conn->query($target_company_query);
  98. $target_company = '';
  99. if ($target_row = $target_result->fetch_assoc()) {
  100. $target_company = textDecode($target_row['cs_company']);
  101. }
  102. // 记录日志
  103. $log_message = $_SESSION['employee_name'] . " 更新了客户关系记录:" .
  104. $source_company . " 和 " . $target_company . " 之间的关系";
  105. logAction($log_message);
  106. echo "<script>alert('客户关系记录已成功更新!'); window.location.href='relationships.php';</script>";
  107. } else {
  108. echo "<script>alert('更新客户关系记录失败:" . $conn->error . "'); history.back();</script>";
  109. }
  110. } else {
  111. // 新增操作
  112. $insertQuery = "INSERT INTO customer_relationship
  113. (source_customer_id, target_customer_id, relationship_type, relationship_status,
  114. description, employee_id, updated_by, created_at, updated_at)
  115. VALUES ($source_customer_id, $target_customer_id, $relationship_type, $relationship_status,
  116. '$description', $employee_id, $employee_id, NOW(), NOW())";
  117. if ($conn->query($insertQuery)) {
  118. // 获取源客户和目标客户名称
  119. $source_company_query = "SELECT cs_company FROM customer WHERE id = $source_customer_id";
  120. $target_company_query = "SELECT cs_company FROM customer WHERE id = $target_customer_id";
  121. $source_result = $conn->query($source_company_query);
  122. $source_company = '';
  123. if ($source_row = $source_result->fetch_assoc()) {
  124. $source_company = textDecode($source_row['cs_company']);
  125. }
  126. $target_result = $conn->query($target_company_query);
  127. $target_company = '';
  128. if ($target_row = $target_result->fetch_assoc()) {
  129. $target_company = textDecode($target_row['cs_company']);
  130. }
  131. // 记录日志
  132. $log_message = $_SESSION['employee_name'] . " 新增了客户关系记录:" .
  133. $source_company . " 和 " . $target_company . " 之间的关系";
  134. logAction($log_message);
  135. echo "<script>alert('客户关系记录已成功添加!'); window.location.href='relationships.php';</script>";
  136. } else {
  137. echo "<script>alert('添加客户关系记录失败:" . $conn->error . "'); history.back();</script>";
  138. }
  139. }
  140. } else {
  141. echo "<script>alert('无效的请求!'); window.location.href='relationships.php';</script>";
  142. }
  143. ?>