Explorar el Código

fleat: relationship

igb hace 1 semana
padre
commit
c12d216859
Se han modificado 3 ficheros con 803 adiciones y 0 borrados
  1. 419 0
      relationshipAdd.php
  2. 187 0
      relationshipSave.php
  3. 197 0
      relationships.php

+ 419 - 0
relationshipAdd.php

@@ -0,0 +1,419 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+
+// 检查是否为编辑模式
+$isEdit = false;
+$relationshipData = null;
+
+if (isset($_GET['id']) && is_numeric($_GET['id'])) {
+    $id = intval($_GET['id']);
+    $query = "SELECT * FROM customer_relationship WHERE id = ?";
+    $stmt = $conn->prepare($query);
+    $stmt->bind_param('i', $id);
+    $stmt->execute();
+    $result = $stmt->get_result();
+    
+    if ($result->num_rows > 0) {
+        $relationshipData = $result->fetch_assoc();
+        $isEdit = true;
+    } else {
+        echo "<script>alert('未找到指定的客户关系记录!'); window.location.href='relationships.php';</script>";
+        exit;
+    }
+}
+?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title><?= $isEdit ? '编辑' : '新增' ?>客户关系</title>
+    <link rel="stylesheet" href="css/common.css" type="text/css" />
+    <script src="js/jquery-1.7.2.min.js"></script>
+    <script src="js/js.js"></script>
+    <script src="js/ySearchSelect.js"></script>
+    <style>
+        body {
+            margin: a;
+            padding: 20px;
+            background: #fff;
+        }
+        #man_zone {
+            margin-left: 0;
+        }
+        .relationship-form-container {
+            margin-bottom: 20px;
+        }
+        .customer-search-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 10px;
+            position: relative;
+            width: 60%;
+        }
+        .customer-info {
+            margin-top: 5px;
+            padding: 5px;
+            background-color: #f5f5f5;
+            border: 1px solid #ddd;
+            border-radius: 3px;
+            display: none;
+        }
+        .customer-dropdown {
+            display: none;
+            position: absolute;
+            background: white;
+            border: 1px solid #ccc;
+            max-height: 200px;
+            overflow-y: auto;
+            width: 100%;
+            z-index: 1000;
+            box-shadow: 0 3px 8px rgba(0,0,0,0.25);
+            border-radius: 0 0 4px 4px;
+            top: 100%;
+            left: 0;
+        }
+        .customer-item {
+            padding: 10px 12px;
+            cursor: pointer;
+            border-bottom: 1px solid #eee;
+            transition: background-color 0.2s;
+        }
+        .customer-item:hover {
+            background-color: #f0f0f0;
+        }
+        .customer-item:last-child {
+            border-bottom: none;
+        }
+        .selected-customer-info {
+            font-weight: bold;
+            padding: 8px 10px;
+            border: 1px solid #ddd;
+            background-color: #f9f9f9;
+            display: none;
+            width: 100%;
+            box-sizing: border-box;
+            word-break: break-all;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            white-space: normal;
+            min-height: 38px;
+            cursor: pointer;
+        }
+        .selected-customer-info:hover {
+            background-color: #f0f0f0;
+        }
+    </style>
+    <script>
+        $(document).ready(function() {
+            // 处理表单提交前的验证
+            $('#save').click(function() {
+                if (validateForm()) {
+                    $('#form1').submit();
+                }
+            });
+            
+            // 客户搜索功能
+            var customerSearchTimeouts = {
+                source: null,
+                target: null
+            };
+            var customerIsComposing = false;
+            
+            // 监听输入法组合事件
+            $(document).on('compositionstart', '.customer-search', function() {
+                customerIsComposing = true;
+            });
+
+            $(document).on('compositionend', '.customer-search', function() {
+                customerIsComposing = false;
+                $(this).trigger('input'); // 手动触发一次input事件
+            });
+            
+            // 客户搜索输入
+            $(document).on('input', '.customer-search', function() {
+                // 如果是输入法正在组合中文,不处理
+                if (customerIsComposing) return;
+                
+                var $this = $(this);
+                var searchType = $this.data('type'); // source 或 target
+                var searchTerm = $this.val().trim();
+                var customerDropdown = $('#' + searchType + '_customer_dropdown');
+                
+                // 清除之前的超时
+                clearTimeout(customerSearchTimeouts[searchType]);
+                
+                // 隐藏之前的结果
+                customerDropdown.hide();
+                
+                // 清除之前的选择
+                $('#' + searchType + '_customer_id').val('');
+                $('#' + searchType + '_customer_selected').hide();
+                
+                // 如果搜索词少于1个字符,不执行搜索
+                if (searchTerm.length < 1) {
+                    return;
+                }
+                
+                // 设置一个300毫秒的超时,以减少请求数量
+                customerSearchTimeouts[searchType] = setTimeout(function() {
+                    $.ajax({
+                        url: 'get_customer_search.php',
+                        type: 'GET',
+                        data: {search: searchTerm},
+                        dataType: 'json',
+                        success: function(data) {
+                            customerDropdown.empty();
+                            
+                            if (data && data.customers && data.customers.length > 0) {
+                                $.each(data.customers, function(i, customer) {
+                                    var displayText = customer.cs_company;
+                                    if (customer.cs_code) {
+                                        displayText = customer.cs_code + ' - ' + displayText;
+                                    }
+                                    
+                                    var item = $('<div class="customer-item"></div>')
+                                        .attr('data-id', customer.id)
+                                        .attr('data-company', customer.cs_company)
+                                        .attr('data-display', displayText)
+                                        .text(displayText);
+                                    
+                                    customerDropdown.append(item);
+                                });
+                                customerDropdown.show();
+                            }
+                        },
+                        error: function() {
+                            console.log('搜索客户失败,请重试');
+                        }
+                    });
+                }, 300);
+            });
+            
+            // 点击选择客户
+            $(document).on('click', '.customer-item', function() {
+                var $this = $(this);
+                var customerId = $this.data('id');
+                var customerName = $this.data('company');
+                var displayText = $this.data('display');
+                var parentContainer = $this.parent();
+                var searchType = parentContainer.attr('id').replace('_customer_dropdown', '');
+                
+                // 设置选中的客户ID和名称
+                $('#' + searchType + '_customer_id').val(customerId);
+                $('#' + searchType + '_customer_search').hide();
+                $('#' + searchType + '_customer_selected').text(displayText).show();
+                $('#' + searchType + '_customer_company').val(customerName);
+                
+                // 添加标题属性,便于查看完整信息
+                $('#' + searchType + '_customer_selected').attr('title', displayText);
+                
+                // 隐藏下拉菜单
+                parentContainer.hide();
+            });
+            
+            // 点击已选客户可以重新选择
+            $(document).on('click', '.selected-customer-info', function() {
+                var $this = $(this);
+                var searchType = $this.attr('id').replace('_customer_selected', '');
+                
+                // 显示搜索框,隐藏已选信息
+                $('#' + searchType + '_customer_search').val('').show();
+                $this.hide();
+                
+                // 清空客户ID
+                $('#' + searchType + '_customer_id').val('');
+            });
+            
+            // 点击其他地方隐藏下拉列表
+            $(document).on('click', function(e) {
+                if (!$(e.target).closest('.customer-search-container').length) {
+                    $('.customer-dropdown').hide();
+                }
+            });
+            
+            // 如果编辑模式下已有选中客户,显示客户信息
+            <?php if ($isEdit): ?>
+            $('#source_customer_selected').show();
+            $('#target_customer_selected').show();
+            $('#source_customer_search').hide();
+            $('#target_customer_search').hide();
+            <?php endif; ?>
+        });
+        
+        // 表单验证函数
+        function validateForm() {
+            // 验证源客户和目标客户
+            var sourceCustomerId = $('#source_customer_id').val();
+            var targetCustomerId = $('#target_customer_id').val();
+            var relationshipType = $('#relationship_type').val();
+            
+            if (!sourceCustomerId) {
+                alert('请选择源客户');
+                $('#source_customer_search').show().focus();
+                $('#source_customer_selected').hide();
+                return false;
+            }
+            
+            if (!targetCustomerId) {
+                alert('请选择目标客户');
+                $('#target_customer_search').show().focus();
+                $('#target_customer_selected').hide();
+                return false;
+            }
+            
+            if (sourceCustomerId === targetCustomerId) {
+                alert('源客户和目标客户不能是同一个客户');
+                return false;
+            }
+            
+            if (!relationshipType) {
+                alert('请选择关系类型');
+                $('#relationship_type').focus();
+                return false;
+            }
+            
+            return true;
+        }
+    </script>
+</head>
+<body class="clear">
+<?php // require_once 'panel.php'; ?>
+<div id="man_zone">
+    <form name="form1" id="form1" method="post" action="relationshipSave.php">
+        <?php if ($isEdit): ?>
+        <input type="hidden" name="id" value="<?= $relationshipData['id'] ?>">
+        <?php endif; ?>
+        
+        <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
+            <tbody>
+                <tr>
+                    <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="" />
+                            <div id="source_customer_selected" class="selected-customer-info" title="<?php 
+                            if ($isEdit) {
+                                $sourceCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
+                                $stmt = $conn->prepare($sourceCustQuery);
+                                $stmt->bind_param('i', $relationshipData['source_customer_id']);
+                                $stmt->execute();
+                                $result = $stmt->get_result();
+                                if ($row = $result->fetch_assoc()) {
+                                    $displayText = $row['cs_company'];
+                                    if ($row['cs_code']) {
+                                        $displayText = $row['cs_code'] . ' - ' . $displayText;
+                                    }
+                                    echo htmlspecialchars(textDecode($displayText));
+                                }
+                            }
+                            ?>"><?php 
+                            if ($isEdit) {
+                                $sourceCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
+                                $stmt = $conn->prepare($sourceCustQuery);
+                                $stmt->bind_param('i', $relationshipData['source_customer_id']);
+                                $stmt->execute();
+                                $result = $stmt->get_result();
+                                if ($row = $result->fetch_assoc()) {
+                                    $displayText = $row['cs_company'];
+                                    if ($row['cs_code']) {
+                                        $displayText = $row['cs_code'] . ' - ' . $displayText;
+                                    }
+                                    echo htmlspecialchars(textDecode($displayText));
+                                }
+                            }
+                            ?></div>
+                            <div id="source_customer_dropdown" class="customer-dropdown"></div>
+                        </div>
+                        <input type="hidden" id="source_customer_id" name="source_customer_id" value="<?= $isEdit ? $relationshipData['source_customer_id'] : '' ?>" />
+                        <input type="hidden" id="source_customer_company" name="source_customer_company" value="" />
+                    </td>
+                </tr>
+                <tr>
+                    <th>目标客户</th>
+                    <td>
+                        <div class="customer-search-container">
+                            <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 = ?";
+                                $stmt = $conn->prepare($targetCustQuery);
+                                $stmt->bind_param('i', $relationshipData['target_customer_id']);
+                                $stmt->execute();
+                                $result = $stmt->get_result();
+                                if ($row = $result->fetch_assoc()) {
+                                    $displayText = $row['cs_company'];
+                                    if ($row['cs_code']) {
+                                        $displayText = $row['cs_code'] . ' - ' . $displayText;
+                                    }
+                                    echo htmlspecialchars(textDecode($displayText));
+                                }
+                            }
+                            ?>"><?php 
+                            if ($isEdit) {
+                                $targetCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
+                                $stmt = $conn->prepare($targetCustQuery);
+                                $stmt->bind_param('i', $relationshipData['target_customer_id']);
+                                $stmt->execute();
+                                $result = $stmt->get_result();
+                                if ($row = $result->fetch_assoc()) {
+                                    $displayText = $row['cs_company'];
+                                    if ($row['cs_code']) {
+                                        $displayText = $row['cs_code'] . ' - ' . $displayText;
+                                    }
+                                    echo htmlspecialchars(textDecode($displayText));
+                                }
+                            }
+                            ?></div>
+                            <div id="target_customer_dropdown" class="customer-dropdown"></div>
+                        </div>
+                        <input type="hidden" id="target_customer_id" name="target_customer_id" value="<?= $isEdit ? $relationshipData['target_customer_id'] : '' ?>" />
+                        <input type="hidden" id="target_customer_company" name="target_customer_company" value="" />
+                    </td>
+                </tr>
+                <tr>
+                    <th>关系类型</th>
+                    <td>
+                        <select id="relationship_type" name="relationship_type" class="txt1">
+                            <option value="">请选择关系类型</option>
+                            <option value="1" <?= $isEdit && $relationshipData['relationship_type'] == 1 ? 'selected' : '' ?>>母公司-子公司</option>
+                            <option value="2" <?= $isEdit && $relationshipData['relationship_type'] == 2 ? 'selected' : '' ?>>供应商-客户</option>
+                            <option value="3" <?= $isEdit && $relationshipData['relationship_type'] == 3 ? 'selected' : '' ?>>合作伙伴</option>
+                            <option value="4" <?= $isEdit && $relationshipData['relationship_type'] == 4 ? 'selected' : '' ?>>竞争对手</option>
+                            <option value="5" <?= $isEdit && $relationshipData['relationship_type'] == 5 ? 'selected' : '' ?>>推荐人</option>
+                            <option value="6" <?= $isEdit && $relationshipData['relationship_type'] == 6 ? 'selected' : '' ?>>其他</option>
+                        </select>
+                    </td>
+                </tr>
+                <tr>
+                    <th>关系状态</th>
+                    <td>
+                        <label>
+                            <input type="radio" name="relationship_status" value="1" <?= (!$isEdit || ($isEdit && $relationshipData['relationship_status'] == 1)) ? 'checked' : '' ?>>
+                            启用
+                        </label>
+                        <label>
+                            <input type="radio" name="relationship_status" value="0" <?= ($isEdit && $relationshipData['relationship_status'] == 0) ? 'checked' : '' ?>>
+                            停用
+                        </label>
+                    </td>
+                </tr>
+                <tr>
+                    <th>关系描述</th>
+                    <td>
+                        <textarea name="description" class="txt1" style="width:80%; height:100px;"><?= $isEdit ? htmlspecialchars(textDecode($relationshipData['description'])) : '' ?></textarea>
+                    </td>
+                </tr>
+                <tr>
+                    <th></th>
+                    <td>
+                        <input type="button" name="save" id="save" value="保存" class="btn1" />
+                        <input type="button" value="返回" class="btn1" onClick="location.href='relationships.php'" />
+                    </td>
+                </tr>
+            </tbody>
+        </table>
+    </form>
+</div>
+</body>
+</html> 

