relationships.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $keys = $_GET['Keys'] ?? '';
  5. $fliterRelationType = $_GET['FliterRelationType'] ?? '';
  6. $fliterStatus = $_GET['FliterStatus'] ?? '';
  7. $page = $_GET['Page'] ?? 1;
  8. $urlStr = '';
  9. if (!empty($fliterRelationType)) {
  10. $urlStr .= "&FliterRelationType=" . urlencode($fliterRelationType);
  11. }
  12. if (isset($fliterStatus) && $fliterStatus !== '') {
  13. $urlStr .= "&FliterStatus=" . urlencode($fliterStatus);
  14. }
  15. ?>
  16. <!DOCTYPE html>
  17. <html xmlns="http://www.w3.org/1999/xhtml">
  18. <head>
  19. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  20. <title>客户关系管理</title>
  21. <link rel="stylesheet" href="css/common.css" type="text/css" />
  22. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  23. <script src="js/jquery-1.7.2.min.js"></script>
  24. <script src="js/js.js"></script>
  25. <style>
  26. body {
  27. margin: 0;
  28. padding: 20px;
  29. background: #fff;
  30. }
  31. #man_zone {
  32. margin-left: 0;
  33. }
  34. /* 表格布局 */
  35. .table2 {
  36. width: 100%;
  37. }
  38. .theader, .tline {
  39. display: flex;
  40. flex-direction: row;
  41. align-items: center;
  42. width: 100%;
  43. border-bottom: 1px solid #ddd;
  44. }
  45. .theader {
  46. background-color: #f2f2f2;
  47. font-weight: bold;
  48. height: 40px;
  49. }
  50. .tline {
  51. height: 45px;
  52. }
  53. .tline:hover {
  54. background-color: #f5f5f5;
  55. }
  56. /* 列宽定义 */
  57. .col2 { width: 5%; text-align: center; }
  58. .col3 { width: 20%; }
  59. .col4 { width: 20%; }
  60. .col5 { width: 10%; }
  61. .col6 { width: 8%; text-align: center; }
  62. .col7 { width: 8%; }
  63. .col8 { width: 14%; }
  64. .col9 { width: 15%; text-align: center; }
  65. /* 表格布局修复 */
  66. .table2 .col2 { width: 5%; text-align: center; }
  67. .table2 .col3 { width: 20%; }
  68. .table2 .col4 { width: 20%; }
  69. .table2 .col5 { width: 10%; }
  70. .table2 .col6 { width: 8%; text-align: center; }
  71. .table2 .col7 { width: 8%; }
  72. .table2 .col8 { width: 14%; }
  73. .table2 .col9 { width: 15%; text-align: center; }
  74. .theader > div, .tline > div {
  75. padding: 0 5px;
  76. overflow: hidden;
  77. text-overflow: ellipsis;
  78. white-space: nowrap;
  79. }
  80. /* 搜索栏样式 */
  81. .fastSelect {
  82. margin-bottom: 20px;
  83. background-color: #f9f9f9;
  84. padding: 15px;
  85. border-radius: 3px;
  86. border: 1px solid #eee;
  87. }
  88. .fastSelect H1 {
  89. font-size: 16px;
  90. margin-top: 0;
  91. margin-bottom: 10px;
  92. color: #333;
  93. }
  94. .selectItem {
  95. margin-bottom: 10px;
  96. display: flex;
  97. align-items: center;
  98. gap: 10px;
  99. }
  100. .selectItem label {
  101. font-weight: bold;
  102. font-size: 13px;
  103. color: #555;
  104. }
  105. .inputSearch {
  106. display: flex;
  107. align-items: center;
  108. margin-top: 0px;
  109. }
  110. .inputSearch .inputTxt {
  111. padding:1px 5px;
  112. border: 1px solid #ccc;
  113. width: 300px;
  114. height: 30px;
  115. }
  116. .searchgo {
  117. margin-left: 5px;
  118. padding: 0 15px;
  119. background: #337ab7;
  120. color: white;
  121. border: none;
  122. border-radius: 3px;
  123. cursor: pointer;
  124. height: 32px;
  125. line-height: 32px;
  126. }
  127. /* 按钮容器 */
  128. .search-button-container {
  129. display: flex;
  130. align-items: flex-end;
  131. }
  132. /* 状态颜色 */
  133. .status-active {
  134. color: green;
  135. }
  136. .status-inactive {
  137. color: red;
  138. }
  139. /* 按钮样式 */
  140. .ico {
  141. margin: 0 5px;
  142. text-decoration: none;
  143. }
  144. .ico_edit {
  145. color: #3498db;
  146. }
  147. .ico_del {
  148. color: #e74c3c;
  149. }
  150. .ico:hover {
  151. text-decoration: underline;
  152. }
  153. /* 详情样式 */
  154. .detail-row {
  155. display: none;
  156. background-color: #f8f8f8;
  157. border-bottom: 1px solid #ddd;
  158. padding: 15px;
  159. }
  160. .detail-container {
  161. display: flex;
  162. flex-wrap: wrap;
  163. }
  164. .detail-item {
  165. width: 33%;
  166. margin-bottom: 10px;
  167. }
  168. .detail-item label {
  169. font-weight: bold;
  170. display: block;
  171. margin-bottom: 3px;
  172. color: #555;
  173. }
  174. .detail-item-full {
  175. width: 100%;
  176. margin-bottom: 10px;
  177. }
  178. .detail-content {
  179. margin-top: 5px;
  180. }
  181. .clickable-row {
  182. cursor: pointer;
  183. }
  184. </style>
  185. </head>
  186. <body>
  187. <div id="man_zone">
  188. <div class="fastSelect clear">
  189. <H1>筛选条件</H1>
  190. <div class="selectItem">
  191. <label>关系类型</label>
  192. <select name="FliterRelationType" class="filterSearch">
  193. <option value="">所有关系类型</option>
  194. <option value="1" <?= $fliterRelationType == '1' ? 'selected' : '' ?>>母公司-子公司</option>
  195. <option value="2" <?= $fliterRelationType == '2' ? 'selected' : '' ?>>供应商-客户</option>
  196. <option value="3" <?= $fliterRelationType == '3' ? 'selected' : '' ?>>合作伙伴</option>
  197. <option value="4" <?= $fliterRelationType == '4' ? 'selected' : '' ?>>竞争对手</option>
  198. <option value="5" <?= $fliterRelationType == '5' ? 'selected' : '' ?>>推荐人</option>
  199. <option value="6" <?= $fliterRelationType == '6' ? 'selected' : '' ?>>其他</option>
  200. </select>
  201. </div>
  202. <div class="selectItem">
  203. <label>状态</label>
  204. <select name="FliterStatus" class="filterSearch">
  205. <option value="">全部状态</option>
  206. <option value="1" <?= $fliterStatus == '1' ? 'selected' : '' ?>>启用</option>
  207. <option value="0" <?= $fliterStatus == '0' ? 'selected' : '' ?>>停用</option>
  208. </select>
  209. </div>
  210. <div class="inputSearch">
  211. <input type="text" id="keys" class="inputTxt" placeholder="请输入搜索关键词"
  212. value="<?= empty($keys) ? '' : htmlspecialchars($keys) ?>" />
  213. <input type="button" id="searchgo" class="searchgo" value="搜索"
  214. onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
  215. </div>
  216. </div>
  217. <div align="right" style="margin-bottom: 10px;">
  218. <input type="button" value="新增客户关系" class="btn1" onClick="location.href='relationshipAdd.php'" />
  219. </div>
  220. <div class="table2">
  221. <div class="theader">
  222. <div class="col2">序号</div>
  223. <div class="col3">源客户</div>
  224. <div class="col4">目标客户</div>
  225. <div class="col5">关系类型</div>
  226. <div class="col6">状态</div>
  227. <div class="col7">创建人</div>
  228. <div class="col8">更新时间</div>
  229. <div class="col9">操作</div>
  230. </div>
  231. <?php
  232. // 构建查询条件
  233. $whereClause = "WHERE 1=1";
  234. $params = [];
  235. // 检查是否为管理员,非管理员只能查看自己创建的关系
  236. $isAdmin = checkIfAdmin();
  237. if (!$isAdmin) {
  238. $whereClause .= " AND cr.employee_id = " . $_SESSION['employee_id'];
  239. }
  240. if (!empty($keys)) {
  241. $searchKeys = '%' . $conn->real_escape_string($keys) . '%';
  242. $whereClause .= " AND (c1.cs_code LIKE '$searchKeys' OR c1.cs_company LIKE '$searchKeys' OR c2.cs_code LIKE '$searchKeys' OR c2.cs_company LIKE '$searchKeys' OR cr.description LIKE '$searchKeys')";
  243. }
  244. if (!empty($fliterRelationType)) {
  245. $whereClause .= " AND cr.relationship_type = '" . $conn->real_escape_string($fliterRelationType) . "'";
  246. }
  247. if (isset($fliterStatus) && $fliterStatus !== '') {
  248. $whereClause .= " AND cr.relationship_status = '" . $conn->real_escape_string($fliterStatus) . "'";
  249. }
  250. // 分页设置
  251. $page = (int)$page;
  252. $perpage = 20; // 每页显示条数
  253. $start = ($page - 1) * $perpage;
  254. // 计算总记录数
  255. $countQuery = "SELECT COUNT(*) as total
  256. FROM customer_relationship cr
  257. JOIN customer c1 ON cr.source_customer_id = c1.id
  258. JOIN customer c2 ON cr.target_customer_id = c2.id
  259. $whereClause";
  260. $result = $conn->query($countQuery);
  261. $row = $result->fetch_assoc();
  262. $totalRecords = $row['total'];
  263. $totalPages = ceil($totalRecords / $perpage);
  264. if ($totalPages < 1) $totalPages = 1;
  265. // 验证当前页码
  266. if ($page < 1) $page = 1;
  267. if ($page > $totalPages) $page = $totalPages;
  268. // 获取关系列表
  269. $query = "SELECT cr.*,
  270. c1.cs_code as source_code,
  271. c1.cs_company as source_company,
  272. c2.cs_code as target_code,
  273. c2.cs_company as target_company,
  274. e.em_user as creator
  275. FROM customer_relationship cr
  276. JOIN customer c1 ON cr.source_customer_id = c1.id
  277. JOIN customer c2 ON cr.target_customer_id = c2.id
  278. LEFT JOIN employee e ON cr.employee_id = e.id
  279. $whereClause
  280. ORDER BY cr.updated_at DESC
  281. LIMIT $start, $perpage";
  282. $result = $conn->query($query);
  283. if ($result->num_rows > 0) {
  284. $tempNum = ($page - 1) * $perpage;
  285. while ($row = $result->fetch_assoc()) {
  286. $tempNum++;
  287. // 获取关系类型描述
  288. $relationType = '';
  289. switch ($row['relationship_type']) {
  290. case 1: $relationType = '母公司-子公司'; break;
  291. case 2: $relationType = '供应商-客户'; break;
  292. case 3: $relationType = '合作伙伴'; break;
  293. case 4: $relationType = '竞争对手'; break;
  294. case 5: $relationType = '推荐人'; break;
  295. case 6: $relationType = '其他'; break;
  296. }
  297. $status = $row['relationship_status'] == 1 ?
  298. '<span class="status-active">启用</span>' :
  299. '<span class="status-inactive">停用</span>';
  300. ?>
  301. <div class="tline clickable-row" data-id="<?= $row['id'] ?>">
  302. <div class="col2"><?= $tempNum ?></div>
  303. <div class="col3"><?= htmlspecialcharsFix($row['source_code'].' - '.$row['source_company']) ?></div>
  304. <div class="col4"><?= htmlspecialcharsFix($row['target_code'].' - '.$row['target_company']) ?></div>
  305. <div class="col5"><?= $relationType ?></div>
  306. <div class="col6"><?= $status ?></div>
  307. <div class="col7"><?= htmlspecialcharsFix($row['creator']) ?></div>
  308. <div class="col8"><?= $row['updated_at'] ?></div>
  309. <div class="col9">
  310. <a href="relationshipAdd.php?id=<?= $row['id'] ?>" class="ico_edit ico">编辑</a>
  311. <a href="javascript:void(0)" onclick="confirmDelete(<?= $row['id'] ?>); event.stopPropagation();" class="ico_del ico">删除</a>
  312. </div>
  313. </div>
  314. <div id="detail-<?= $row['id'] ?>" class="detail-row">
  315. <div class="detail-container">
  316. <div class="detail-item">
  317. <label>源客户</label>
  318. <div><?= htmlspecialcharsFix($row['source_code'].' - '.$row['source_company']) ?></div>
  319. </div>
  320. <div class="detail-item">
  321. <label>目标客户</label>
  322. <div><?= htmlspecialcharsFix($row['target_code'].' - '.$row['target_company']) ?></div>
  323. </div>
  324. <div class="detail-item">
  325. <label>关系类型</label>
  326. <div><?= $relationType ?></div>
  327. </div>
  328. <div class="detail-item">
  329. <label>状态</label>
  330. <div><?= $row['relationship_status'] == 1 ? '启用' : '停用' ?></div>
  331. </div>
  332. <div class="detail-item">
  333. <label>创建人</label>
  334. <div><?= htmlspecialcharsFix($row['creator']) ?></div>
  335. </div>
  336. <div class="detail-item">
  337. <label>创建时间</label>
  338. <div><?= $row['created_at'] ?></div>
  339. </div>
  340. <div class="detail-item">
  341. <label>更新时间</label>
  342. <div><?= $row['updated_at'] ?></div>
  343. </div>
  344. <div class="detail-item-full">
  345. <label>关系描述</label>
  346. <div><?= nl2br(htmlspecialcharsFix($row['description'] ?? '无')) ?></div>
  347. </div>
  348. </div>
  349. </div>
  350. <?php
  351. }
  352. } else {
  353. if (empty($keys) && empty($fliterRelationType) && $fliterStatus === '') {
  354. echo '<div class="tline"><div style="text-align:center; width:100%;">当前暂无客户关系记录</div></div>';
  355. } else {
  356. echo '<div class="tline"><div style="text-align:center; width:100%;"><a href="?">没有找到匹配的客户关系记录,点击返回</a></div></div>';
  357. }
  358. }
  359. ?>
  360. <div class="showpagebox">
  361. <?php
  362. if ($totalPages > 1) {
  363. $pageName = "?Keys=$keys$urlStr&";
  364. $pageLen = 3;
  365. if ($page > 1) {
  366. echo "<a href=\"{$pageName}Page=1\">首页</a>";
  367. echo "<a href=\"{$pageName}Page=" . ($page - 1) . "\">上一页</a>";
  368. }
  369. if ($pageLen * 2 + 1 >= $totalPages) {
  370. $startPage = 1;
  371. $endPage = $totalPages;
  372. } else {
  373. if ($page <= $pageLen + 1) {
  374. $startPage = 1;
  375. $endPage = $pageLen * 2 + 1;
  376. } else {
  377. $startPage = $page - $pageLen;
  378. $endPage = $page + $pageLen;
  379. }
  380. if ($page + $pageLen > $totalPages) {
  381. $startPage = $totalPages - $pageLen * 2;
  382. $endPage = $totalPages;
  383. }
  384. }
  385. for ($i = $startPage; $i <= $endPage; $i++) {
  386. if ($i == $page) {
  387. echo "<a class=\"current\">$i</a>";
  388. } else {
  389. echo "<a href=\"{$pageName}Page=$i\">$i</a>";
  390. }
  391. }
  392. if ($page < $totalPages) {
  393. if ($totalPages - $page > $pageLen) {
  394. echo "<a href=\"{$pageName}Page=$totalPages\">...$totalPages</a>";
  395. }
  396. echo "<a href=\"{$pageName}Page=" . ($page + 1) . "\">下一页</a>";
  397. echo "<a href=\"{$pageName}Page=$totalPages\">尾页</a>";
  398. }
  399. }
  400. ?>
  401. </div>
  402. </div>
  403. <script>
  404. $(document).ready(function() {
  405. // 处理筛选条件改变
  406. $('.filterSearch').change(function() {
  407. var url = '?';
  408. var keys = $('#keys').val();
  409. if (keys && keys != '请输入搜索关键词') {
  410. url += 'Keys=' + encodeURIComponent(keys) + '&';
  411. }
  412. // 获取所有筛选条件
  413. $('select.filterSearch').each(function() {
  414. var name = $(this).attr('name');
  415. var value = $(this).val();
  416. if (value) {
  417. url += name + '=' + encodeURIComponent(value) + '&';
  418. }
  419. });
  420. // 移除末尾的&
  421. if (url.endsWith('&')) {
  422. url = url.substring(0, url.length - 1);
  423. }
  424. location.href = url;
  425. });
  426. // 点击行显示详情
  427. $('.clickable-row').click(function() {
  428. var id = $(this).data('id');
  429. $('#detail-' + id).slideToggle();
  430. });
  431. });
  432. function confirmDelete(id) {
  433. if (confirm("确定要删除此关系记录吗?此操作不可恢复!")) {
  434. window.location.href = "relationshipSave.php?act=delete&id=" + id + "&keys=<?= urlencode($keys) ?>&page=<?= $page ?>";
  435. }
  436. }
  437. </script>
  438. </div>
  439. </body>
  440. </html>