customerEdit.php 62 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. $id = $_GET['id'] ?? '';
  5. $page = $_GET['Page'] ?? '';
  6. $keys = urlencode($_GET['Keys'] ?? '');
  7. $hrefstr = "?keys=$keys&Page=$page";
  8. // Validate and fetch customer data
  9. if (!empty($id) && is_numeric($id)) {
  10. // Fetch customer basic information
  11. $sql = "SELECT c.* FROM customer c WHERE c.cs_belong = ? AND c.id = ?";
  12. $stmt = $conn->prepare($sql);
  13. $stmt->bind_param("ii", $_SESSION['employee_id'], $id);
  14. $stmt->execute();
  15. $result = $stmt->get_result();
  16. if ($row = $result->fetch_assoc()) {
  17. $customer = [
  18. 'cs_company' => textUncode($row['cs_company']),
  19. 'cs_address' => textUncode($row['cs_address']),
  20. 'cs_code' => textUncode($row['cs_code']),
  21. 'cs_deal' => textUncode($row['cs_deal']),
  22. 'cs_addtime' => $row['cs_addtime'],
  23. 'cs_belongclient' => $row['cs_belongclient'],
  24. 'cs_updatetime' => $row['cs_updatetime'],
  25. 'cs_from' => $row['cs_from'],
  26. 'cs_country' => $row['cs_country'],
  27. 'cs_type' => $row['cs_type'],
  28. 'cs_note' => htmlUnCode($row['cs_note']),
  29. 'cs_claimFrom' => $row['cs_claimFrom'],
  30. 'allowedit' => $row['allowedit']
  31. ];
  32. // Fetch all contact records for this customer
  33. $contactSql = "SELECT cc.* FROM customer_contact cc WHERE cc.customer_id = ?";
  34. $contactStmt = $conn->prepare($contactSql);
  35. $contactStmt->bind_param("i", $id);
  36. $contactStmt->execute();
  37. $contactResult = $contactStmt->get_result();
  38. $contacts = [];
  39. while ($contactRow = $contactResult->fetch_assoc()) {
  40. $contact = [
  41. 'id' => $contactRow['id'],
  42. 'contact_name' => textUncode($contactRow['contact_name']),
  43. 'created_at' => $contactRow['created_at'],
  44. 'updated_at' => $contactRow['updated_at']
  45. ];
  46. // Process each contact method type (up to 3 entries each)
  47. $methodTypes = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba'];
  48. foreach ($methodTypes as $type) {
  49. for ($i = 1; $i <= 3; $i++) {
  50. $fieldBase = $type . '_' . $i;
  51. $contact[$fieldBase] = textUncode($contactRow[$fieldBase]);
  52. if ($type == 'tel' || $type == 'whatsapp') {
  53. $contact[$fieldBase . '_format'] = textUncode($contactRow[$fieldBase . '_format']);
  54. }
  55. $contact[$fieldBase . '_bu'] = textUncode($contactRow[$fieldBase . '_bu']);
  56. }
  57. }
  58. $contacts[] = $contact;
  59. }
  60. } else {
  61. echo "<script>alert('客户不存在或你没权限查看!');history.back();</script>";
  62. exit;
  63. }
  64. } else {
  65. echo "<script>alert('客户不存在!');history.back();</script>";
  66. header("Location: $hrefstr");
  67. exit;
  68. }
  69. ?>
  70. <!DOCTYPE html>
  71. <html xmlns="http://www.w3.org/1999/xhtml">
  72. <head>
  73. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  74. <title>管理区域</title>
  75. <link rel="stylesheet" href="css/common.css" type="text/css" />
  76. <script src="system/js/jquery-1.7.2.min.js"></script>
  77. <script src="js/js.js"></script>
  78. <script src="js/xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  79. <script src="js/Hz2Py-szm-min.js"></script>
  80. <script src="js/ySearchSelect.js"></script>
  81. <script>
  82. $(document).ready(function(){
  83. $('.txt2').xheditor({
  84. tools:'simple',
  85. hoverExecDelay:-1
  86. });
  87. // Remove contact
  88. $(document).on('click', '.remove-contact-btn', function() {
  89. var contactForm = $(this).closest('.contact-form');
  90. contactForm.remove();
  91. // Renumber remaining contacts
  92. $('#contacts-container .contact-form').each(function(index) {
  93. $(this).find('h3').text('联系人 #' + (index + 1));
  94. });
  95. });
  96. // Add contact form
  97. $('.add-contact-btn').click(function() {
  98. var contactsContainer = $('#contacts-container');
  99. var contactIndex = contactsContainer.children('.contact-form').length;
  100. var contactForm = `
  101. <div class="contact-form" id="contact-form-${contactIndex}">
  102. <div class="contact-header">
  103. <button type="button" class="remove-contact-btn" data-index="${contactIndex}">删除</button>
  104. <h3>联系人 #${contactIndex + 1}</h3>
  105. </div>
  106. <input type="hidden" name="contact[${contactIndex}][id]" value="">
  107. <div class="contact-method-row">
  108. <span style="width:80px;display:inline-block;font-weight:bold;" class="method-select">联系人姓名</span>
  109. <input type="text" name="contact[${contactIndex}][contact_name]" class="txt1 method-input" style="width:60%;" placeholder="联系人姓名"/>
  110. </div>
  111. <div class="contact-methods-container" id="contact-methods-${contactIndex}">
  112. <!-- Contact methods will be added here -->
  113. </div>
  114. <button type="button" class="add-method-btn" data-contact-index="${contactIndex}">添加联系方式</button>
  115. </div>
  116. `;
  117. contactsContainer.append(contactForm);
  118. });
  119. // Add contact method
  120. $(document).on('click', '.add-method-btn', function() {
  121. var contactIndex = $(this).data('contact-index');
  122. var methodsContainer = $('#contact-methods-' + contactIndex);
  123. // Count existing methods by type
  124. var methodCounts = {};
  125. methodsContainer.find('select.method-select').each(function() {
  126. var type = $(this).val();
  127. if (type) {
  128. methodCounts[type] = (methodCounts[type] || 0) + 1;
  129. }
  130. });
  131. var methodRow = `
  132. <div class="contact-method-row">
  133. <select class="method-select" onchange="updateMethodSelectAndPlaceholder(this)">
  134. <option value="">请选择联系方式</option>
  135. <option value="tel" ${(methodCounts.tel || 0) >= 3 ? 'disabled' : ''}>电话</option>
  136. <option value="wechat" ${(methodCounts.wechat || 0) >= 3 ? 'disabled' : ''}>微信</option>
  137. <option value="whatsapp" ${(methodCounts.whatsapp || 0) >= 3 ? 'disabled' : ''}>WhatsApp</option>
  138. <option value="email" ${(methodCounts.email || 0) >= 3 ? 'disabled' : ''}>邮箱</option>
  139. <option value="linkedin" ${(methodCounts.linkedin || 0) >= 3 ? 'disabled' : ''}>领英</option>
  140. <option value="facebook" ${(methodCounts.facebook || 0) >= 3 ? 'disabled' : ''}>Facebook</option>
  141. <option value="alibaba" ${(methodCounts.alibaba || 0) >= 3 ? 'disabled' : ''}>阿里巴巴</option>
  142. </select>
  143. <input type="text" class="txt1 method-input" style="width:60%;" placeholder="请选择联系方式类型">
  144. <button type="button" class="remove-method-btn">删除</button>
  145. </div>
  146. `;
  147. methodsContainer.append(methodRow);
  148. updateMethodFields(methodsContainer.find('.contact-method-row:last-child'));
  149. });
  150. // Remove contact method
  151. $(document).on('click', '.remove-method-btn', function() {
  152. var methodRow = $(this).closest('.contact-method-row');
  153. var contactIndex = methodRow.closest('.contact-form').attr('id').split('-')[2];
  154. var type = methodRow.find('select.method-select').val();
  155. methodRow.remove();
  156. // Update available options in other selects
  157. updateAvailableMethodTypes(contactIndex);
  158. });
  159. // 客户关系相关JS代码
  160. // 显示添加关系弹窗
  161. $('#add-relationship-btn').click(function() {
  162. $('#relationship-modal-title').text('添加客户关系');
  163. $('#relationship_id').val('');
  164. $('#related_customer_id').val('');
  165. $('#related_customer_search').val('').show();
  166. $('#related_customer_selected').hide();
  167. $('#relationship_type').val('');
  168. $('input[name="relationship_status"][value="1"]').prop('checked', true);
  169. $('#relationship_description').val('');
  170. $('<div class="modal-backdrop"></div>').appendTo('body');
  171. $('#relationship-modal').show();
  172. });
  173. // 关闭弹窗
  174. $('#cancel-relationship-btn').click(function() {
  175. $('#relationship-modal').hide();
  176. $('.modal-backdrop').remove();
  177. });
  178. // 编辑关系
  179. $(document).on('click', '.edit-relationship-btn', function() {
  180. var relationshipId = $(this).data('id');
  181. // AJAX获取关系详情
  182. $.ajax({
  183. url: 'get_relationship.php',
  184. type: 'GET',
  185. data: {id: relationshipId},
  186. dataType: 'json',
  187. success: function(data) {
  188. if (data && data.success) {
  189. var relationship = data.relationship;
  190. $('#relationship_id').val(relationship.id);
  191. // 确定关联的客户(不是当前客户的那一方)
  192. var currentCustomerId = $('#current_customer_id').val();
  193. var relatedCustomerId = relationship.source_customer_id == currentCustomerId
  194. ? relationship.target_customer_id
  195. : relationship.source_customer_id;
  196. var relatedCustomerName = relationship.source_customer_id == currentCustomerId
  197. ? relationship.target_company
  198. : relationship.source_company;
  199. var relatedCustomerCode = relationship.source_customer_id == currentCustomerId
  200. ? relationship.target_code
  201. : relationship.source_code;
  202. var displayText = relatedCustomerName;
  203. if (relatedCustomerCode) {
  204. displayText = relatedCustomerCode + ' - ' + relatedCustomerName;
  205. }
  206. $('#related_customer_id').val(relatedCustomerId);
  207. $('#related_customer_search').hide();
  208. $('#related_customer_selected')
  209. .text(displayText)
  210. .append('<span class="customer-clear-btn" title="清除选择">X</span>')
  211. .show()
  212. .attr('title', displayText);
  213. $('#relationship_type').val(relationship.relationship_type);
  214. $('input[name="relationship_status"][value="' + relationship.relationship_status + '"]').prop('checked', true);
  215. $('#relationship_description').val(relationship.description);
  216. $('#relationship-modal-title').text('编辑客户关系');
  217. $('<div class="modal-backdrop"></div>').appendTo('body');
  218. $('#relationship-modal').show();
  219. } else {
  220. alert('获取关系信息失败');
  221. }
  222. },
  223. error: function() {
  224. alert('获取关系信息失败,请稍后重试');
  225. }
  226. });
  227. });
  228. // 删除关系
  229. $(document).on('click', '.delete-relationship-btn', function() {
  230. if (confirm('确定要删除此客户关系吗?')) {
  231. var relationshipId = $(this).data('id');
  232. $.ajax({
  233. url: 'delete_relationship.php',
  234. type: 'POST',
  235. data: {id: relationshipId},
  236. dataType: 'json',
  237. success: function(data) {
  238. if (data && data.success) {
  239. alert('删除成功');
  240. location.reload();
  241. } else {
  242. alert(data.message || '删除失败');
  243. }
  244. },
  245. error: function() {
  246. alert('操作失败,请稍后重试');
  247. }
  248. });
  249. }
  250. });
  251. // 保存关系
  252. $('#save-relationship-btn').click(function() {
  253. var relationshipId = $('#relationship_id').val();
  254. var currentCustomerId = $('#current_customer_id').val();
  255. var relatedCustomerId = $('#related_customer_id').val();
  256. var relationshipType = $('#relationship_type').val();
  257. var relationshipStatus = $('input[name="relationship_status"]:checked').val();
  258. var description = $('#relationship_description').val();
  259. // 验证
  260. if (!relatedCustomerId) {
  261. alert('请选择关联客户');
  262. return;
  263. }
  264. if (!relationshipType) {
  265. alert('请选择关系类型');
  266. return;
  267. }
  268. var data = {
  269. id: relationshipId,
  270. source_customer_id: currentCustomerId,
  271. target_customer_id: relatedCustomerId,
  272. relationship_type: relationshipType,
  273. relationship_status: relationshipStatus,
  274. description: description
  275. };
  276. $.ajax({
  277. url: 'save_relationship.php',
  278. type: 'POST',
  279. data: data,
  280. dataType: 'json',
  281. success: function(response) {
  282. if (response && response.success) {
  283. alert('保存成功');
  284. $('#relationship-modal').hide();
  285. $('.modal-backdrop').remove();
  286. location.reload();
  287. } else {
  288. alert(response.message || '保存失败');
  289. }
  290. },
  291. error: function() {
  292. alert('操作失败,请稍后重试');
  293. }
  294. });
  295. });
  296. // 客户搜索功能
  297. var customerSearchTimeout = null;
  298. var customerIsComposing = false;
  299. // 监听输入法组合事件
  300. $(document).on('compositionstart', '#related_customer_search', function() {
  301. customerIsComposing = true;
  302. });
  303. $(document).on('compositionend', '#related_customer_search', function() {
  304. customerIsComposing = false;
  305. $(this).trigger('input'); // 手动触发一次input事件
  306. });
  307. // 客户搜索输入
  308. $(document).on('input', '#related_customer_search', function() {
  309. // 如果是输入法正在组合中文,不处理
  310. if (customerIsComposing) return;
  311. var searchTerm = $(this).val().trim();
  312. var customerDropdown = $('#related_customer_dropdown');
  313. var currentCustomerId = $('#current_customer_id').val();
  314. // 清除之前的超时
  315. clearTimeout(customerSearchTimeout);
  316. // 隐藏之前的结果
  317. customerDropdown.hide();
  318. // 清除之前的选择
  319. $('#related_customer_id').val('');
  320. $('#related_customer_selected').hide();
  321. // 如果搜索词少于1个字符,不执行搜索
  322. if (searchTerm.length < 1) {
  323. return;
  324. }
  325. // 设置一个300毫秒的超时,以减少请求数量
  326. customerSearchTimeout = setTimeout(function() {
  327. $.ajax({
  328. url: 'get_customer_search.php',
  329. type: 'GET',
  330. data: {
  331. search: searchTerm,
  332. exclude_id: currentCustomerId // 排除当前客户
  333. },
  334. dataType: 'json',
  335. success: function(data) {
  336. customerDropdown.empty();
  337. if (data && data.customers && data.customers.length > 0) {
  338. $.each(data.customers, function(i, customer) {
  339. var displayText = customer.cs_company;
  340. if (customer.cs_code) {
  341. displayText = customer.cs_code + ' - ' + displayText;
  342. }
  343. var item = $('<div class="customer-item"></div>')
  344. .attr('data-id', customer.id)
  345. .attr('data-display', displayText)
  346. .text(displayText);
  347. customerDropdown.append(item);
  348. });
  349. customerDropdown.show();
  350. }
  351. },
  352. error: function() {
  353. console.log('搜索客户失败,请重试');
  354. }
  355. });
  356. }, 300);
  357. });
  358. // 点击选择客户
  359. $(document).on('click', '.customer-item', function() {
  360. var customerId = $(this).data('id');
  361. var displayText = $(this).data('display');
  362. // 设置选中的客户ID和显示
  363. $('#related_customer_id').val(customerId);
  364. $('#related_customer_search').hide();
  365. $('#related_customer_selected')
  366. .text(displayText)
  367. .append('<span class="customer-clear-btn" title="清除选择">X</span>')
  368. .show()
  369. .attr('title', displayText);
  370. // 隐藏下拉菜单
  371. $('#related_customer_dropdown').hide();
  372. });
  373. // 点击X按钮清除选择的客户
  374. $(document).on('click', '.customer-clear-btn', function(e) {
  375. e.stopPropagation();
  376. // 显示搜索框,隐藏已选信息
  377. $('#related_customer_search').val('').show();
  378. $('#related_customer_selected').hide();
  379. // 清空客户ID
  380. $('#related_customer_id').val('');
  381. });
  382. // 点击其他地方隐藏下拉列表
  383. $(document).on('click', function(e) {
  384. if (!$(e.target).closest('.customer-search-container').length) {
  385. $('.customer-dropdown').hide();
  386. }
  387. });
  388. });
  389. // Update method fields based on selection
  390. function updateMethodFields(methodRow) {
  391. var select = methodRow.find('select.method-select');
  392. var input = methodRow.find('input.method-input');
  393. var contactForm = methodRow.closest('.contact-form');
  394. var contactIndex = contactForm.attr('id').split('-')[2];
  395. var type = select.val();
  396. if (!type) return;
  397. // Count existing methods of this type
  398. var count = 1;
  399. contactForm.find('select.method-select').each(function() {
  400. if ($(this).val() === type && $(this)[0] !== select[0]) {
  401. count++;
  402. }
  403. });
  404. // Update field names
  405. select.attr('name', `contact[${contactIndex}][${type}_${count}]`);
  406. input.attr('name', `contact[${contactIndex}][${type}_${count}]`);
  407. // Add format field for tel and whatsapp
  408. if (type === 'tel' || type === 'whatsapp') {
  409. if (!methodRow.find('.format-input').length) {
  410. input.after(`<input type="hidden" class="format-input" name="contact[${contactIndex}][${type}_${count}_format]">`);
  411. }
  412. }
  413. // Add backup field
  414. if (!methodRow.find('.backup-input').length) {
  415. methodRow.append(`<input type="hidden" class="backup-input" name="contact[${contactIndex}][${type}_${count}_bu]">`);
  416. }
  417. }
  418. // Update available method types for a contact
  419. function updateAvailableMethodTypes(contactIndex) {
  420. var methodsContainer = $('#contact-methods-' + contactIndex);
  421. // Count methods by type
  422. var methodCounts = {};
  423. methodsContainer.find('select.method-select').each(function() {
  424. var type = $(this).val();
  425. if (type) {
  426. methodCounts[type] = (methodCounts[type] || 0) + 1;
  427. }
  428. });
  429. // Update all selects in this contact
  430. methodsContainer.find('select.method-select').each(function() {
  431. var currentValue = $(this).val();
  432. $(this).find('option').each(function() {
  433. var optionValue = $(this).val();
  434. if (optionValue && optionValue !== currentValue) {
  435. $(this).prop('disabled', (methodCounts[optionValue] || 0) >= 3);
  436. }
  437. });
  438. });
  439. }
  440. // Update placeholder and handle method fields
  441. function updateMethodSelectAndPlaceholder(selectElement) {
  442. var methodRow = $(selectElement).closest('.contact-method-row');
  443. updateMethodPlaceholder(selectElement);
  444. updateMethodFields(methodRow);
  445. var contactIndex = methodRow.closest('.contact-form').attr('id').split('-')[2];
  446. updateAvailableMethodTypes(contactIndex);
  447. }
  448. // Look for the updateMethodPlaceholder function and replace it with this modified version
  449. function updateMethodPlaceholder(selectElement) {
  450. var placeholder = "";
  451. var value = $(selectElement).val();
  452. switch(value) {
  453. case "tel":
  454. placeholder = "电话格式必须为:区号+号码 如:+86 15012345678";
  455. break;
  456. case "wechat":
  457. placeholder = "微信";
  458. break;
  459. case "whatsapp":
  460. placeholder = "Whatsapp 格式必须为:区号+号码 如:+86 15012345678";
  461. break;
  462. case "email":
  463. placeholder = "邮箱格式必须正确,如: example@domain.com";
  464. break;
  465. case "linkedin":
  466. placeholder = "领英链接";
  467. break;
  468. case "facebook":
  469. placeholder = "Facebook";
  470. break;
  471. case "alibaba":
  472. placeholder = "阿里巴巴";
  473. break;
  474. default:
  475. placeholder = "请选择联系方式类型";
  476. }
  477. $(selectElement).next('.method-input').attr('placeholder', placeholder);
  478. }
  479. // Custom validation function for multiple contacts form with contact methods
  480. function validateMultipleContactsForm() {
  481. var clientCode = $("#cs_code").val();
  482. var clientCompany = $("#cs_company").val();
  483. var clientFrom = $("#cs_from").val();
  484. var clientCountry = $("#cs_country").val();
  485. // Validate basic customer info
  486. if (clientCode == "" || clientCode == null) {
  487. alert("客户代码不能为空!");
  488. $("#cs_code").focus();
  489. return false;
  490. }
  491. if (clientCountry == 0 || !clientCountry) {
  492. alert("这是哪个国家的客户?");
  493. $("#cs_country").focus();
  494. return false;
  495. }
  496. if (clientFrom == "0") {
  497. alert("请填写客户来源!");
  498. $("#cs_from").focus();
  499. return false;
  500. }
  501. // Validate that at least one business type is selected
  502. if (!$('input[name="cs_type[]"]:checked').length) {
  503. alert("请至少选择一种业务类型!");
  504. return false;
  505. }
  506. // Get source text to check if it's from Alibaba platforms
  507. var clientFromText = $("#cs_from option:selected").text();
  508. var isAlibabaSource = clientFromText.indexOf("1688") >= 0 ||
  509. clientFromText.indexOf("阿里") >= 0 ||
  510. clientFromText.indexOf("alibaba") >= 0;
  511. // Validate that at least one contact has at least one contact method
  512. var hasContactMethod = false;
  513. var hasAlibabaContact = false;
  514. var allContactsValid = true;
  515. var phoneRegex = /^\+\d{1,4}\s\d{5,}$/; // Regex to validate phone format: +[country code] [number]
  516. var emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; // Regex to validate email format
  517. $('.contact-form').each(function(contactIndex) {
  518. var $form = $(this);
  519. var contactName = $form.find('input[name*="[contact_name]"]').val();
  520. var hasMethodInThisContact = false;
  521. // Check if this contact has methods
  522. $form.find('.contact-method-row').each(function() {
  523. var methodType = $(this).find('select.method-select').val();
  524. var methodValue = $(this).find('input.method-input').val();
  525. if (methodValue) {
  526. hasMethodInThisContact = true;
  527. hasContactMethod = true;
  528. // Check if there's an Alibaba contact method
  529. if (methodType === 'alibaba') {
  530. hasAlibabaContact = true;
  531. }
  532. }
  533. // Check if method type is selected but value is empty
  534. if (methodType && !methodValue) {
  535. alert("联系方式类型已选择但值为空");
  536. allContactsValid = false;
  537. return false;
  538. }
  539. // Validate phone number format for tel and whatsapp
  540. if ((methodType === 'tel' || methodType === 'whatsapp') && methodValue) {
  541. if (!phoneRegex.test(methodValue)) {
  542. alert("电话格式不正确,请使用以下格式:区号+号码,如 +86 15012345678");
  543. $(this).find('input.method-input').focus();
  544. allContactsValid = false;
  545. return false;
  546. }
  547. }
  548. // Validate email format
  549. if (methodType === 'email' && methodValue) {
  550. if (!emailRegex.test(methodValue)) {
  551. alert("邮箱格式不正确,请输入有效的邮箱地址");
  552. $(this).find('input.method-input').focus();
  553. allContactsValid = false;
  554. return false;
  555. }
  556. }
  557. });
  558. // If contact has a name but no methods, or has methods but no name
  559. if ((contactName && !hasMethodInThisContact) || (!contactName && hasMethodInThisContact)) {
  560. alert("联系人 #" + (contactIndex + 1) + " 缺少联系人姓名或联系方式");
  561. allContactsValid = false;
  562. return false;
  563. }
  564. // If contact has neither name nor methods, it's an empty contact
  565. if (!contactName && !hasMethodInThisContact) {
  566. alert("联系人 #" + (contactIndex + 1) + " 是空的,请填写信息或删除此联系人");
  567. allContactsValid = false;
  568. return false;
  569. }
  570. });
  571. if (!allContactsValid) {
  572. return false;
  573. }
  574. if (!hasContactMethod) {
  575. alert("至少需要添加一个联系人,且联系人至少需要一种联系方式!");
  576. return false;
  577. }
  578. // If source is from Alibaba platforms, must have Alibaba contact method
  579. if (isAlibabaSource && !hasAlibabaContact) {
  580. alert("客户来源为1688或阿里国际站时,必须添加至少一个阿里巴巴联系方式!");
  581. return false;
  582. }
  583. // Set tag values
  584. $("input#mytag").val($(".taglist").html());
  585. // Convert the dynamic contact methods to the standard format expected by the server
  586. $('.contact-form').each(function(contactIndex) {
  587. var methodsData = {};
  588. $(this).find('.contact-method-row').each(function() {
  589. var type = $(this).find('select.method-select').val();
  590. var value = $(this).find('input.method-input').val();
  591. if (type && value) {
  592. methodsData[type] = value;
  593. }
  594. });
  595. // Create hidden inputs for each method
  596. for (var type in methodsData) {
  597. $('<input>').attr({
  598. type: 'hidden',
  599. name: 'contact[' + contactIndex + '][' + type + ']',
  600. value: methodsData[type]
  601. }).appendTo(this);
  602. }
  603. });
  604. return true;
  605. }
  606. // Modified submission function
  607. function submitCustomerForm() {
  608. if (validateMultipleContactsForm()) {
  609. $("#form1").submit();
  610. }
  611. }
  612. </script>
  613. <style>
  614. body {
  615. margin: 0;
  616. padding: 20px;
  617. background: #fff;
  618. }
  619. #man_zone {
  620. margin-left: 0;
  621. }
  622. .contact-form {
  623. margin-bottom: 10px;
  624. /*border: 1px solid #ddd;*/
  625. padding: 8px;
  626. background-color: #FFFFFF;
  627. }
  628. .contact-header {
  629. display: flex;
  630. align-items: center;
  631. margin-bottom: 8px;
  632. gap: 10px;
  633. }
  634. .contact-header h3 {
  635. margin: 0;
  636. order: 2;
  637. flex-grow: 1;
  638. }
  639. .remove-contact-btn {
  640. background-color: #f44336;
  641. color: white;
  642. border: none;
  643. padding: 4px 8px;
  644. cursor: pointer;
  645. order: 1;
  646. }
  647. .add-contact-btn {
  648. background-color: #4CAF50;
  649. color: white;
  650. border: none;
  651. padding: 6px 12px;
  652. margin-bottom: 10px;
  653. cursor: pointer;
  654. }
  655. .contact-methods-container {
  656. margin-top: 8px;
  657. }
  658. .contact-method-row {
  659. margin-bottom: 6px;
  660. padding: 6px;
  661. border: 0px solid #eee;
  662. /*background-color: #f5f5f5;*/
  663. display: flex;
  664. align-items: center;
  665. gap: 8px;
  666. }
  667. .add-method-btn {
  668. background-color: #2196F3;
  669. color: white;
  670. border: none;
  671. padding: 4px 8px;
  672. margin-top: 4px;
  673. cursor: pointer;
  674. }
  675. .remove-method-btn {
  676. background-color: #f44336;
  677. color: white;
  678. border: none;
  679. padding: 2px 4px;
  680. cursor: pointer;
  681. }
  682. .method-select {
  683. margin-right: 8px;
  684. padding: 3px;
  685. }
  686. .contact-table {
  687. margin-bottom: 6px;
  688. }
  689. .contact-table td, .contact-table th {
  690. padding: 4px 6px;
  691. }
  692. /* 客户关系样式 */
  693. .relationships-table {
  694. width: 100%;
  695. border-collapse: collapse;
  696. margin-bottom: 10px;
  697. }
  698. .relationships-table th, .relationships-table td {
  699. border: 1px solid #ddd;
  700. padding: 8px;
  701. text-align: left;
  702. }
  703. .relationships-table th {
  704. background-color: #f2f2f2;
  705. }
  706. .btn-add-relationship {
  707. background-color: #4CAF50;
  708. color: white;
  709. border: none;
  710. padding: 6px 12px;
  711. margin-bottom: 10px;
  712. cursor: pointer;
  713. }
  714. .edit-relationship-btn, .delete-relationship-btn {
  715. margin-right: 5px;
  716. cursor: pointer;
  717. padding: 3px 8px;
  718. border: none;
  719. }
  720. .edit-relationship-btn {
  721. background-color: #2196F3;
  722. color: white;
  723. }
  724. .delete-relationship-btn {
  725. background-color: #f44336;
  726. color: white;
  727. }
  728. #relationship-modal {
  729. position: fixed;
  730. top: 50%;
  731. left: 50%;
  732. transform: translate(-50%, -50%);
  733. background-color: white;
  734. padding: 20px;
  735. border: 1px solid #ddd;
  736. box-shadow: 0 0 10px rgba(0,0,0,0.3);
  737. z-index: 1000;
  738. width: 600px;
  739. max-width: 90%;
  740. }
  741. /* 弹窗内表格样式修复 */
  742. #relationship-modal table.table1 {
  743. width: 100%;
  744. border-collapse: collapse;
  745. table-layout: fixed;
  746. }
  747. #relationship-modal table.table1 th {
  748. width: 120px;
  749. text-align: right;
  750. padding-right: 10px;
  751. vertical-align: middle;
  752. white-space: nowrap;
  753. }
  754. #relationship-modal table.table1 td {
  755. padding: 6px 8px;
  756. }
  757. #relationship-modal .txt1 {
  758. width: 90%;
  759. }
  760. #relationship-modal select.txt1 {
  761. max-width: 300px;
  762. }
  763. .modal-backdrop {
  764. position: fixed;
  765. top: 0;
  766. left: 0;
  767. width: 100%;
  768. height: 100%;
  769. background-color: rgba(0,0,0,0.5);
  770. z-index: 999;
  771. }
  772. .modal-actions {
  773. text-align: right;
  774. margin-top: 15px;
  775. }
  776. .modal-actions button {
  777. padding: 5px 15px;
  778. margin-left: 10px;
  779. cursor: pointer;
  780. }
  781. /* 弹窗按钮样式 */
  782. .modal-actions .btn1 {
  783. border: 1px solid #ccc;
  784. background: #f5f5f5;
  785. border-radius: 3px;
  786. color: #333;
  787. font-size: 12px;
  788. height: 26px;
  789. padding: 0 15px;
  790. transition: all 0.3s;
  791. }
  792. .modal-actions .btn1:hover {
  793. background: #e6e6e6;
  794. border-color: #adadad;
  795. }
  796. #save-relationship-btn {
  797. background-color: #428bca;
  798. color: white;
  799. border-color: #357ebd;
  800. }
  801. #save-relationship-btn:hover {
  802. background-color: #3071a9;
  803. border-color: #285e8e;
  804. }
  805. .customer-search-container {
  806. display: flex;
  807. align-items: center;
  808. margin-bottom: 10px;
  809. position: relative;
  810. width: 80%;
  811. }
  812. .customer-dropdown {
  813. display: none;
  814. position: absolute;
  815. background: white;
  816. border: 1px solid #ccc;
  817. max-height: 200px;
  818. overflow-y: auto;
  819. width: 100%;
  820. z-index: 1000;
  821. box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  822. border-radius: 0 0 4px 4px;
  823. top: 100%;
  824. left: 0;
  825. }
  826. .customer-item {
  827. padding: 10px 12px;
  828. cursor: pointer;
  829. border-bottom: 1px solid #eee;
  830. transition: background-color 0.2s;
  831. }
  832. .customer-item:hover {
  833. background-color: #f0f0f0;
  834. }
  835. .selected-customer-info {
  836. font-weight: bold;
  837. padding: 8px 10px;
  838. border: 1px solid #ddd;
  839. background-color: #f9f9f9;
  840. display: none;
  841. width: 100%;
  842. box-sizing: border-box;
  843. word-break: break-all;
  844. overflow: hidden;
  845. text-overflow: ellipsis;
  846. white-space: normal;
  847. min-height: 38px;
  848. position: relative;
  849. padding-right: 25px;
  850. }
  851. .customer-clear-btn {
  852. position: absolute;
  853. right: 5px;
  854. top: 50%;
  855. transform: translateY(-50%);
  856. color: #e74c3c;
  857. font-weight: bold;
  858. cursor: pointer;
  859. width: 16px;
  860. height: 16px;
  861. text-align: center;
  862. line-height: 16px;
  863. background: #f5f5f5;
  864. border-radius: 50%;
  865. }
  866. .customer-clear-btn:hover {
  867. background: #e74c3c;
  868. color: white;
  869. }
  870. </style>
  871. </head>
  872. <body class="clear">
  873. <?php // require_once 'panel.php'; ?>
  874. <div id="man_zone">
  875. <form name="form1" id="form1" method="post" action="customerSave.php<?= $hrefstr ?>">
  876. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  877. <tbody>
  878. <tr>
  879. <th width="8%">客户编号</th>
  880. <td>
  881. <input type="text" id="cs_code" name="cs_code" value="<?= htmlspecialcharsFix($customer['cs_code']) ?>"
  882. <?= !empty($customer['cs_claimFrom']) ? 'readonly' : '' ?> class="txt1" />
  883. <input type="hidden" name="id" value="<?= $id ?>" />
  884. <input type="hidden" name="cs_addtime" value="<?= $customer['cs_addtime'] ?>" />
  885. <input type="hidden" name="Permissions" value="<?= $customer['allowedit'] ?>" />
  886. </td>
  887. </tr>
  888. <tr>
  889. <th width="8%">公司名称</th>
  890. <td><input type="text" id="cs_company" name="cs_company" value="<?= htmlspecialcharsFix($customer['cs_company']) ?>" class="txt1" /></td>
  891. </tr>
  892. <!-- 客户关系管理部分 -->
  893. <tr>
  894. <th width="8%" valign="top">客户关系</th>
  895. <td>
  896. <div id="relationships-container">
  897. <?php
  898. // 获取当前客户的所有关系
  899. $relationshipSql = "SELECT cr.*,
  900. c1.cs_company as source_company, c1.cs_code as source_code,
  901. c2.cs_company as target_company, c2.cs_code as target_code
  902. FROM customer_relationship cr
  903. LEFT JOIN customer c1 ON cr.source_customer_id = c1.id
  904. LEFT JOIN customer c2 ON cr.target_customer_id = c2.id
  905. WHERE cr.source_customer_id = ? OR cr.target_customer_id = ?";
  906. $relationshipStmt = $conn->prepare($relationshipSql);
  907. $relationshipStmt->bind_param("ii", $id, $id);
  908. $relationshipStmt->execute();
  909. $relationshipResult = $relationshipStmt->get_result();
  910. $hasRelationships = false;
  911. if ($relationshipResult->num_rows > 0) {
  912. $hasRelationships = true;
  913. echo '<table width="100%" border="0" cellpadding="3" cellspacing="1" class="relationships-table">';
  914. echo '<tr><th>关系类型</th><th>相关客户</th><th>关系状态</th><th>关系描述</th><th>操作</th></tr>';
  915. while ($relationship = $relationshipResult->fetch_assoc()) {
  916. $relationType = '';
  917. switch ($relationship['relationship_type']) {
  918. case 1: $relationType = '母公司-子公司'; break;
  919. case 2: $relationType = '供应商-客户'; break;
  920. case 3: $relationType = '合作伙伴'; break;
  921. case 4: $relationType = '竞争对手'; break;
  922. case 5: $relationType = '推荐人'; break;
  923. case 6: $relationType = '其他'; break;
  924. }
  925. $relationStatus = $relationship['relationship_status'] == 1 ? '启用' : '停用';
  926. // 确定关联的客户(不是当前客户的那一方)
  927. $relatedCustomerId = $relationship['source_customer_id'] == $id
  928. ? $relationship['target_customer_id']
  929. : $relationship['source_customer_id'];
  930. $relatedCustomerName = $relationship['source_customer_id'] == $id
  931. ? textUncode($relationship['target_company'])
  932. : textUncode($relationship['source_company']);
  933. $relatedCustomerCode = $relationship['source_customer_id'] == $id
  934. ? textUncode($relationship['target_code'])
  935. : textUncode($relationship['source_code']);
  936. $displayText = $relatedCustomerName;
  937. if ($relatedCustomerCode) {
  938. $displayText = $relatedCustomerCode . ' - ' . $relatedCustomerName;
  939. }
  940. echo '<tr>';
  941. echo '<td>' . $relationType . '</td>';
  942. echo '<td>' . htmlspecialchars($displayText) . '</td>';
  943. echo '<td>' . $relationStatus . '</td>';
  944. echo '<td>' . htmlspecialchars(textUncode($relationship['description'])) . '</td>';
  945. echo '<td>';
  946. echo '<button type="button" class="edit-relationship-btn" data-id="' . $relationship['id'] . '">编辑</button>';
  947. echo '<button type="button" class="delete-relationship-btn" data-id="' . $relationship['id'] . '">删除</button>';
  948. echo '</td>';
  949. echo '</tr>';
  950. }
  951. echo '</table>';
  952. } else {
  953. echo '<p>暂无关联客户关系。</p>';
  954. }
  955. ?>
  956. <button type="button" id="add-relationship-btn" class="btn-add-relationship">添加客户关系</button>
  957. </div>
  958. <!-- 添加/编辑关系的弹出框 -->
  959. <div id="relationship-modal" style="display: none;">
  960. <h3 id="relationship-modal-title" style="margin-top: 0; margin-bottom: 15px;">添加客户关系</h3>
  961. <input type="hidden" id="relationship_id" value="">
  962. <input type="hidden" id="current_customer_id" value="<?= $id ?>">
  963. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1 relationship-modal-table">
  964. <tr>
  965. <th width="120">关联客户</th>
  966. <td>
  967. <div class="customer-search-container" style="width: 90%; position: relative;">
  968. <input type="text" id="related_customer_search" class="customer-search txt1" placeholder="输入客户编码或名称搜索..." value="" style="width: 100%; box-sizing: border-box;" />
  969. <div id="related_customer_selected" class="selected-customer-info"></div>
  970. <div id="related_customer_dropdown" class="customer-dropdown"></div>
  971. </div>
  972. <input type="hidden" id="related_customer_id" value="" />
  973. </td>
  974. </tr>
  975. <tr>
  976. <th>关系类型</th>
  977. <td>
  978. <select id="relationship_type" class="txt1" style="width: auto; min-width: 200px;">
  979. <option value="">请选择关系类型</option>
  980. <option value="1">母公司-子公司</option>
  981. <option value="2">供应商-客户</option>
  982. <option value="3">合作伙伴</option>
  983. <option value="4">竞争对手</option>
  984. <option value="5">推荐人</option>
  985. <option value="6">其他</option>
  986. </select>
  987. </td>
  988. </tr>
  989. <tr>
  990. <th>关系状态</th>
  991. <td>
  992. <label style="margin-right: 15px;">
  993. <input type="radio" name="relationship_status" value="1" checked>
  994. 启用
  995. </label>
  996. <label>
  997. <input type="radio" name="relationship_status" value="0">
  998. 停用
  999. </label>
  1000. </td>
  1001. </tr>
  1002. <tr>
  1003. <th>关系描述</th>
  1004. <td>
  1005. <textarea id="relationship_description" class="txt1" style="width: 90%; height: 100px; resize: vertical;"></textarea>
  1006. </td>
  1007. </tr>
  1008. </table>
  1009. <div class="modal-actions">
  1010. <button type="button" id="save-relationship-btn" class="btn1">保存</button>
  1011. <button type="button" id="cancel-relationship-btn" class="btn1">取消</button>
  1012. </div>
  1013. </div>
  1014. </td>
  1015. </tr>
  1016. <tr>
  1017. <th width="8%">地区/国家</th>
  1018. <td>
  1019. <div class="layui-input-inline">
  1020. <div class="layui-form-select ySearchSelect y1">
  1021. <div class="layui-input">
  1022. <?php
  1023. $stmt = $conn->prepare("SELECT id, countryCode, countryName FROM country WHERE id = ?");
  1024. $stmt->bind_param("i", $customer['cs_country']);
  1025. $stmt->execute();
  1026. $countryResult = $stmt->get_result();
  1027. if ($countryRow = $countryResult->fetch_assoc()) {
  1028. $countryId = $countryRow['id'];
  1029. echo htmlspecialcharsFix($countryRow['countryName']);
  1030. } else {
  1031. echo "请选择";
  1032. }
  1033. ?>
  1034. </div>
  1035. <ul>
  1036. <?php
  1037. $result = $conn->query("SELECT id, countryCode, countryName FROM country");
  1038. while ($row = $result->fetch_assoc()) {
  1039. echo "<li class=\"on\" data-c=\"{$row['id']}\">(+{$row['countryCode']}){$row['countryName']}</li>";
  1040. }
  1041. ?>
  1042. <p>无匹配项</p>
  1043. </ul>
  1044. <input name="cs_country" id="cs_country" value="<?= $countryId ?? '' ?>" type="hidden">
  1045. </div>
  1046. </div>
  1047. <script>
  1048. $(function () {
  1049. $(".y1").ySearchSelect();
  1050. })
  1051. </script>
  1052. </td>
  1053. </tr>
  1054. <tr>
  1055. <th width="8%">客户来源</th>
  1056. <td>
  1057. <select id="cs_from" name="cs_from">
  1058. <option value="0">请选择来源</option>
  1059. <?php
  1060. $result = $conn->query("SELECT id, ch_name FROM qudao");
  1061. while ($row = $result->fetch_assoc()) {
  1062. $selected = ($customer['cs_from'] == $row['id']) ? ' selected="selected"' : '';
  1063. echo "<option value=\"{$row['id']}\"$selected>{$row['ch_name']}</option>";
  1064. }
  1065. ?>
  1066. </select>
  1067. </td>
  1068. </tr>
  1069. <tr>
  1070. <th width="8%" valign="top">联系人信息</th>
  1071. <td>
  1072. <button type="button" class="add-contact-btn">添加联系人</button>
  1073. <div id="contacts-container">
  1074. <?php if (!empty($contacts)): ?>
  1075. <?php foreach ($contacts as $index => $contact): ?>
  1076. <div class="contact-form" id="contact-form-<?= $index ?>">
  1077. <div class="contact-header">
  1078. <button type="button" class="remove-contact-btn" data-index="<?= $index ?>">删除</button>
  1079. <h3>联系人 #<?= $index + 1 ?></h3>
  1080. </div>
  1081. <input type="hidden" name="contact[<?= $index ?>][id]" value="<?= $contact['id'] ?>">
  1082. <div class="contact-method-row">
  1083. <span style="width:80px;display:inline-block;font-weight:bold;" class="method-select">联系人姓名</span>
  1084. <input type="text" name="contact[<?= $index ?>][contact_name]" value="<?= htmlspecialcharsFix($contact['contact_name']) ?>" class="txt1 method-input" style="width:60%;" placeholder="联系人姓名"/>
  1085. </div>
  1086. <div class="contact-methods-container" id="contact-methods-<?= $index ?>">
  1087. <?php
  1088. $methodTypes = [
  1089. 'tel' => '电话',
  1090. 'wechat' => '微信',
  1091. 'whatsapp' => 'WhatsApp',
  1092. 'email' => '邮箱',
  1093. 'linkedin' => '领英',
  1094. 'facebook' => 'Facebook',
  1095. 'alibaba' => '阿里巴巴'
  1096. ];
  1097. foreach ($methodTypes as $type => $label) {
  1098. for ($i = 1; $i <= 3; $i++) {
  1099. $fieldName = $type . '_' . $i;
  1100. if (!empty($contact[$fieldName])) {
  1101. echo '<div class="contact-method-row">';
  1102. echo '<select class="method-select" name="contact[' . $index . '][' . $fieldName . ']" onchange="updateMethodSelectAndPlaceholder(this)">';
  1103. echo '<option value="">请选择联系方式</option>';
  1104. foreach ($methodTypes as $optionType => $optionLabel) {
  1105. $selected = ($optionType === $type) ? 'selected' : '';
  1106. echo '<option value="' . $optionType . '" ' . $selected . '>' . $optionLabel . '</option>';
  1107. }
  1108. echo '</select>';
  1109. echo '<input type="text" class="txt1 method-input" style="width:60%;" name="contact[' . $index . '][' . $fieldName . ']" value="' . htmlspecialcharsFix($contact[$fieldName]) . '">';
  1110. if ($type === 'tel' || $type === 'whatsapp') {
  1111. echo '<input type="hidden" class="format-input" name="contact[' . $index . '][' . $fieldName . '_format]" value="' . htmlspecialcharsFix($contact[$fieldName . '_format']) . '">';
  1112. }
  1113. echo '<input type="hidden" class="backup-input" name="contact[' . $index . '][' . $fieldName . '_bu]" value="' . htmlspecialcharsFix($contact[$fieldName . '_bu']) . '">';
  1114. echo '<button type="button" class="remove-method-btn">删除</button>';
  1115. echo '</div>';
  1116. }
  1117. }
  1118. }
  1119. ?>
  1120. </div>
  1121. <button type="button" class="add-method-btn" data-contact-index="<?= $index ?>">添加联系方式</button>
  1122. </div>
  1123. <?php endforeach; ?>
  1124. <?php else: ?>
  1125. <div class="contact-form" id="contact-form-0"">
  1126. <div class="contact-header">
  1127. <button type="button" class="remove-contact-btn" data-index="0">删除</button>
  1128. <h3>联系人 #1</h3>
  1129. </div>
  1130. <input type="hidden" name="contact[0][id]" value="">
  1131. <div class="contact-method-row">
  1132. <span style="width:80px;display:inline-block;font-weight:bold;" class="method-select">联系人姓名</span>
  1133. <input type="text" name="contact[0][contact_name]" class="txt1 method-input" style="width:60%;" placeholder="联系人姓名"/>
  1134. </div>
  1135. <div class="contact-methods-container" id="contact-methods-0">
  1136. <!-- Contact methods will be added here -->
  1137. </div>
  1138. <button type="button" class="add-method-btn" data-contact-index="0">添加联系方式</button>
  1139. </div>
  1140. <?php endif; ?>
  1141. </div>
  1142. </td>
  1143. </tr>
  1144. <tr>
  1145. <th width="8%">地址</th>
  1146. <td><input type="text" id="cs_address" name="cs_address" value="<?= htmlspecialcharsFix($customer['cs_address']) ?>" class="txt1" /></td>
  1147. </tr>
  1148. <tr>
  1149. <th>业务类型</th>
  1150. <td>
  1151. <?php
  1152. // 获取当前客户的业务类型
  1153. $selected_types = [];
  1154. $type_result = $conn->query("SELECT business_type_id FROM customer_business_type WHERE customer_id = " . intval($id));
  1155. while ($type_row = $type_result->fetch_assoc()) {
  1156. $selected_types[] = $type_row['business_type_id'];
  1157. }
  1158. $result = $conn->query("SELECT id, businessType FROM clienttype");
  1159. while ($row = $result->fetch_assoc()) {
  1160. $checked = in_array($row['id'], $selected_types) ? ' checked="checked"' : '';
  1161. echo "<input type=\"checkbox\" name=\"cs_type[]\" value=\"{$row['id']}\" id=\"fortype{$row['id']}\"$checked>
  1162. <label for=\"fortype{$row['id']}\">{$row['businessType']}</label>";
  1163. }
  1164. ?>
  1165. </td>
  1166. </tr>
  1167. <tr>
  1168. <th>跟进阶段</th>
  1169. <td>
  1170. <?php
  1171. $dealOptions = [
  1172. ['id' => '0', 'label' => '无响应'],
  1173. ['id' => '1', 'label' => '背景调查'],
  1174. ['id' => '2', 'label' => '明确需求'],
  1175. ['id' => '3', 'label' => '已成交']
  1176. ];
  1177. foreach ($dealOptions as $option) {
  1178. $checked = ($customer['cs_deal'] == $option['id']) ? ' checked="checked"' : '';
  1179. $disabled = ($customer['cs_deal'] == '3' && $option['id'] != '3') ? ' disabled="disabled"' : '';
  1180. echo "<input type=\"radio\" id=\"fordeal{$option['id']}\" class=\"cs_deal\" name=\"cs_deal\"
  1181. value=\"{$option['id']}\"$checked$disabled><label for=\"fordeal{$option['id']}\">{$option['label']}</label>";
  1182. }
  1183. ?>
  1184. </td>
  1185. </tr>
  1186. <tr>
  1187. <th>其他</th>
  1188. <td>
  1189. <input type="checkbox" id="belongClient" class="cs_belongClient" name="cs_belongClient"
  1190. value="1"<?= $customer['cs_belongclient'] == 1 ? ' checked="checked"' : '' ?>>
  1191. <label for="belongClient">客户的客户</label>
  1192. </td>
  1193. </tr>
  1194. <tr>
  1195. <th>自定义标签</th>
  1196. <td>
  1197. <div class="taglist">
  1198. <?php
  1199. $stmt = $conn->prepare("SELECT id, tagName FROM tagtable WHERE customerId = ?");
  1200. $stmt->bind_param("i", $id);
  1201. $stmt->execute();
  1202. $result = $stmt->get_result();
  1203. while ($row = $result->fetch_assoc()) {
  1204. echo "<span>" . htmlspecialcharsFix($row['tagName']) . "</span>";
  1205. }
  1206. ?>
  1207. </div>
  1208. <div class="commontag">
  1209. <i class="tag">美特柏品牌客户</i>,
  1210. <i class="tag">OEM定制客户</i>,
  1211. <i class="tag">小型B端客户</i>,
  1212. <i class="tag">C端客户</i>,
  1213. <i class="tag">贸易公司</i>,
  1214. <i class="tag">档口客户</i>
  1215. <?php
  1216. $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagtable WHERE employeeId = ?");
  1217. $stmt->bind_param("i", $_SESSION['employee_id']);
  1218. $stmt->execute();
  1219. $result = $stmt->get_result();
  1220. while ($row = $result->fetch_assoc()) {
  1221. echo "<i class=\"tag\">" . htmlspecialcharsFix(textUncode($row['tagName'])) . "</i>,";
  1222. }
  1223. ?>
  1224. </div>
  1225. <input type="text" id="tapinput" class="txt-short" placeholder="自定义标签,按Enter添加">
  1226. <input type="hidden" id="mytag" name="mytag" value="">
  1227. </td>
  1228. </tr>
  1229. <tr>
  1230. <th width="8%">备注</th>
  1231. <td><textarea name="cs_note" class="txt2"><?= htmlspecialcharsFix($customer['cs_note']) ?></textarea></td>
  1232. </tr>
  1233. </tbody>
  1234. </table>
  1235. <div class="form-actions">
  1236. <input type="button" name="save" id="save" value="确定" class="btn1" onclick="submitCustomerForm();">
  1237. <input type="button" value="返回" class="btn1" onClick="location.href='customers.php<?= $hrefstr ?>'" />
  1238. </div>
  1239. </form>
  1240. </div>
  1241. </body>
  1242. </html>