customerSave.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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_name = textEncode($_POST['cs_name'] ?? '');
  26. $cs_country = $_POST['cs_country'] ?? '';
  27. $cs_from = $_POST['cs_from'] ?? '';
  28. $cs_tel = textEncode($_POST['cs_tel'] ?? '');
  29. $cs_wechat = textEncode($_POST['cs_wechat'] ?? '');
  30. $cs_whatsapp = textEncode($_POST['cs_whatsapp'] ?? '');
  31. $cs_email = textEncode($_POST['cs_email'] ?? '');
  32. $cs_linkedin = textEncode($_POST['cs_linkedin'] ?? '');
  33. $cs_facebook = textEncode($_POST['cs_facebook'] ?? '');
  34. $cs_alibaba = textEncode($_POST['cs_alibaba'] ?? '');
  35. $cs_alibaba = str_replace(':', ':', $cs_alibaba);
  36. $cs_alibaba = str_replace('ID:', '', $cs_alibaba);
  37. $cs_address = textEncode($_POST['cs_address'] ?? '');
  38. $cs_type = textEncode($_POST['cs_type'] ?? '');
  39. $cs_belongclient = $_POST['cs_belongclient'] ?? '';
  40. $cs_addtime = $_POST['cs_addtime'] ?? '';
  41. $cs_updatetime = date('Y-m-d H:i:s');
  42. $cs_belong = $_SESSION['employee_id'];
  43. $cs_state = 1;
  44. $cs_deal = $_POST['cs_deal'] ?? '';
  45. $cs_telformat = numFormat($_POST['cs_tel'] ?? '');
  46. $cs_whatsappformat = numFormat($_POST['cs_whatsapp'] ?? '');
  47. $allowedit = $_POST['Permissions'] ?? '0';
  48. // Validate numeric values
  49. $allowedit = is_numeric($allowedit) ? $allowedit : 0;
  50. $cs_country = (is_numeric($cs_country) && $cs_country !== '') ? $cs_country : 0;
  51. $cs_from = (is_numeric($cs_from) && $cs_from !== '') ? $cs_from : 0;
  52. $cs_deal = (is_numeric($cs_deal) && $cs_deal !== '') ? $cs_deal : 1;
  53. $cs_type = (is_numeric($cs_type) && $cs_type !== '') ? $cs_type : 5;
  54. $cs_belongClient = (is_numeric($cs_belongclient) && $cs_belongclient !== '') ? $cs_belongclient : 0;
  55. $cs_note = htmlEncode($_POST['cs_note'] ?? '');
  56. $mytag = textEncode($_POST['mytag'] ?? '');
  57. $mytag = str_replace(['&#60;&#47;span&#62;&#60;span&#62;', '&#60;&#47;span&#62;', '&#60;span&#62;'], [',', '', ''], $mytag);
  58. $mytag = explode(',', $mytag);
  59. // Auto-detect source from code
  60. if (strpos($cs_code, ';1688') !== false) {
  61. $cs_from = 1; // 1688
  62. }
  63. if (strpos($cs_code, ';阿里') !== false) {
  64. $cs_from = 2; // International station
  65. }
  66. // Validation checks
  67. if ($allowedit != 1) {
  68. // Alibaba validation
  69. if (($cs_from == 1 || $cs_from == 2) && empty($cs_alibaba)) {
  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($cs_tel) && empty($cs_whatsapp) && empty($cs_wechat)) {
  78. echo "<script>alert('电话和WhatsApp为必填项');history.back();</script>";
  79. exit;
  80. }
  81. // Market customer validation
  82. if ($cs_from == 8 && empty($cs_wechat)) {
  83. echo "<script>alert('微信为必填项');history.back();</script>";
  84. exit;
  85. }
  86. // Facebook validation
  87. if ($cs_from == 12 && empty($cs_facebook)) {
  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
  96. $stmt = $conn->prepare("SELECT cs_belong FROM customer WHERE id = ?");
  97. $stmt->bind_param("i", $id);
  98. $stmt->execute();
  99. $result = $stmt->get_result();
  100. if ($row = $result->fetch_assoc()) {
  101. if ($row['cs_belong'] != $cs_belong) {
  102. echo "<script>alert('抱歉,该客户属于另一业务,你没有权限修改');history.back();</script>";
  103. exit;
  104. }
  105. } else {
  106. echo "<script>alert('没有此客户!');history.back();</script>";
  107. exit;
  108. }
  109. }
  110. // Validate customer code
  111. if (empty($cs_code)) {
  112. echo "<script>alert('客户编码不能为空');history.back();</script>";
  113. exit;
  114. }
  115. // Check for duplicate customer information
  116. $checkStr = "SELECT c.*, cc.tel, cc.tel_format, cc.email, cc.whatsapp, cc.whatsapp_format, cc.wechat, cc.linkedin, cc.facebook, cc.alibaba
  117. FROM customer c
  118. LEFT JOIN customer_contact cc ON c.id = cc.customer_id
  119. WHERE c.cs_belong != " . $_SESSION['employee_id'] . " AND (c.id = 0 ";
  120. $Dupli = "";
  121. if (!empty($cs_tel)) {
  122. $checkStr .= " OR cc.tel_format LIKE '%" . substr($cs_telformat, 3, 9) . "%'" .
  123. " OR cc.wechat LIKE '%" . substr($cs_telformat, 3, 9) . "%'" .
  124. " OR cc.whatsapp_format LIKE '%" . $cs_telformat . "%'";
  125. $Dupli .= "电话:" . $cs_tel;
  126. }
  127. if (!empty($cs_email)) {
  128. $checkStr .= " OR cc.email = '" . $conn->real_escape_string($cs_email) . "'";
  129. $Dupli .= "邮箱:" . $cs_email;
  130. }
  131. if (!empty($cs_whatsapp)) {
  132. $checkStr .= " OR cc.whatsapp_format LIKE '%" . substr($cs_whatsappformat, 3, 9) . "%'" .
  133. " OR cc.tel_format LIKE '%" . substr($cs_whatsappformat, 3, 9) . "%'";
  134. $Dupli .= "WhatsApp:" . $cs_whatsapp;
  135. }
  136. if (!empty($cs_wechat)) {
  137. if (strlen($cs_wechat) < 10) {
  138. $checkStr .= " OR cc.wechat LIKE '%" . $conn->real_escape_string($cs_wechat) . "%'" .
  139. " OR cc.tel_format LIKE '%" . $conn->real_escape_string($cs_wechat) . "%'";
  140. } else {
  141. $checkStr .= " OR cc.wechat LIKE '%" . substr($cs_wechat, 2, 12) . "%'" .
  142. " OR cc.tel_format LIKE '%" . substr($cs_wechat, 2, 12) . "%'";
  143. }
  144. $Dupli .= "微信:" . $cs_wechat;
  145. }
  146. if (!empty($cs_linkedin)) {
  147. $checkStr .= " OR cc.linkedin LIKE '%" . $conn->real_escape_string($cs_linkedin) . "%'";
  148. $Dupli .= "Linked:" . $cs_linkedin;
  149. }
  150. if (!empty($cs_facebook)) {
  151. $checkStr .= " OR cc.facebook LIKE '%" . $conn->real_escape_string($cs_facebook) . "%'";
  152. $Dupli .= "Facebook:" . $cs_facebook;
  153. }
  154. if (!empty($cs_alibaba)) {
  155. if (strlen($cs_alibaba) < 10) {
  156. $checkStr .= " OR cc.alibaba LIKE '" . $conn->real_escape_string($cs_alibaba) . "'";
  157. } else {
  158. $checkStr .= " OR cc.alibaba LIKE '%" . substr($cs_alibaba, 3, 12) . "%'";
  159. }
  160. $Dupli .= "阿里旺旺:" . $cs_alibaba;
  161. }
  162. $checkStr .= " ) ORDER BY c.id ASC";
  163. if ($allowedit != 1) {
  164. $result = $conn->query($checkStr);
  165. if ($result && $result->num_rows > 0) {
  166. $row = $result->fetch_assoc();
  167. // Get owner name
  168. $ownerResult = $conn->query("SELECT em_user FROM employee WHERE id = " . $row['cs_belong']);
  169. $ownerRow = $ownerResult->fetch_assoc();
  170. $owner = textUncode($ownerRow['em_user']);
  171. // Determine who entered first
  172. if (strtotime($cs_addtime) > strtotime($row['cs_addtime'])) {
  173. $tstr = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
  174. $_SESSION['employee_name'] . "', '" . getIp() . "', '" . date('Y-m-d H:i:s') . "', '" .
  175. $_SESSION['employee_name'] . "编辑客户\"" . $cs_code . "\",该客户与\"" .
  176. textUncode($row['cs_code']) . "\"高度类似,<br>重复项为:" . $Dupli . "<br>客户由:" .
  177. $_SESSION['employee_name'] . $cs_addtime . "首次录入')";
  178. } else {
  179. $tstr = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
  180. $_SESSION['employee_name'] . "', '" . getIp() . "', '" . date('Y-m-d H:i:s') . "', '" .
  181. $_SESSION['employee_name'] . "编辑客户\"" . $cs_code . "\",该客户与\"" .
  182. textUncode($row['cs_code']) . "\"高度类似,<br>重复项为:" . $Dupli . "<br>客户由:" .
  183. $owner . $row['cs_addtime'] . "首次录入')";
  184. }
  185. $conn->query($tstr);
  186. echo "<script>alert('录入信息\\n与" . $owner . "客户编号:" . textUncode($row['cs_code']) .
  187. "\\n高度类似,未能保存,请联系管理员核实!');history.back();</script>";
  188. exit;
  189. }
  190. }
  191. // Save or update customer data
  192. if ($act == "editSave" || $allowedit == 1) {
  193. $hrefstr = "/customers.php?Keys=" . $keys . "&fliterBusiness=" . $fliterBusiness .
  194. "&fliterDeal=" . $fliterDeal . "&Page=" . $page;
  195. // 更新客户基本信息
  196. $updateSql = "UPDATE customer SET
  197. cs_code='" . $conn->real_escape_string($cs_code) . "',
  198. cs_company='" . $conn->real_escape_string($cs_company) . "',
  199. cs_country=" . $cs_country . ",
  200. cs_from=" . $cs_from . ",
  201. cs_address='" . $conn->real_escape_string($cs_address) . "',
  202. cs_updatetime='" . $cs_updatetime . "',
  203. cs_belong=" . $cs_belong . ",
  204. cs_belongclient=" . $cs_belongClient . ",
  205. cs_state=" . $cs_state . ",
  206. cs_deal=" . $cs_deal . ",
  207. cs_note='" . $conn->real_escape_string($cs_note) . "'";
  208. // 处理cs_dealdate
  209. if ($cs_deal == 3) {
  210. $updateSql .= ", cs_dealdate = CASE WHEN cs_dealdate IS NULL THEN NOW() ELSE cs_dealdate END";
  211. }
  212. $updateSql .= " WHERE id=" . intval($id);
  213. $conn->query($updateSql);
  214. // 检查是否已有联系人记录
  215. $contact_sql = "SELECT id FROM customer_contact WHERE customer_id = " . intval($id);
  216. $contact_result = mysqli_query($conn, $contact_sql);
  217. if ($contact_row = mysqli_fetch_assoc($contact_result)) {
  218. // 更新联系人信息
  219. $contact_id = $contact_row['id'];
  220. $contact_sql = "UPDATE customer_contact SET
  221. contact_name='" . $conn->real_escape_string($cs_name) . "',
  222. tel='" . $conn->real_escape_string($cs_tel) . "',
  223. tel_format='" . $conn->real_escape_string($cs_telformat) . "',
  224. tel_bu='" . $conn->real_escape_string($cs_tel) . "',
  225. email='" . $conn->real_escape_string($cs_email) . "',
  226. email_bu='" . $conn->real_escape_string($cs_email) . "',
  227. whatsapp='" . $conn->real_escape_string($cs_whatsapp) . "',
  228. whatsapp_format='" . $conn->real_escape_string($cs_whatsappformat) . "',
  229. whatsapp_bu='" . $conn->real_escape_string($cs_whatsapp) . "',
  230. wechat='" . $conn->real_escape_string($cs_wechat) . "',
  231. wechat_bu='" . $conn->real_escape_string($cs_wechat) . "',
  232. linkedin='" . $conn->real_escape_string($cs_linkedin) . "',
  233. linkedin_bu='" . $conn->real_escape_string($cs_linkedin) . "',
  234. facebook='" . $conn->real_escape_string($cs_facebook) . "',
  235. facebook_bu='" . $conn->real_escape_string($cs_facebook) . "',
  236. alibaba='" . $conn->real_escape_string($cs_alibaba) . "',
  237. alibaba_bu='" . $conn->real_escape_string($cs_alibaba) . "',
  238. updated_at='" . $cs_updatetime . "'
  239. WHERE id=" . $contact_id;
  240. $conn->query($contact_sql);
  241. } else {
  242. // 插入新的联系人记录
  243. $contact_sql = "INSERT INTO customer_contact (
  244. customer_id, contact_name, tel, tel_format, tel_bu,
  245. email, email_bu, whatsapp, whatsapp_format, whatsapp_bu,
  246. wechat, wechat_bu, linkedin, linkedin_bu, facebook,
  247. facebook_bu, alibaba, alibaba_bu, created_at, updated_at
  248. ) VALUES (
  249. " . intval($id) . ",
  250. '" . $conn->real_escape_string($cs_name) . "',
  251. '" . $conn->real_escape_string($cs_tel) . "',
  252. '" . $conn->real_escape_string($cs_telformat) . "',
  253. '" . $conn->real_escape_string($cs_tel) . "',
  254. '" . $conn->real_escape_string($cs_email) . "',
  255. '" . $conn->real_escape_string($cs_email) . "',
  256. '" . $conn->real_escape_string($cs_whatsapp) . "',
  257. '" . $conn->real_escape_string($cs_whatsappformat) . "',
  258. '" . $conn->real_escape_string($cs_whatsapp) . "',
  259. '" . $conn->real_escape_string($cs_wechat) . "',
  260. '" . $conn->real_escape_string($cs_wechat) . "',
  261. '" . $conn->real_escape_string($cs_linkedin) . "',
  262. '" . $conn->real_escape_string($cs_linkedin) . "',
  263. '" . $conn->real_escape_string($cs_facebook) . "',
  264. '" . $conn->real_escape_string($cs_facebook) . "',
  265. '" . $conn->real_escape_string($cs_alibaba) . "',
  266. '" . $conn->real_escape_string($cs_alibaba) . "',
  267. NOW(),
  268. NOW()
  269. )";
  270. $conn->query($contact_sql);
  271. }
  272. // Update tags
  273. $conn->query("DELETE FROM tagtable WHERE customerId = " . intval($id));
  274. foreach ($mytag as $tag) {
  275. if (!empty(trim($tag))) {
  276. $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" .
  277. $conn->real_escape_string($tag) . "', " .
  278. intval($_SESSION['employee_id']) . ", " .
  279. intval($id) . ")";
  280. $conn->query($tagSql);
  281. }
  282. }
  283. echo "<script>location.href='$hrefstr';</script>";
  284. } else {
  285. // Insert new customer record
  286. $insertSql = "INSERT INTO customer (
  287. cs_code, cs_company, cs_country, cs_from, cs_address,
  288. cs_type, cs_addtime, cs_updatetime, cs_belong, cs_belongClient,
  289. cs_state, cs_deal, cs_note, cs_chain, is_silent, cs_dealdate
  290. ) VALUES (
  291. '" . $conn->real_escape_string($cs_code) . "',
  292. '" . $conn->real_escape_string($cs_company) . "',
  293. " . $cs_country . ",
  294. " . $cs_from . ",
  295. '" . $conn->real_escape_string($cs_address) . "',
  296. " . $cs_type . ",
  297. NOW(),
  298. NOW(),
  299. " . $cs_belong . ",
  300. " . $cs_belongClient . ",
  301. " . $cs_state . ",
  302. " . $cs_deal . ",
  303. '" . $conn->real_escape_string($cs_note) . "',
  304. " . $cs_belong . ",
  305. 0,
  306. " . ($cs_deal == 3 ? "NOW()" : "NULL") . "
  307. )";
  308. $conn->query($insertSql);
  309. $new_customer_id = $conn->insert_id;
  310. // Insert contact information
  311. if ($new_customer_id > 0) {
  312. $contactSql = "INSERT INTO customer_contact (
  313. customer_id, contact_name, tel, tel_format, tel_bu,
  314. email, email_bu, whatsapp, whatsapp_format, whatsapp_bu,
  315. wechat, wechat_bu, linkedin, linkedin_bu, facebook,
  316. facebook_bu, alibaba, alibaba_bu, created_at, updated_at
  317. ) VALUES (
  318. " . $new_customer_id . ",
  319. '" . $conn->real_escape_string($cs_name) . "',
  320. '" . $conn->real_escape_string($cs_tel) . "',
  321. '" . $conn->real_escape_string($cs_telformat) . "',
  322. '" . $conn->real_escape_string($cs_tel) . "',
  323. '" . $conn->real_escape_string($cs_email) . "',
  324. '" . $conn->real_escape_string($cs_email) . "',
  325. '" . $conn->real_escape_string($cs_whatsapp) . "',
  326. '" . $conn->real_escape_string($cs_whatsappformat) . "',
  327. '" . $conn->real_escape_string($cs_whatsapp) . "',
  328. '" . $conn->real_escape_string($cs_wechat) . "',
  329. '" . $conn->real_escape_string($cs_wechat) . "',
  330. '" . $conn->real_escape_string($cs_linkedin) . "',
  331. '" . $conn->real_escape_string($cs_linkedin) . "',
  332. '" . $conn->real_escape_string($cs_facebook) . "',
  333. '" . $conn->real_escape_string($cs_facebook) . "',
  334. '" . $conn->real_escape_string($cs_alibaba) . "',
  335. '" . $conn->real_escape_string($cs_alibaba) . "',
  336. NOW(),
  337. NOW()
  338. )";
  339. $conn->query($contactSql);
  340. // Save tags for new customer
  341. foreach ($mytag as $tag) {
  342. if (!empty(trim($tag))) {
  343. $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" .
  344. $conn->real_escape_string($tag) . "', " .
  345. intval($_SESSION['employee_id']) . ", " .
  346. intval($new_customer_id) . ")";
  347. $conn->query($tagSql);
  348. }
  349. }
  350. }
  351. echo "<script>location.href='customerAdd.php';</script>";
  352. }
  353. ?>
  354. </body>
  355. </html>