get_relationship.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. header('Content-Type: application/json');
  5. if (!isset($_GET['id']) || !is_numeric($_GET['id'])) {
  6. echo json_encode(['success' => false, 'message' => '参数错误']);
  7. exit;
  8. }
  9. $id = intval($_GET['id']);
  10. // 获取关系详情
  11. $sql = "SELECT cr.*,
  12. c1.cs_company as source_company, c1.cs_code as source_code,
  13. c2.cs_company as target_company, c2.cs_code as target_code
  14. FROM customer_relationship cr
  15. LEFT JOIN customer c1 ON cr.source_customer_id = c1.id
  16. LEFT JOIN customer c2 ON cr.target_customer_id = c2.id
  17. WHERE cr.id = $id";
  18. $result = mysqli_query($conn, $sql);
  19. if ($row = mysqli_fetch_assoc($result)) {
  20. // 检查权限:如果不是管理员,只能查看自己能操作的客户
  21. $isAdmin = checkIfAdmin();
  22. if (!$isAdmin) {
  23. // 检查当前用户是否是源客户或目标客户的负责人
  24. $sourceId = $row['source_customer_id'];
  25. $targetId = $row['target_customer_id'];
  26. $employeeId = $_SESSION['employee_id'];
  27. $customerSql = "SELECT id FROM customer WHERE (id = $sourceId OR id = $targetId) AND cs_belong = $employeeId";
  28. $customerResult = mysqli_query($conn, $customerSql);
  29. if (mysqli_num_rows($customerResult) == 0) {
  30. echo json_encode(['success' => false, 'message' => '您没有权限查看此客户关系']);
  31. exit;
  32. }
  33. }
  34. // 准备返回数据
  35. $row['source_company'] = textUncode($row['source_company']);
  36. $row['source_code'] = textUncode($row['source_code']);
  37. $row['target_company'] = textUncode($row['target_company']);
  38. $row['target_code'] = textUncode($row['target_code']);
  39. $row['description'] = textUncode($row['description']);
  40. echo json_encode(['success' => true, 'relationship' => $row]);
  41. } else {
  42. echo json_encode(['success' => false, 'message' => '未找到客户关系']);
  43. }
  44. ?>