|
@@ -17,6 +17,13 @@ if (isset($_GET['id']) && is_numeric($_GET['id'])) {
|
|
|
if ($result->num_rows > 0) {
|
|
|
$relationshipData = $result->fetch_assoc();
|
|
|
$isEdit = true;
|
|
|
+
|
|
|
+ // 检查权限:如果不是管理员,只能编辑自己创建的关系
|
|
|
+ $isAdmin = checkIfAdmin();
|
|
|
+ if (!$isAdmin && $relationshipData['employee_id'] != $_SESSION['employee_id']) {
|
|
|
+ echo "<script>alert('您没有权限编辑此客户关系记录!'); window.location.href='relationships.php';</script>";
|
|
|
+ exit;
|
|
|
+ }
|
|
|
} else {
|
|
|
echo "<script>alert('未找到指定的客户关系记录!'); window.location.href='relationships.php';</script>";
|
|
|
exit;
|
|
@@ -306,7 +313,7 @@ if (isset($_GET['id']) && is_numeric($_GET['id'])) {
|
|
|
<th width="15%">源客户</th>
|
|
|
<td>
|
|
|
<div class="customer-search-container">
|
|
|
- <input type="text" id="source_customer_search" class="customer-search txt1" data-type="source" placeholder="输入客户名称搜索..." value="" />
|
|
|
+ <input type="text" id="source_customer_search" class="customer-search txt1" data-type="source" placeholder="输入客户编码或名称搜索..." value="" />
|
|
|
<div id="source_customer_selected" class="selected-customer-info" title="<?php
|
|
|
if ($isEdit) {
|
|
|
$sourceCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
|
|
@@ -348,7 +355,7 @@ if (isset($_GET['id']) && is_numeric($_GET['id'])) {
|
|
|
<th>目标客户</th>
|
|
|
<td>
|
|
|
<div class="customer-search-container">
|
|
|
- <input type="text" id="target_customer_search" class="customer-search txt1" data-type="target" placeholder="输入客户名称搜索..." value="" />
|
|
|
+ <input type="text" id="target_customer_search" class="customer-search txt1" data-type="target" placeholder="输入客户编码或名称搜索..." value="" />
|
|
|
<div id="target_customer_selected" class="selected-customer-info" title="<?php
|
|
|
if ($isEdit) {
|
|
|
$targetCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
|