customerSave.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. ?>
  5. <!DOCTYPE html>
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>管理区域</title>
  10. <link rel="stylesheet" href="system/css/common.css" type="text/css" />
  11. <script src="system/js/jquery-1.7.2.min.js"></script>
  12. <script src="js/js.js"></script>
  13. </head>
  14. <body class="clear">
  15. <?php
  16. // Get query parameters
  17. $page = $_GET['Page'] ?? '';
  18. $keys = urlencode($_GET['Keys'] ?? '');
  19. $fliterBusiness = $_GET['fliterBusiness'] ?? '';
  20. $fliterDeal = $_GET['Deal'] ?? '';
  21. // Get form data
  22. $id = $_POST['id'] ?? '';
  23. $cs_code = textEncode($_POST['cs_code'] ?? '');
  24. $cs_company = textEncode($_POST['cs_company'] ?? '');
  25. $cs_country = $_POST['cs_country'] ?? '';
  26. $cs_from = $_POST['cs_from'] ?? '';
  27. $cs_address = textEncode($_POST['cs_address'] ?? '');
  28. $cs_type = textEncode($_POST['cs_type'] ?? '');
  29. $cs_belongclient = $_POST['cs_belongclient'] ?? '';
  30. $cs_addtime = $_POST['cs_addtime'] ?? '';
  31. $cs_updatetime = date('Y-m-d H:i:s');
  32. $cs_belong = $_SESSION['employee_id'];
  33. $cs_state = 1;
  34. $cs_deal = $_POST['cs_deal'] ?? '';
  35. $allowedit = $_POST['Permissions'] ?? '0';
  36. // Get contact information from the form
  37. $contacts = $_POST['contact'] ?? [];
  38. // Validate numeric values
  39. $allowedit = is_numeric($allowedit) ? $allowedit : 0;
  40. $cs_country = (is_numeric($cs_country) && $cs_country !== '') ? $cs_country : 0;
  41. $cs_from = (is_numeric($cs_from) && $cs_from !== '') ? $cs_from : 0;
  42. $cs_deal = (is_numeric($cs_deal) && $cs_deal !== '') ? $cs_deal : 1;
  43. $cs_type = (is_numeric($cs_type) && $cs_type !== '') ? $cs_type : 5;
  44. $cs_belongClient = (is_numeric($cs_belongclient) && $cs_belongclient !== '') ? $cs_belongclient : 0;
  45. $cs_note = htmlEncode($_POST['cs_note'] ?? '');
  46. $mytag = textEncode($_POST['mytag'] ?? '');
  47. $mytag = str_replace(['&#60;&#47;span&#62;&#60;span&#62;', '&#60;&#47;span&#62;', '&#60;span&#62;'], [',', '', ''], $mytag);
  48. $mytag = explode(',', $mytag);
  49. // Auto-detect source from code
  50. if (strpos($cs_code, ';1688') !== false) {
  51. $cs_from = 1; // 1688
  52. }
  53. if (strpos($cs_code, ';阿里') !== false) {
  54. $cs_from = 2; // International station
  55. }
  56. // Get the first contact for validation (if any)
  57. $primary_contact = !empty($contacts) ? current($contacts) : [];
  58. // Check contact-specific validation requirements based on source
  59. if ($allowedit != 1) {
  60. // Get the first contact's information for validation
  61. $contact_name = textEncode($primary_contact['contact_name'] ?? '');
  62. $tel_1 = textEncode($primary_contact['tel_1'] ?? '');
  63. $wechat_1 = textEncode($primary_contact['wechat_1'] ?? '');
  64. $whatsapp_1 = textEncode($primary_contact['whatsapp_1'] ?? '');
  65. $email_1 = textEncode($primary_contact['email_1'] ?? '');
  66. $alibaba_1 = textEncode($primary_contact['alibaba_1'] ?? '');
  67. $facebook_1 = textEncode($primary_contact['facebook_1'] ?? '');
  68. // Alibaba validation
  69. if (($cs_from == 1 || $cs_from == 2) && empty($alibaba_1)) {
  70. echo "<script>alert('阿里旺旺为必填项');history.back();</script>";
  71. exit;
  72. }
  73. // Website source validation
  74. if (strpos($cs_code, '官网') !== false) {
  75. $cs_from = 3;
  76. }
  77. if ($cs_from == 3 && empty($tel_1) && empty($whatsapp_1) && empty($wechat_1)) {
  78. echo "<script>alert('电话和WhatsApp为必填项');history.back();</script>";
  79. exit;
  80. }
  81. // Market customer validation
  82. if ($cs_from == 8 && empty($wechat_1)) {
  83. echo "<script>alert('微信为必填项');history.back();</script>";
  84. exit;
  85. }
  86. // Facebook validation
  87. if ($cs_from == 12 && empty($facebook_1)) {
  88. echo "<script>alert('Facebook为必填项');history.back();</script>";
  89. exit;
  90. }
  91. }
  92. // Determine action type
  93. $act = empty($id) || !is_numeric($id) ? 'addSave' : 'editSave';
  94. if ($act === 'editSave') {
  95. // Verify customer ownership - 将bind_param改为SQL拼接
  96. $id = intval($id); // 确保ID是整数,防止SQL注入
  97. $sql = "SELECT cs_belong FROM customer WHERE id = " . $id;
  98. $result = $conn->query($sql);
  99. if ($row = $result->fetch_assoc()) {
  100. if ($row['cs_belong'] != $cs_belong) {
  101. echo "<script>alert('抱歉,该客户属于另一业务,你没有权限修改');history.back();</script>";
  102. exit;
  103. }
  104. } else {
  105. echo "<script>alert('没有此客户!');history.back();</script>";
  106. exit;
  107. }
  108. }
  109. // Validate customer code
  110. if (empty($cs_code)) {
  111. echo "<script>alert('客户编码不能为空');history.back();</script>";
  112. exit;
  113. }
  114. // Check for duplicate customer information
  115. $checkStr = "SELECT c.*, cc.*
  116. FROM customer c
  117. LEFT JOIN customer_contact cc ON c.id = cc.customer_id
  118. WHERE c.cs_belong != " . $_SESSION['employee_id'] . " AND (c.id = 0 ";
  119. $Dupli = "";
  120. // Check all contacts for duplicates
  121. foreach ($contacts as $contact) {
  122. // Check all phone numbers
  123. for ($i = 1; $i <= 3; $i++) {
  124. $tel_field = 'tel_' . $i;
  125. if (!empty($contact[$tel_field])) {
  126. $tel_format = numFormat($contact[$tel_field]);
  127. $checkStr .= " OR cc.tel_1_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
  128. " OR cc.tel_2_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
  129. " OR cc.tel_3_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
  130. " OR cc.wechat_1 LIKE '%" . substr($tel_format, 3, 9) . "%'" .
  131. " OR cc.wechat_2 LIKE '%" . substr($tel_format, 3, 9) . "%'" .
  132. " OR cc.wechat_3 LIKE '%" . substr($tel_format, 3, 9) . "%'";
  133. $Dupli .= "电话" . $i . ":" . $contact[$tel_field] . " ";
  134. }
  135. }
  136. // Check all email addresses
  137. for ($i = 1; $i <= 3; $i++) {
  138. $email_field = 'email_' . $i;
  139. if (!empty($contact[$email_field])) {
  140. $checkStr .= " OR cc.email_1 = '" . $conn->real_escape_string($contact[$email_field]) . "'" .
  141. " OR cc.email_2 = '" . $conn->real_escape_string($contact[$email_field]) . "'" .
  142. " OR cc.email_3 = '" . $conn->real_escape_string($contact[$email_field]) . "'";
  143. $Dupli .= "邮箱" . $i . ":" . $contact[$email_field] . " ";
  144. }
  145. }
  146. // Check all WhatsApp numbers
  147. for ($i = 1; $i <= 3; $i++) {
  148. $whatsapp_field = 'whatsapp_' . $i;
  149. if (!empty($contact[$whatsapp_field])) {
  150. $whatsapp_format = numFormat($contact[$whatsapp_field]);
  151. $checkStr .= " OR cc.whatsapp_1_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
  152. " OR cc.whatsapp_2_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
  153. " OR cc.whatsapp_3_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
  154. " OR cc.tel_1_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
  155. " OR cc.tel_2_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
  156. " OR cc.tel_3_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'";
  157. $Dupli .= "WhatsApp" . $i . ":" . $contact[$whatsapp_field] . " ";
  158. }
  159. }
  160. // Check all WeChat accounts
  161. for ($i = 1; $i <= 3; $i++) {
  162. $wechat_field = 'wechat_' . $i;
  163. if (!empty($contact[$wechat_field])) {
  164. if (strlen($contact[$wechat_field]) < 10) {
  165. $checkStr .= " OR cc.wechat_1 LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
  166. " OR cc.wechat_2 LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
  167. " OR cc.wechat_3 LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
  168. " OR cc.tel_1_format LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
  169. " OR cc.tel_2_format LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
  170. " OR cc.tel_3_format LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'";
  171. } else {
  172. $checkStr .= " OR cc.wechat_1 LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
  173. " OR cc.wechat_2 LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
  174. " OR cc.wechat_3 LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
  175. " OR cc.tel_1_format LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
  176. " OR cc.tel_2_format LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
  177. " OR cc.tel_3_format LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'";
  178. }
  179. $Dupli .= "微信" . $i . ":" . $contact[$wechat_field] . " ";
  180. }
  181. }
  182. // Check all LinkedIn accounts
  183. for ($i = 1; $i <= 3; $i++) {
  184. $linkedin_field = 'linkedin_' . $i;
  185. if (!empty($contact[$linkedin_field])) {
  186. $checkStr .= " OR cc.linkedin_1 LIKE '%" . $conn->real_escape_string($contact[$linkedin_field]) . "%'" .
  187. " OR cc.linkedin_2 LIKE '%" . $conn->real_escape_string($contact[$linkedin_field]) . "%'" .
  188. " OR cc.linkedin_3 LIKE '%" . $conn->real_escape_string($contact[$linkedin_field]) . "%'";
  189. $Dupli .= "LinkedIn" . $i . ":" . $contact[$linkedin_field] . " ";
  190. }
  191. }
  192. // Check all Facebook accounts
  193. for ($i = 1; $i <= 3; $i++) {
  194. $facebook_field = 'facebook_' . $i;
  195. if (!empty($contact[$facebook_field])) {
  196. $checkStr .= " OR cc.facebook_1 LIKE '%" . $conn->real_escape_string($contact[$facebook_field]) . "%'" .
  197. " OR cc.facebook_2 LIKE '%" . $conn->real_escape_string($contact[$facebook_field]) . "%'" .
  198. " OR cc.facebook_3 LIKE '%" . $conn->real_escape_string($contact[$facebook_field]) . "%'";
  199. $Dupli .= "Facebook" . $i . ":" . $contact[$facebook_field] . " ";
  200. }
  201. }
  202. // Check all Alibaba accounts
  203. for ($i = 1; $i <= 3; $i++) {
  204. $alibaba_field = 'alibaba_' . $i;
  205. if (!empty($contact[$alibaba_field])) {
  206. if (strlen($contact[$alibaba_field]) < 10) {
  207. $checkStr .= " OR cc.alibaba_1 LIKE '" . $conn->real_escape_string($contact[$alibaba_field]) . "'" .
  208. " OR cc.alibaba_2 LIKE '" . $conn->real_escape_string($contact[$alibaba_field]) . "'" .
  209. " OR cc.alibaba_3 LIKE '" . $conn->real_escape_string($contact[$alibaba_field]) . "'";
  210. } else {
  211. $checkStr .= " OR cc.alibaba_1 LIKE '%" . substr($contact[$alibaba_field], 3, 12) . "%'" .
  212. " OR cc.alibaba_2 LIKE '%" . substr($contact[$alibaba_field], 3, 12) . "%'" .
  213. " OR cc.alibaba_3 LIKE '%" . substr($contact[$alibaba_field], 3, 12) . "%'";
  214. }
  215. $Dupli .= "阿里旺旺" . $i . ":" . $contact[$alibaba_field] . " ";
  216. }
  217. }
  218. }
  219. $checkStr .= " ) ORDER BY c.id ASC";
  220. if ($allowedit != 1) {
  221. $result = $conn->query($checkStr);
  222. if ($result && $result->num_rows > 0) {
  223. $row = $result->fetch_assoc();
  224. // Get owner name
  225. $ownerResult = $conn->query("SELECT em_user FROM employee WHERE id = " . $row['cs_belong']);
  226. $ownerRow = $ownerResult->fetch_assoc();
  227. $owner = textUncode($ownerRow['em_user']);
  228. // Determine who entered first
  229. if (strtotime($cs_addtime) > strtotime($row['cs_addtime'])) {
  230. $tstr = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
  231. $_SESSION['employee_name'] . "', '" . getIp() . "', '" . date('Y-m-d H:i:s') . "', '" .
  232. $_SESSION['employee_name'] . "编辑客户\"" . $cs_code . "\",该客户与\"" .
  233. textUncode($row['cs_code']) . "\"高度类似,<br>重复项为:" . $Dupli . "<br>客户由:" .
  234. $_SESSION['employee_name'] . $cs_addtime . "首次录入')";
  235. } else {
  236. $tstr = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
  237. $_SESSION['employee_name'] . "', '" . getIp() . "', '" . date('Y-m-d H:i:s') . "', '" .
  238. $_SESSION['employee_name'] . "编辑客户\"" . $cs_code . "\",该客户与\"" .
  239. textUncode($row['cs_code']) . "\"高度类似,<br>重复项为:" . $Dupli . "<br>客户由:" .
  240. $owner . $row['cs_addtime'] . "首次录入')";
  241. }
  242. $conn->query($tstr);
  243. echo "<script>alert('录入信息\\n与" . $owner . "客户编号:" . textUncode($row['cs_code']) .
  244. "\\n高度类似,未能保存,请联系管理员核实!');history.back();</script>";
  245. exit;
  246. }
  247. }
  248. // Save or update customer data
  249. if ($act == "editSave" || $allowedit == 1) {
  250. $hrefstr = "/customers.php?Keys=" . $keys . "&fliterBusiness=" . $fliterBusiness .
  251. "&fliterDeal=" . $fliterDeal . "&Page=" . $page;
  252. // 更新客户基本信息
  253. $updateSql = "UPDATE customer SET
  254. cs_code='" . $conn->real_escape_string($cs_code) . "',
  255. cs_company='" . $conn->real_escape_string($cs_company) . "',
  256. cs_country=" . $cs_country . ",
  257. cs_from=" . $cs_from . ",
  258. cs_address='" . $conn->real_escape_string($cs_address) . "',
  259. cs_updatetime='" . $cs_updatetime . "',
  260. cs_belong=" . $cs_belong . ",
  261. cs_belongclient=" . $cs_belongClient . ",
  262. cs_state=" . $cs_state . ",
  263. cs_deal=" . $cs_deal . ",
  264. cs_note='" . $conn->real_escape_string($cs_note) . "'";
  265. // 处理cs_dealdate
  266. if ($cs_deal == 3) {
  267. $updateSql .= ", cs_dealdate = CASE WHEN cs_dealdate IS NULL THEN NOW() ELSE cs_dealdate END";
  268. }
  269. $updateSql .= " WHERE id=" . intval($id);
  270. $conn->query($updateSql);
  271. // 处理联系人信息 - 首先删除已有的不在提交列表中的联系人
  272. $existingContactIds = [];
  273. foreach ($contacts as $contact) {
  274. if (!empty($contact['id'])) {
  275. $existingContactIds[] = (int)$contact['id'];
  276. }
  277. }
  278. if (!empty($existingContactIds)) {
  279. $idsToKeep = implode(',', $existingContactIds);
  280. $deleteContactsSql = "DELETE FROM customer_contact WHERE customer_id = " . intval($id) .
  281. " AND id NOT IN (" . $idsToKeep . ")";
  282. } else {
  283. $deleteContactsSql = "DELETE FROM customer_contact WHERE customer_id = " . intval($id);
  284. }
  285. $conn->query($deleteContactsSql);
  286. // 处理联系人信息 - 更新或添加联系人
  287. foreach ($contacts as $contact) {
  288. $contact_id = !empty($contact['id']) ? (int)$contact['id'] : 0;
  289. $contact_name = textEncode($contact['contact_name'] ?? '');
  290. // 准备SQL字段和值
  291. $fields = ['contact_name'];
  292. $values = ["'" . $conn->real_escape_string($contact_name) . "'"];
  293. $updates = ["contact_name = '" . $conn->real_escape_string($contact_name) . "'"];
  294. // 处理所有联系方式类型
  295. $methodTypes = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba'];
  296. foreach ($methodTypes as $type) {
  297. for ($i = 1; $i <= 3; $i++) {
  298. $field = $type . '_' . $i;
  299. $format_field = $field . '_format';
  300. $bu_field = $field . '_bu';
  301. $value = textEncode($contact[$field] ?? '');
  302. $format_value = ($type == 'tel' || $type == 'whatsapp') ? numFormat($value) : '';
  303. $bu_value = textEncode($contact[$bu_field] ?? $value);
  304. // 添加字段名
  305. $fields[] = $field;
  306. $fields[] = $bu_field;
  307. if ($type == 'tel' || $type == 'whatsapp') {
  308. $fields[] = $format_field;
  309. }
  310. // 添加值
  311. $values[] = "'" . $conn->real_escape_string($value) . "'";
  312. $values[] = "'" . $conn->real_escape_string($bu_value) . "'";
  313. if ($type == 'tel' || $type == 'whatsapp') {
  314. $values[] = "'" . $conn->real_escape_string($format_value) . "'";
  315. }
  316. // 添加更新语句
  317. $updates[] = $field . " = '" . $conn->real_escape_string($value) . "'";
  318. $updates[] = $bu_field . " = '" . $conn->real_escape_string($bu_value) . "'";
  319. if ($type == 'tel' || $type == 'whatsapp') {
  320. $updates[] = $format_field . " = '" . $conn->real_escape_string($format_value) . "'";
  321. }
  322. }
  323. }
  324. if ($contact_id > 0) {
  325. // 更新已有联系人
  326. $updateContactSql = "UPDATE customer_contact SET " .
  327. implode(", ", $updates) . ", updated_at = NOW() " .
  328. "WHERE id = " . $contact_id . " AND customer_id = " . intval($id);
  329. $conn->query($updateContactSql);
  330. } else {
  331. // 添加新联系人
  332. $insertContactSql = "INSERT INTO customer_contact (" .
  333. implode(", ", $fields) . ", customer_id, created_at, updated_at) VALUES (" .
  334. implode(", ", $values) . ", " . intval($id) . ", NOW(), NOW())";
  335. $conn->query($insertContactSql);
  336. }
  337. }
  338. // Update tags
  339. $conn->query("DELETE FROM tagtable WHERE customerId = " . intval($id));
  340. foreach ($mytag as $tag) {
  341. if (!empty(trim($tag))) {
  342. $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" .
  343. $conn->real_escape_string($tag) . "', " .
  344. intval($_SESSION['employee_id']) . ", " .
  345. intval($id) . ")";
  346. $conn->query($tagSql);
  347. }
  348. }
  349. echo "<script>location.href='$hrefstr';</script>";
  350. } else {
  351. // Insert new customer record
  352. $insertSql = "INSERT INTO customer (
  353. cs_code, cs_company, cs_country, cs_from, cs_address,
  354. cs_type, cs_addtime, cs_updatetime, cs_belong, cs_belongClient,
  355. cs_state, cs_deal, cs_note, cs_chain, is_silent, cs_dealdate
  356. ) VALUES (
  357. '" . $conn->real_escape_string($cs_code) . "',
  358. '" . $conn->real_escape_string($cs_company) . "',
  359. " . $cs_country . ",
  360. " . $cs_from . ",
  361. '" . $conn->real_escape_string($cs_address) . "',
  362. " . $cs_type . ",
  363. NOW(),
  364. NOW(),
  365. " . $cs_belong . ",
  366. " . $cs_belongClient . ",
  367. " . $cs_state . ",
  368. " . $cs_deal . ",
  369. '" . $conn->real_escape_string($cs_note) . "',
  370. " . $cs_belong . ",
  371. 0,
  372. " . ($cs_deal == 3 ? "NOW()" : "NULL") . "
  373. )";
  374. $conn->query($insertSql);
  375. $new_customer_id = $conn->insert_id;
  376. // Insert contact information for all contacts
  377. if ($new_customer_id > 0) {
  378. foreach ($contacts as $contact) {
  379. $contact_name = textEncode($contact['contact_name'] ?? '');
  380. // 准备SQL字段和值
  381. $fields = ['contact_name'];
  382. $values = ["'" . $conn->real_escape_string($contact_name) . "'"];
  383. // 处理所有联系方式类型
  384. $methodTypes = ['tel', 'email', 'whatsapp', 'wechat', 'linkedin', 'facebook', 'alibaba'];
  385. foreach ($methodTypes as $type) {
  386. for ($i = 1; $i <= 3; $i++) {
  387. $field = $type . '_' . $i;
  388. $format_field = $field . '_format';
  389. $bu_field = $field . '_bu';
  390. $value = textEncode($contact[$field] ?? '');
  391. $format_value = ($type == 'tel' || $type == 'whatsapp') ? numFormat($value) : '';
  392. $bu_value = textEncode($contact[$bu_field] ?? $value);
  393. // 添加字段名
  394. $fields[] = $field;
  395. $fields[] = $bu_field;
  396. if ($type == 'tel' || $type == 'whatsapp') {
  397. $fields[] = $format_field;
  398. }
  399. // 添加值
  400. $values[] = "'" . $conn->real_escape_string($value) . "'";
  401. $values[] = "'" . $conn->real_escape_string($bu_value) . "'";
  402. if ($type == 'tel' || $type == 'whatsapp') {
  403. $values[] = "'" . $conn->real_escape_string($format_value) . "'";
  404. }
  405. }
  406. }
  407. // 添加新联系人
  408. $insertContactSql = "INSERT INTO customer_contact (" .
  409. implode(", ", $fields) . ", customer_id, created_at, updated_at) VALUES (" .
  410. implode(", ", $values) . ", " . $new_customer_id . ", NOW(), NOW())";
  411. $conn->query($insertContactSql);
  412. }
  413. // Save tags for new customer
  414. foreach ($mytag as $tag) {
  415. if (!empty(trim($tag))) {
  416. $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" .
  417. $conn->real_escape_string($tag) . "', " .
  418. intval($_SESSION['employee_id']) . ", " .
  419. intval($new_customer_id) . ")";
  420. $conn->query($tagSql);
  421. }
  422. }
  423. }
  424. echo "<script>location.href='customerAdd.php';</script>";
  425. }
  426. ?>
  427. </body>
  428. </html>