relationshipSave.php 8.4 KB

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