relationshipAdd.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. // 检查是否为编辑模式
  5. $isEdit = false;
  6. $relationshipData = null;
  7. if (isset($_GET['id']) && is_numeric($_GET['id'])) {
  8. $id = intval($_GET['id']);
  9. $query = "SELECT * FROM customer_relationship WHERE id = ?";
  10. $stmt = $conn->prepare($query);
  11. $stmt->bind_param('i', $id);
  12. $stmt->execute();
  13. $result = $stmt->get_result();
  14. if ($result->num_rows > 0) {
  15. $relationshipData = $result->fetch_assoc();
  16. $isEdit = true;
  17. // 检查权限:如果不是管理员,只能编辑自己创建的关系
  18. $isAdmin = checkIfAdmin();
  19. if (!$isAdmin && $relationshipData['employee_id'] != $_SESSION['employee_id']) {
  20. echo "<script>alert('您没有权限编辑此客户关系记录!'); window.location.href='relationships.php';</script>";
  21. exit;
  22. }
  23. } else {
  24. echo "<script>alert('未找到指定的客户关系记录!'); window.location.href='relationships.php';</script>";
  25. exit;
  26. }
  27. }
  28. ?>
  29. <!DOCTYPE html>
  30. <html xmlns="http://www.w3.org/1999/xhtml">
  31. <head>
  32. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  33. <title><?= $isEdit ? '编辑' : '新增' ?>客户关系</title>
  34. <link rel="stylesheet" href="css/common.css" type="text/css" />
  35. <script src="js/jquery-1.7.2.min.js"></script>
  36. <script src="js/js.js"></script>
  37. <script src="js/ySearchSelect.js"></script>
  38. <style>
  39. body {
  40. margin: a;
  41. padding: 20px;
  42. background: #fff;
  43. }
  44. #man_zone {
  45. margin-left: 0;
  46. }
  47. .relationship-form-container {
  48. margin-bottom: 20px;
  49. }
  50. .customer-search-container {
  51. display: flex;
  52. align-items: center;
  53. margin-bottom: 10px;
  54. position: relative;
  55. width: 60%;
  56. }
  57. .customer-info {
  58. margin-top: 5px;
  59. padding: 5px;
  60. background-color: #f5f5f5;
  61. border: 1px solid #ddd;
  62. border-radius: 3px;
  63. display: none;
  64. }
  65. .customer-dropdown {
  66. display: none;
  67. position: absolute;
  68. background: white;
  69. border: 1px solid #ccc;
  70. max-height: 200px;
  71. overflow-y: auto;
  72. width: 100%;
  73. z-index: 1000;
  74. box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  75. border-radius: 0 0 4px 4px;
  76. top: 100%;
  77. left: 0;
  78. }
  79. .customer-item {
  80. padding: 10px 12px;
  81. cursor: pointer;
  82. border-bottom: 1px solid #eee;
  83. transition: background-color 0.2s;
  84. }
  85. .customer-item:hover {
  86. background-color: #f0f0f0;
  87. }
  88. .customer-item:last-child {
  89. border-bottom: none;
  90. }
  91. .selected-customer-info {
  92. font-weight: bold;
  93. padding: 8px 10px;
  94. border: 1px solid #ddd;
  95. background-color: #f9f9f9;
  96. display: none;
  97. width: 100%;
  98. box-sizing: border-box;
  99. word-break: break-all;
  100. overflow: hidden;
  101. text-overflow: ellipsis;
  102. white-space: normal;
  103. min-height: 38px;
  104. cursor: pointer;
  105. }
  106. .selected-customer-info:hover {
  107. background-color: #f0f0f0;
  108. }
  109. .customer-clear-btn {
  110. margin-left: 5px;
  111. color: #e74c3c;
  112. font-weight: bold;
  113. cursor: pointer;
  114. float: right;
  115. }
  116. .customer-clear-btn:hover {
  117. color: #c0392b;
  118. }
  119. </style>
  120. <script>
  121. $(document).ready(function() {
  122. // 处理表单提交前的验证
  123. $('#save').click(function() {
  124. if (validateForm()) {
  125. $('#form1').submit();
  126. }
  127. });
  128. // 客户搜索功能
  129. var customerSearchTimeouts = {
  130. source: null,
  131. target: null
  132. };
  133. var customerIsComposing = false;
  134. // 监听输入法组合事件
  135. $(document).on('compositionstart', '.customer-search', function() {
  136. customerIsComposing = true;
  137. });
  138. $(document).on('compositionend', '.customer-search', function() {
  139. customerIsComposing = false;
  140. $(this).trigger('input'); // 手动触发一次input事件
  141. });
  142. // 客户搜索输入
  143. $(document).on('input', '.customer-search', function() {
  144. // 如果是输入法正在组合中文,不处理
  145. if (customerIsComposing) return;
  146. var $this = $(this);
  147. var searchType = $this.data('type'); // source 或 target
  148. var searchTerm = $this.val().trim();
  149. var customerDropdown = $('#' + searchType + '_customer_dropdown');
  150. // 清除之前的超时
  151. clearTimeout(customerSearchTimeouts[searchType]);
  152. // 隐藏之前的结果
  153. customerDropdown.hide();
  154. // 清除之前的选择
  155. $('#' + searchType + '_customer_id').val('');
  156. $('#' + searchType + '_customer_selected').hide();
  157. // 如果搜索词少于1个字符,不执行搜索
  158. if (searchTerm.length < 1) {
  159. return;
  160. }
  161. // 设置一个300毫秒的超时,以减少请求数量
  162. customerSearchTimeouts[searchType] = setTimeout(function() {
  163. $.ajax({
  164. url: 'get_customer_search.php',
  165. type: 'GET',
  166. data: {search: searchTerm},
  167. dataType: 'json',
  168. success: function(data) {
  169. customerDropdown.empty();
  170. if (data && data.customers && data.customers.length > 0) {
  171. $.each(data.customers, function(i, customer) {
  172. var displayText = customer.cs_company;
  173. if (customer.cs_code) {
  174. displayText = customer.cs_code + ' - ' + displayText;
  175. }
  176. var item = $('<div class="customer-item"></div>')
  177. .attr('data-id', customer.id)
  178. .attr('data-company', customer.cs_company)
  179. .attr('data-display', displayText)
  180. .text(displayText);
  181. customerDropdown.append(item);
  182. });
  183. customerDropdown.show();
  184. }
  185. },
  186. error: function() {
  187. console.log('搜索客户失败,请重试');
  188. }
  189. });
  190. }, 300);
  191. });
  192. // 点击选择客户
  193. $(document).on('click', '.customer-item', function() {
  194. var $this = $(this);
  195. var customerId = $this.data('id');
  196. var customerName = $this.data('company');
  197. var displayText = $this.data('display');
  198. var parentContainer = $this.parent();
  199. var searchType = parentContainer.attr('id').replace('_customer_dropdown', '');
  200. // 设置选中的客户ID和名称
  201. $('#' + searchType + '_customer_id').val(customerId);
  202. $('#' + searchType + '_customer_search').hide();
  203. $('#' + searchType + '_customer_selected').text(displayText).append('<span class="customer-clear-btn" data-type="' + searchType + '">X</span>').show();
  204. $('#' + searchType + '_customer_company').val(customerName);
  205. // 添加标题属性,便于查看完整信息
  206. $('#' + searchType + '_customer_selected').attr('title', displayText);
  207. // 隐藏下拉菜单
  208. parentContainer.hide();
  209. });
  210. // 点击已选客户可以重新选择
  211. $(document).on('click', '.selected-customer-info', function() {
  212. // 点击整个已选区域不再执行任何操作
  213. });
  214. // 点击X按钮清除选择的客户
  215. $(document).on('click', '.customer-clear-btn', function(e) {
  216. e.stopPropagation();
  217. var searchType = $(this).data('type');
  218. // 显示搜索框,隐藏已选信息
  219. $('#' + searchType + '_customer_search').val('').show();
  220. $('#' + searchType + '_customer_selected').hide();
  221. // 清空客户ID
  222. $('#' + searchType + '_customer_id').val('');
  223. });
  224. // 点击其他地方隐藏下拉列表
  225. $(document).on('click', function(e) {
  226. if (!$(e.target).closest('.customer-search-container').length) {
  227. $('.customer-dropdown').hide();
  228. }
  229. });
  230. // 如果编辑模式下已有选中客户,显示客户信息
  231. <?php if ($isEdit): ?>
  232. $('#source_customer_selected').show();
  233. $('#target_customer_selected').show();
  234. $('#source_customer_search').hide();
  235. $('#target_customer_search').hide();
  236. <?php endif; ?>
  237. });
  238. // 表单验证函数
  239. function validateForm() {
  240. // 验证源客户和目标客户
  241. var sourceCustomerId = $('#source_customer_id').val();
  242. var targetCustomerId = $('#target_customer_id').val();
  243. var relationshipType = $('#relationship_type').val();
  244. if (!sourceCustomerId) {
  245. alert('请选择源客户');
  246. $('#source_customer_search').show().focus();
  247. $('#source_customer_selected').hide();
  248. return false;
  249. }
  250. if (!targetCustomerId) {
  251. alert('请选择目标客户');
  252. $('#target_customer_search').show().focus();
  253. $('#target_customer_selected').hide();
  254. return false;
  255. }
  256. if (sourceCustomerId === targetCustomerId) {
  257. alert('源客户和目标客户不能是同一个客户');
  258. return false;
  259. }
  260. if (!relationshipType) {
  261. alert('请选择关系类型');
  262. $('#relationship_type').focus();
  263. return false;
  264. }
  265. return true;
  266. }
  267. </script>
  268. </head>
  269. <body class="clear">
  270. <?php // require_once 'panel.php'; ?>
  271. <div id="man_zone">
  272. <form name="form1" id="form1" method="post" action="relationshipSave.php">
  273. <?php if ($isEdit): ?>
  274. <input type="hidden" name="id" value="<?= $relationshipData['id'] ?>">
  275. <?php endif; ?>
  276. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  277. <tbody>
  278. <tr>
  279. <th width="15%">源客户</th>
  280. <td>
  281. <div class="customer-search-container">
  282. <input type="text" id="source_customer_search" class="customer-search txt1" data-type="source" placeholder="输入客户编码或名称搜索..." value="" />
  283. <div id="source_customer_selected" class="selected-customer-info" title="<?php
  284. if ($isEdit) {
  285. $sourceCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
  286. $stmt = $conn->prepare($sourceCustQuery);
  287. $stmt->bind_param('i', $relationshipData['source_customer_id']);
  288. $stmt->execute();
  289. $result = $stmt->get_result();
  290. if ($row = $result->fetch_assoc()) {
  291. $displayText = $row['cs_company'];
  292. if ($row['cs_code']) {
  293. $displayText = $row['cs_code'] . ' - ' . $displayText;
  294. }
  295. echo textDecode($displayText);
  296. }
  297. }
  298. ?>"><?php
  299. if ($isEdit) {
  300. $sourceCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
  301. $stmt = $conn->prepare($sourceCustQuery);
  302. $stmt->bind_param('i', $relationshipData['source_customer_id']);
  303. $stmt->execute();
  304. $result = $stmt->get_result();
  305. if ($row = $result->fetch_assoc()) {
  306. $displayText = $row['cs_company'];
  307. if ($row['cs_code']) {
  308. $displayText = $row['cs_code'] . ' - ' . $displayText;
  309. }
  310. echo textDecode($displayText);
  311. }
  312. }
  313. ?><span class="customer-clear-btn" data-type="source">X</span></div>
  314. <div id="source_customer_dropdown" class="customer-dropdown"></div>
  315. </div>
  316. <input type="hidden" id="source_customer_id" name="source_customer_id" value="<?= $isEdit ? $relationshipData['source_customer_id'] : '' ?>" />
  317. <input type="hidden" id="source_customer_company" name="source_customer_company" value="" />
  318. </td>
  319. </tr>
  320. <tr>
  321. <th>目标客户</th>
  322. <td>
  323. <div class="customer-search-container">
  324. <input type="text" id="target_customer_search" class="customer-search txt1" data-type="target" placeholder="输入客户编码或名称搜索..." value="" />
  325. <div id="target_customer_selected" class="selected-customer-info" title="<?php
  326. if ($isEdit) {
  327. $targetCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
  328. $stmt = $conn->prepare($targetCustQuery);
  329. $stmt->bind_param('i', $relationshipData['target_customer_id']);
  330. $stmt->execute();
  331. $result = $stmt->get_result();
  332. if ($row = $result->fetch_assoc()) {
  333. $displayText = $row['cs_company'];
  334. if ($row['cs_code']) {
  335. $displayText = $row['cs_code'] . ' - ' . $displayText;
  336. }
  337. echo textDecode($displayText);
  338. }
  339. }
  340. ?>"><?php
  341. if ($isEdit) {
  342. $targetCustQuery = "SELECT cs_company, cs_code FROM customer WHERE id = ?";
  343. $stmt = $conn->prepare($targetCustQuery);
  344. $stmt->bind_param('i', $relationshipData['target_customer_id']);
  345. $stmt->execute();
  346. $result = $stmt->get_result();
  347. if ($row = $result->fetch_assoc()) {
  348. $displayText = $row['cs_company'];
  349. if ($row['cs_code']) {
  350. $displayText = $row['cs_code'] . ' - ' . $displayText;
  351. }
  352. echo textDecode($displayText);
  353. }
  354. }
  355. ?><span class="customer-clear-btn" data-type="target">X</span></div>
  356. <div id="target_customer_dropdown" class="customer-dropdown"></div>
  357. </div>
  358. <input type="hidden" id="target_customer_id" name="target_customer_id" value="<?= $isEdit ? $relationshipData['target_customer_id'] : '' ?>" />
  359. <input type="hidden" id="target_customer_company" name="target_customer_company" value="" />
  360. </td>
  361. </tr>
  362. <tr>
  363. <th>关系类型</th>
  364. <td>
  365. <select id="relationship_type" name="relationship_type" class="txt1">
  366. <option value="">请选择关系类型</option>
  367. <option value="1" <?= $isEdit && $relationshipData['relationship_type'] == 1 ? 'selected' : '' ?>>母公司-子公司</option>
  368. <option value="2" <?= $isEdit && $relationshipData['relationship_type'] == 2 ? 'selected' : '' ?>>供应商-客户</option>
  369. <option value="3" <?= $isEdit && $relationshipData['relationship_type'] == 3 ? 'selected' : '' ?>>合作伙伴</option>
  370. <option value="4" <?= $isEdit && $relationshipData['relationship_type'] == 4 ? 'selected' : '' ?>>竞争对手</option>
  371. <option value="5" <?= $isEdit && $relationshipData['relationship_type'] == 5 ? 'selected' : '' ?>>推荐人</option>
  372. <option value="6" <?= $isEdit && $relationshipData['relationship_type'] == 6 ? 'selected' : '' ?>>其他</option>
  373. </select>
  374. </td>
  375. </tr>
  376. <tr>
  377. <th>关系状态</th>
  378. <td>
  379. <label>
  380. <input type="radio" name="relationship_status" value="1" <?= (!$isEdit || ($isEdit && $relationshipData['relationship_status'] == 1)) ? 'checked' : '' ?>>
  381. 启用
  382. </label>
  383. <label>
  384. <input type="radio" name="relationship_status" value="0" <?= ($isEdit && $relationshipData['relationship_status'] == 0) ? 'checked' : '' ?>>
  385. 停用
  386. </label>
  387. </td>
  388. </tr>
  389. <tr>
  390. <th>关系描述</th>
  391. <td>
  392. <textarea name="description" class="txt1" style="width:80%; height:100px;"><?= $isEdit ? htmlspecialchars(textDecode($relationshipData['description'])) : '' ?></textarea>
  393. </td>
  394. </tr>
  395. <tr>
  396. <th></th>
  397. <td>
  398. <input type="button" name="save" id="save" value="保存" class="btn1" />
  399. <input type="button" value="返回" class="btn1" onClick="location.href='relationships.php'" />
  400. </td>
  401. </tr>
  402. </tbody>
  403. </table>
  404. </form>
  405. </div>
  406. </body>
  407. </html>