+ 187 - 0
relationshipSave.php

@@ -0,0 +1,187 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+
+// 获取操作类型
+$act = $_GET['act'] ?? '';
+
+// 获取表单数据
+$id = isset($_POST['id']) ? intval($_POST['id']) : (isset($_GET['id']) ? intval($_GET['id']) : 0);
+$source_customer_id = isset($_POST['source_customer_id']) ? intval($_POST['source_customer_id']) : 0;
+$target_customer_id = isset($_POST['target_customer_id']) ? intval($_POST['target_customer_id']) : 0;
+$relationship_type = isset($_POST['relationship_type']) ? intval($_POST['relationship_type']) : 0;
+$relationship_status = isset($_POST['relationship_status']) ? intval($_POST['relationship_status']) : 1;
+$description = isset($_POST['description']) ? textEncode($_POST['description']) : '';
+
+// 当前员工ID
+$employee_id = $_SESSION['employee_id'];
+
+// 删除操作
+if ($act == 'delete' && $id > 0) {
+    // 验证关系记录是否存在
+    $checkQuery = "SELECT * FROM customer_relationship WHERE id = $id";
+    $result = $conn->query($checkQuery);
+    
+    if ($result->num_rows == 0) {
+        echo "<script>alert('未找到指定的客户关系记录!'); window.location.href='relationships.php';</script>";
+        exit;
+    }
+    
+    // 记录删除操作到日志
+    $row = $result->fetch_assoc();
+    $source_company_query = "SELECT cs_company FROM customer WHERE id = ".$row['source_customer_id'];
+    $target_company_query = "SELECT cs_company FROM customer WHERE id = ".$row['target_customer_id'];
+    
+    $source_result = $conn->query($source_company_query);
+    $source_company = '';
+    if ($source_row = $source_result->fetch_assoc()) {
+        $source_company = textDecode($source_row['cs_company']);
+    }
+    
+    $target_result = $conn->query($target_company_query);
+    $target_company = '';
+    if ($target_row = $target_result->fetch_assoc()) {
+        $target_company = textDecode($target_row['cs_company']);
+    }
+    
+    $log_message = $_SESSION['employee_name'] . " 删除了客户关系记录:" . 
+                   $source_company . " 和 " . $target_company . " 之间的关系";
+    
+    $logQuery = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('".
+                mysqli_real_escape_string($conn, $_SESSION['employee_name'])."', '".
+                mysqli_real_escape_string($conn, getIp())."', NOW(), '".
+                mysqli_real_escape_string($conn, $log_message)."')";
+    $conn->query($logQuery);
+    
+    // 执行删除操作
+    $deleteQuery = "DELETE FROM customer_relationship WHERE id = $id";
+    $conn->query($deleteQuery);
+    
+    echo "<script>alert('客户关系记录已成功删除!'); window.location.href='relationships.php';</script>";
+    exit;
+}
+
+// 表单数据验证
+if ($_SERVER['REQUEST_METHOD'] == 'POST') {
+    // 验证源客户和目标客户
+    if ($source_customer_id <= 0 || $target_customer_id <= 0) {
+        echo "<script>alert('请选择有效的源客户和目标客户!'); history.back();</script>";
+        exit;
+    }
+    
+    if ($source_customer_id == $target_customer_id) {
+        echo "<script>alert('源客户和目标客户不能是同一个客户!'); history.back();</script>";
+        exit;
+    }
+    
+    // 验证关系类型
+    if ($relationship_type <= 0 || $relationship_type > 6) {
+        echo "<script>alert('请选择有效的关系类型!'); history.back();</script>";
+        exit;
+    }
+    
+    // 检查相同的关系是否已存在
+    $checkDuplicateQuery = "SELECT * FROM customer_relationship 
+                           WHERE source_customer_id = $source_customer_id 
+                           AND target_customer_id = $target_customer_id 
+                           AND relationship_type = $relationship_type";
+    
+    if ($id > 0) {
+        $checkDuplicateQuery .= " AND id != $id";
+    }
+    
+    $result = $conn->query($checkDuplicateQuery);
+    
+    if ($result->num_rows > 0) {
+        echo "<script>alert('相同的客户关系记录已存在!'); history.back();</script>";
+        exit;
+    }
+    
+    // 根据是否有ID决定是更新还是新增
+    if ($id > 0) {
+        // 更新操作
+        $updateQuery = "UPDATE customer_relationship SET 
+                        source_customer_id = $source_customer_id,
+                        target_customer_id = $target_customer_id,
+                        relationship_type = $relationship_type,
+                        relationship_status = $relationship_status,
+                        description = '$description',
+                        updated_by = $employee_id,
+                        updated_at = NOW()
+                        WHERE id = $id";
+        
+        if ($conn->query($updateQuery)) {
+            // 获取源客户和目标客户名称
+            $source_company_query = "SELECT cs_company FROM customer WHERE id = $source_customer_id";
+            $target_company_query = "SELECT cs_company FROM customer WHERE id = $target_customer_id";
+            
+            $source_result = $conn->query($source_company_query);
+            $source_company = '';
+            if ($source_row = $source_result->fetch_assoc()) {
+                $source_company = textDecode($source_row['cs_company']);
+            }
+            
+            $target_result = $conn->query($target_company_query);
+            $target_company = '';
+            if ($target_row = $target_result->fetch_assoc()) {
+                $target_company = textDecode($target_row['cs_company']);
+            }
+            
+            // 记录日志
+            $log_message = $_SESSION['employee_name'] . " 更新了客户关系记录:" . 
+                          $source_company . " 和 " . $target_company . " 之间的关系";
+            
+            $logQuery = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('".
+                       mysqli_real_escape_string($conn, $_SESSION['employee_name'])."', '".
+                       mysqli_real_escape_string($conn, getIp())."', NOW(), '".
+                       mysqli_real_escape_string($conn, $log_message)."')";
+            $conn->query($logQuery);
+            
+            echo "<script>alert('客户关系记录已成功更新!'); window.location.href='relationships.php';</script>";
+        } else {
+            echo "<script>alert('更新客户关系记录失败:" . $conn->error . "'); history.back();</script>";
+        }
+    } else {
+        // 新增操作
+        $insertQuery = "INSERT INTO customer_relationship 
+                        (source_customer_id, target_customer_id, relationship_type, relationship_status, 
+                         description, employee_id, updated_by, created_at, updated_at)
+                        VALUES ($source_customer_id, $target_customer_id, $relationship_type, $relationship_status, 
+                         '$description', $employee_id, $employee_id, NOW(), NOW())";
+        
+        if ($conn->query($insertQuery)) {
+            // 获取源客户和目标客户名称
+            $source_company_query = "SELECT cs_company FROM customer WHERE id = $source_customer_id";
+            $target_company_query = "SELECT cs_company FROM customer WHERE id = $target_customer_id";
+            
+            $source_result = $conn->query($source_company_query);
+            $source_company = '';
+            if ($source_row = $source_result->fetch_assoc()) {
+                $source_company = textDecode($source_row['cs_company']);
+            }
+            
+            $target_result = $conn->query($target_company_query);
+            $target_company = '';
+            if ($target_row = $target_result->fetch_assoc()) {
+                $target_company = textDecode($target_row['cs_company']);
+            }
+            
+            // 记录日志
+            $log_message = $_SESSION['employee_name'] . " 新增了客户关系记录:" . 
+                          $source_company . " 和 " . $target_company . " 之间的关系";
+            
+            $logQuery = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('".
+                       mysqli_real_escape_string($conn, $_SESSION['employee_name'])."', '".
+                       mysqli_real_escape_string($conn, getIp())."', NOW(), '".
+                       mysqli_real_escape_string($conn, $log_message)."')";
+            $conn->query($logQuery);
+            
+            echo "<script>alert('客户关系记录已成功添加!'); window.location.href='relationships.php';</script>";
+        } else {
+            echo "<script>alert('添加客户关系记录失败:" . $conn->error . "'); history.back();</script>";
+        }
+    }
+} else {
+    echo "<script>alert('无效的请求!'); window.location.href='relationships.php';</script>";
+}
+?> 

+ 197 - 0
relationships.php

@@ -0,0 +1,197 @@
+<?php
+require_once 'conn.php';
+checkLogin();
+?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>客户关系管理</title>
+    <link rel="stylesheet" href="css/common.css" type="text/css" />
+    <script src="js/jquery-1.7.2.min.js"></script>
+    <script src="js/js.js"></script>
+</head>
+<body class="clear">
+
+<div id="man_zone">
+    <form action="" method="get" id="searchForm">
+        <table width="100%" cellpadding="3" cellspacing="1" class="table1">
+            <tr>
+                <td>
+                    <input type="text" name="Keys" size="30" placeholder="关键词搜索" value="<?= htmlspecialchars($_GET['Keys'] ?? '') ?>" />
+                    <select name="FliterRelationType">
+                        <option value="">所有关系类型</option>
+                        <option value="1" <?= ($_GET['FliterRelationType'] ?? '') == '1' ? 'selected' : '' ?>>母公司-子公司</option>
+                        <option value="2" <?= ($_GET['FliterRelationType'] ?? '') == '2' ? 'selected' : '' ?>>供应商-客户</option>
+                        <option value="3" <?= ($_GET['FliterRelationType'] ?? '') == '3' ? 'selected' : '' ?>>合作伙伴</option>
+                        <option value="4" <?= ($_GET['FliterRelationType'] ?? '') == '4' ? 'selected' : '' ?>>竞争对手</option>
+                        <option value="5" <?= ($_GET['FliterRelationType'] ?? '') == '5' ? 'selected' : '' ?>>推荐人</option>
+                        <option value="6" <?= ($_GET['FliterRelationType'] ?? '') == '6' ? 'selected' : '' ?>>其他</option>
+                    </select>
+                    <select name="FliterStatus">
+                        <option value="">全部状态</option>
+                        <option value="1" <?= ($_GET['FliterStatus'] ?? '') == '1' ? 'selected' : '' ?>>启用</option>
+                        <option value="0" <?= ($_GET['FliterStatus'] ?? '') == '0' ? 'selected' : '' ?>>停用</option>
+                    </select>
+                    <input type="submit" value="搜索" class="btn1" />
+                    <input type="button" value="新增客户关系" class="btn1" onclick="window.location.href='relationshipAdd.php'" />
+                </td>
+            </tr>
+        </table>
+    </form>
+    
+    <table width="100%" cellpadding="3" cellspacing="1" class="table1">
+        <tr>
+            <th>源客户</th>
+            <th>目标客户</th>
+            <th>关系类型</th>
+            <th>状态</th>
+            <th>创建人</th>
+            <th>创建时间</th>
+            <th>更新时间</th>
+            <th>操作</th>
+        </tr>
+        <?php
+        // 构建查询条件
+        $whereClause = "WHERE 1=1";
+        $params = [];
+        
+        if (!empty($_GET['Keys'])) {
+            $keys = '%' . $_GET['Keys'] . '%';
+            $whereClause .= " AND (c1.cs_company LIKE ? OR c2.cs_company LIKE ? OR cr.description LIKE ?)";
+            $params[] = $keys;
+            $params[] = $keys;
+            $params[] = $keys;
+        }
+        
+        if (!empty($_GET['FliterRelationType'])) {
+            $whereClause .= " AND cr.relationship_type = ?";
+            $params[] = $_GET['FliterRelationType'];
+        }
+        
+        if (isset($_GET['FliterStatus']) && $_GET['FliterStatus'] !== '') {
+            $whereClause .= " AND cr.relationship_status = ?";
+            $params[] = $_GET['FliterStatus'];
+        }
+        
+        // 分页设置
+        $page = isset($_GET['Page']) ? intval($_GET['Page']) : 1;
+        $perpage = 20; // 每页显示条数
+        $start = ($page - 1) * $perpage;
+        
+        // 计算总记录数
+        $countQuery = "SELECT COUNT(*) as total 
+                       FROM customer_relationship cr
+                       JOIN customer c1 ON cr.source_customer_id = c1.id
+                       JOIN customer c2 ON cr.target_customer_id = c2.id
+                       $whereClause";
+        
+        $stmt = $conn->prepare($countQuery);
+        if (!empty($params)) {
+            $types = str_repeat('s', count($params));
+            $stmt->bind_param($types, ...$params);
+        }
+        $stmt->execute();
+        $result = $stmt->get_result();
+        $row = $result->fetch_assoc();
+        $totalRecords = $row['total'];
+        $totalPages = ceil($totalRecords / $perpage);
+        
+        // 获取关系列表
+        $query = "SELECT cr.*, 
+                  c1.cs_company as source_company, 
+                  c2.cs_company as target_company,
+                  e.em_user as creator
+                  FROM customer_relationship cr
+                  JOIN customer c1 ON cr.source_customer_id = c1.id
+                  JOIN customer c2 ON cr.target_customer_id = c2.id
+                  LEFT JOIN employee e ON cr.employee_id = e.id
+                  $whereClause
+                  ORDER BY cr.updated_at DESC
+                  LIMIT ?, ?";
+        
+        $stmt = $conn->prepare($query);
+        if (!empty($params)) {
+            $params[] = $start;
+            $params[] = $perpage;
+            $types = str_repeat('s', count($params) - 2) . 'ii';
+            $stmt->bind_param($types, ...$params);
+        } else {
+            $stmt->bind_param('ii', $start, $perpage);
+        }
+        
+        $stmt->execute();
+        $result = $stmt->get_result();
+        
+        if ($result->num_rows > 0) {
+            while ($row = $result->fetch_assoc()) {
+                // 获取关系类型描述
+                $relationType = '';
+                switch ($row['relationship_type']) {
+                    case 1: $relationType = '母公司-子公司'; break;
+                    case 2: $relationType = '供应商-客户'; break;
+                    case 3: $relationType = '合作伙伴'; break;
+                    case 4: $relationType = '竞争对手'; break;
+                    case 5: $relationType = '推荐人'; break;
+                    case 6: $relationType = '其他'; break;
+                }
+                
+                $status = $row['relationship_status'] == 1 ? '<span style="color:green">启用</span>' : '<span style="color:red">停用</span>';
+                
+                echo '<tr>';
+                echo '<td>' . textDecode($row['source_company']) . '</td>';
+                echo '<td>' . textDecode($row['target_company']) . '</td>';
+                echo '<td>' . $relationType . '</td>';
+                echo '<td>' . $status . '</td>';
+                echo '<td>' . textDecode($row['creator']) . '</td>';
+                echo '<td>' . $row['created_at'] . '</td>';
+                echo '<td>' . $row['updated_at'] . '</td>';
+                echo '<td>
+                      <a href="relationshipAdd.php?id=' . $row['id'] . '">编辑</a> | 
+                      <a href="javascript:void(0)" onclick="if(confirm(\'确定要删除此关系记录吗?\')) window.location.href=\'relationshipSave.php?act=delete&id=' . $row['id'] . '\'">删除</a>
+                      </td>';
+                echo '</tr>';
+            }
+        } else {
+            echo '<tr><td colspan="8" style="text-align:center">没有找到客户关系记录</td></tr>';
+        }
+        ?>
+    </table>
+    
+    <!-- 分页 -->
+    <div class="pages">
+        <?php
+        // 构建分页链接的基础URL
+        $baseUrl = 'relationships.php?';
+        if (!empty($_GET['Keys'])) $baseUrl .= 'Keys=' . urlencode($_GET['Keys']) . '&';
+        if (!empty($_GET['FliterRelationType'])) $baseUrl .= 'FliterRelationType=' . $_GET['FliterRelationType'] . '&';
+        if (isset($_GET['FliterStatus']) && $_GET['FliterStatus'] !== '') $baseUrl .= 'FliterStatus=' . $_GET['FliterStatus'] . '&';
+        
+        if ($page > 1) {
+            echo '<a href="' . $baseUrl . 'Page=1">首页</a>';
+            echo '<a href="' . $baseUrl . 'Page=' . ($page - 1) . '">上一页</a>';
+        }
+        
+        // 显示5个页码,当前页在中间
+        $startPage = max(1, $page - 2);
+        $endPage = min($totalPages, $page + 2);
+        
+        for ($i = $startPage; $i <= $endPage; $i++) {
+            if ($i == $page) {
+                echo '<span class="current">' . $i . '</span>';
+            } else {
+                echo '<a href="' . $baseUrl . 'Page=' . $i . '">' . $i . '</a>';
+            }
+        }
+        
+        if ($page < $totalPages) {
+            echo '<a href="' . $baseUrl . 'Page=' . ($page + 1) . '">下一页</a>';
+            echo '<a href="' . $baseUrl . 'Page=' . $totalPages . '">末页</a>';
+        }
+        
+        echo '<span class="pagestatus">第' . $page . '页/共' . $totalPages . '页</span>';
+        ?>
+    </div>
+</div>
+</body>
+</html>