|
@@ -59,23 +59,22 @@ if (strpos($cs_code, ';阿里') !== false) {
|
|
|
$cs_from = 2; // International station
|
|
|
}
|
|
|
|
|
|
-// For validation, we'll check the first contact (primary contact)
|
|
|
+// Get the first contact for validation (if any)
|
|
|
$primary_contact = !empty($contacts) ? current($contacts) : [];
|
|
|
-$cs_name = textEncode($primary_contact['contact_name'] ?? '');
|
|
|
-$cs_tel = textEncode($primary_contact['tel'] ?? '');
|
|
|
-$cs_wechat = textEncode($primary_contact['wechat'] ?? '');
|
|
|
-$cs_whatsapp = textEncode($primary_contact['whatsapp'] ?? '');
|
|
|
-$cs_email = textEncode($primary_contact['email'] ?? '');
|
|
|
-$cs_linkedin = textEncode($primary_contact['linkedin'] ?? '');
|
|
|
-$cs_facebook = textEncode($primary_contact['facebook'] ?? '');
|
|
|
-$cs_alibaba = textEncode($primary_contact['alibaba'] ?? '');
|
|
|
-$cs_telformat = numFormat($cs_tel);
|
|
|
-$cs_whatsappformat = numFormat($cs_whatsapp);
|
|
|
-
|
|
|
-// Validation checks
|
|
|
+
|
|
|
+// Check contact-specific validation requirements based on source
|
|
|
if ($allowedit != 1) {
|
|
|
+ // Get the first contact's information for validation
|
|
|
+ $contact_name = textEncode($primary_contact['contact_name'] ?? '');
|
|
|
+ $tel_1 = textEncode($primary_contact['tel_1'] ?? '');
|
|
|
+ $wechat_1 = textEncode($primary_contact['wechat_1'] ?? '');
|
|
|
+ $whatsapp_1 = textEncode($primary_contact['whatsapp_1'] ?? '');
|
|
|
+ $email_1 = textEncode($primary_contact['email_1'] ?? '');
|
|
|
+ $alibaba_1 = textEncode($primary_contact['alibaba_1'] ?? '');
|
|
|
+ $facebook_1 = textEncode($primary_contact['facebook_1'] ?? '');
|
|
|
+
|
|
|
// Alibaba validation
|
|
|
- if (($cs_from == 1 || $cs_from == 2) && empty($cs_alibaba)) {
|
|
|
+ if (($cs_from == 1 || $cs_from == 2) && empty($alibaba_1)) {
|
|
|
echo "<script>alert('阿里旺旺为必填项');history.back();</script>";
|
|
|
exit;
|
|
|
}
|
|
@@ -85,19 +84,19 @@ if ($allowedit != 1) {
|
|
|
$cs_from = 3;
|
|
|
}
|
|
|
|
|
|
- if ($cs_from == 3 && empty($cs_tel) && empty($cs_whatsapp) && empty($cs_wechat)) {
|
|
|
+ if ($cs_from == 3 && empty($tel_1) && empty($whatsapp_1) && empty($wechat_1)) {
|
|
|
echo "<script>alert('电话和WhatsApp为必填项');history.back();</script>";
|
|
|
exit;
|
|
|
}
|
|
|
|
|
|
// Market customer validation
|
|
|
- if ($cs_from == 8 && empty($cs_wechat)) {
|
|
|
+ if ($cs_from == 8 && empty($wechat_1)) {
|
|
|
echo "<script>alert('微信为必填项');history.back();</script>";
|
|
|
exit;
|
|
|
}
|
|
|
|
|
|
// Facebook validation
|
|
|
- if ($cs_from == 12 && empty($cs_facebook)) {
|
|
|
+ if ($cs_from == 12 && empty($facebook_1)) {
|
|
|
echo "<script>alert('Facebook为必填项');history.back();</script>";
|
|
|
exit;
|
|
|
}
|
|
@@ -107,11 +106,10 @@ if ($allowedit != 1) {
|
|
|
$act = empty($id) || !is_numeric($id) ? 'addSave' : 'editSave';
|
|
|
|
|
|
if ($act === 'editSave') {
|
|
|
- // Verify customer ownership
|
|
|
- $stmt = $conn->prepare("SELECT cs_belong FROM customer WHERE id = ?");
|
|
|
- $stmt->bind_param("i", $id);
|
|
|
- $stmt->execute();
|
|
|
- $result = $stmt->get_result();
|
|
|
+ // Verify customer ownership - 将bind_param改为SQL拼接
|
|
|
+ $id = intval($id); // 确保ID是整数,防止SQL注入
|
|
|
+ $sql = "SELECT cs_belong FROM customer WHERE id = " . $id;
|
|
|
+ $result = $conn->query($sql);
|
|
|
|
|
|
if ($row = $result->fetch_assoc()) {
|
|
|
if ($row['cs_belong'] != $cs_belong) {
|
|
@@ -138,111 +136,109 @@ $checkStr = "SELECT c.*, cc.*
|
|
|
|
|
|
$Dupli = "";
|
|
|
|
|
|
-// Get the first contact's information for validation
|
|
|
-$primary_contact = !empty($contacts) ? current($contacts) : [];
|
|
|
-
|
|
|
-// Check all phone numbers
|
|
|
-for ($i = 1; $i <= 3; $i++) {
|
|
|
- $tel_field = 'tel_' . $i;
|
|
|
- $tel_format_field = 'tel_' . $i . '_format';
|
|
|
- if (!empty($primary_contact[$tel_field])) {
|
|
|
- $tel_format = numFormat($primary_contact[$tel_field]);
|
|
|
- $checkStr .= " OR cc.tel_1_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
- " OR cc.tel_2_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
- " OR cc.tel_3_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
- " OR cc.wechat_1 LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
- " OR cc.wechat_2 LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
- " OR cc.wechat_3 LIKE '%" . substr($tel_format, 3, 9) . "%'";
|
|
|
- $Dupli .= "电话" . $i . ":" . $primary_contact[$tel_field] . " ";
|
|
|
+// Check all contacts for duplicates
|
|
|
+foreach ($contacts as $contact) {
|
|
|
+ // Check all phone numbers
|
|
|
+ for ($i = 1; $i <= 3; $i++) {
|
|
|
+ $tel_field = 'tel_' . $i;
|
|
|
+ if (!empty($contact[$tel_field])) {
|
|
|
+ $tel_format = numFormat($contact[$tel_field]);
|
|
|
+ $checkStr .= " OR cc.tel_1_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.tel_2_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.tel_3_format LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.wechat_1 LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.wechat_2 LIKE '%" . substr($tel_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.wechat_3 LIKE '%" . substr($tel_format, 3, 9) . "%'";
|
|
|
+ $Dupli .= "电话" . $i . ":" . $contact[$tel_field] . " ";
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-// Check all email addresses
|
|
|
-for ($i = 1; $i <= 3; $i++) {
|
|
|
- $email_field = 'email_' . $i;
|
|
|
- if (!empty($primary_contact[$email_field])) {
|
|
|
- $checkStr .= " OR cc.email_1 = '" . $conn->real_escape_string($primary_contact[$email_field]) . "'" .
|
|
|
- " OR cc.email_2 = '" . $conn->real_escape_string($primary_contact[$email_field]) . "'" .
|
|
|
- " OR cc.email_3 = '" . $conn->real_escape_string($primary_contact[$email_field]) . "'";
|
|
|
- $Dupli .= "邮箱" . $i . ":" . $primary_contact[$email_field] . " ";
|
|
|
+ // Check all email addresses
|
|
|
+ for ($i = 1; $i <= 3; $i++) {
|
|
|
+ $email_field = 'email_' . $i;
|
|
|
+ if (!empty($contact[$email_field])) {
|
|
|
+ $checkStr .= " OR cc.email_1 = '" . $conn->real_escape_string($contact[$email_field]) . "'" .
|
|
|
+ " OR cc.email_2 = '" . $conn->real_escape_string($contact[$email_field]) . "'" .
|
|
|
+ " OR cc.email_3 = '" . $conn->real_escape_string($contact[$email_field]) . "'";
|
|
|
+ $Dupli .= "邮箱" . $i . ":" . $contact[$email_field] . " ";
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-// Check all WhatsApp numbers
|
|
|
-for ($i = 1; $i <= 3; $i++) {
|
|
|
- $whatsapp_field = 'whatsapp_' . $i;
|
|
|
- $whatsapp_format_field = 'whatsapp_' . $i . '_format';
|
|
|
- if (!empty($primary_contact[$whatsapp_field])) {
|
|
|
- $whatsapp_format = numFormat($primary_contact[$whatsapp_field]);
|
|
|
- $checkStr .= " OR cc.whatsapp_1_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
- " OR cc.whatsapp_2_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
- " OR cc.whatsapp_3_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
- " OR cc.tel_1_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
- " OR cc.tel_2_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
- " OR cc.tel_3_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'";
|
|
|
- $Dupli .= "WhatsApp" . $i . ":" . $primary_contact[$whatsapp_field] . " ";
|
|
|
+ // Check all WhatsApp numbers
|
|
|
+ for ($i = 1; $i <= 3; $i++) {
|
|
|
+ $whatsapp_field = 'whatsapp_' . $i;
|
|
|
+ if (!empty($contact[$whatsapp_field])) {
|
|
|
+ $whatsapp_format = numFormat($contact[$whatsapp_field]);
|
|
|
+ $checkStr .= " OR cc.whatsapp_1_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.whatsapp_2_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.whatsapp_3_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.tel_1_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.tel_2_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'" .
|
|
|
+ " OR cc.tel_3_format LIKE '%" . substr($whatsapp_format, 3, 9) . "%'";
|
|
|
+ $Dupli .= "WhatsApp" . $i . ":" . $contact[$whatsapp_field] . " ";
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-// Check all WeChat accounts
|
|
|
-for ($i = 1; $i <= 3; $i++) {
|
|
|
- $wechat_field = 'wechat_' . $i;
|
|
|
- if (!empty($primary_contact[$wechat_field])) {
|
|
|
- if (strlen($primary_contact[$wechat_field]) < 10) {
|
|
|
- $checkStr .= " OR cc.wechat_1 LIKE '%" . $conn->real_escape_string($primary_contact[$wechat_field]) . "%'" .
|
|
|
- " OR cc.wechat_2 LIKE '%" . $conn->real_escape_string($primary_contact[$wechat_field]) . "%'" .
|
|
|
- " OR cc.wechat_3 LIKE '%" . $conn->real_escape_string($primary_contact[$wechat_field]) . "%'" .
|
|
|
- " OR cc.tel_1_format LIKE '%" . $conn->real_escape_string($primary_contact[$wechat_field]) . "%'" .
|
|
|
- " OR cc.tel_2_format LIKE '%" . $conn->real_escape_string($primary_contact[$wechat_field]) . "%'" .
|
|
|
- " OR cc.tel_3_format LIKE '%" . $conn->real_escape_string($primary_contact[$wechat_field]) . "%'";
|
|
|
- } else {
|
|
|
- $checkStr .= " OR cc.wechat_1 LIKE '%" . substr($primary_contact[$wechat_field], 2, 12) . "%'" .
|
|
|
- " OR cc.wechat_2 LIKE '%" . substr($primary_contact[$wechat_field], 2, 12) . "%'" .
|
|
|
- " OR cc.wechat_3 LIKE '%" . substr($primary_contact[$wechat_field], 2, 12) . "%'" .
|
|
|
- " OR cc.tel_1_format LIKE '%" . substr($primary_contact[$wechat_field], 2, 12) . "%'" .
|
|
|
- " OR cc.tel_2_format LIKE '%" . substr($primary_contact[$wechat_field], 2, 12) . "%'" .
|
|
|
- " OR cc.tel_3_format LIKE '%" . substr($primary_contact[$wechat_field], 2, 12) . "%'";
|
|
|
+ // Check all WeChat accounts
|
|
|
+ for ($i = 1; $i <= 3; $i++) {
|
|
|
+ $wechat_field = 'wechat_' . $i;
|
|
|
+ if (!empty($contact[$wechat_field])) {
|
|
|
+ if (strlen($contact[$wechat_field]) < 10) {
|
|
|
+ $checkStr .= " OR cc.wechat_1 LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
|
|
|
+ " OR cc.wechat_2 LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
|
|
|
+ " OR cc.wechat_3 LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
|
|
|
+ " OR cc.tel_1_format LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
|
|
|
+ " OR cc.tel_2_format LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'" .
|
|
|
+ " OR cc.tel_3_format LIKE '%" . $conn->real_escape_string($contact[$wechat_field]) . "%'";
|
|
|
+ } else {
|
|
|
+ $checkStr .= " OR cc.wechat_1 LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
|
|
|
+ " OR cc.wechat_2 LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
|
|
|
+ " OR cc.wechat_3 LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
|
|
|
+ " OR cc.tel_1_format LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
|
|
|
+ " OR cc.tel_2_format LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'" .
|
|
|
+ " OR cc.tel_3_format LIKE '%" . substr($contact[$wechat_field], 2, 12) . "%'";
|
|
|
+ }
|
|
|
+ $Dupli .= "微信" . $i . ":" . $contact[$wechat_field] . " ";
|
|
|
}
|
|
|
- $Dupli .= "微信" . $i . ":" . $primary_contact[$wechat_field] . " ";
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-// Check all LinkedIn accounts
|
|
|
-for ($i = 1; $i <= 3; $i++) {
|
|
|
- $linkedin_field = 'linkedin_' . $i;
|
|
|
- if (!empty($primary_contact[$linkedin_field])) {
|
|
|
- $checkStr .= " OR cc.linkedin_1 LIKE '%" . $conn->real_escape_string($primary_contact[$linkedin_field]) . "%'" .
|
|
|
- " OR cc.linkedin_2 LIKE '%" . $conn->real_escape_string($primary_contact[$linkedin_field]) . "%'" .
|
|
|
- " OR cc.linkedin_3 LIKE '%" . $conn->real_escape_string($primary_contact[$linkedin_field]) . "%'";
|
|
|
- $Dupli .= "LinkedIn" . $i . ":" . $primary_contact[$linkedin_field] . " ";
|
|
|
+ // Check all LinkedIn accounts
|
|
|
+ for ($i = 1; $i <= 3; $i++) {
|
|
|
+ $linkedin_field = 'linkedin_' . $i;
|
|
|
+ if (!empty($contact[$linkedin_field])) {
|
|
|
+ $checkStr .= " OR cc.linkedin_1 LIKE '%" . $conn->real_escape_string($contact[$linkedin_field]) . "%'" .
|
|
|
+ " OR cc.linkedin_2 LIKE '%" . $conn->real_escape_string($contact[$linkedin_field]) . "%'" .
|
|
|
+ " OR cc.linkedin_3 LIKE '%" . $conn->real_escape_string($contact[$linkedin_field]) . "%'";
|
|
|
+ $Dupli .= "LinkedIn" . $i . ":" . $contact[$linkedin_field] . " ";
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-// Check all Facebook accounts
|
|
|
-for ($i = 1; $i <= 3; $i++) {
|
|
|
- $facebook_field = 'facebook_' . $i;
|
|
|
- if (!empty($primary_contact[$facebook_field])) {
|
|
|
- $checkStr .= " OR cc.facebook_1 LIKE '%" . $conn->real_escape_string($primary_contact[$facebook_field]) . "%'" .
|
|
|
- " OR cc.facebook_2 LIKE '%" . $conn->real_escape_string($primary_contact[$facebook_field]) . "%'" .
|
|
|
- " OR cc.facebook_3 LIKE '%" . $conn->real_escape_string($primary_contact[$facebook_field]) . "%'";
|
|
|
- $Dupli .= "Facebook" . $i . ":" . $primary_contact[$facebook_field] . " ";
|
|
|
+ // Check all Facebook accounts
|
|
|
+ for ($i = 1; $i <= 3; $i++) {
|
|
|
+ $facebook_field = 'facebook_' . $i;
|
|
|
+ if (!empty($contact[$facebook_field])) {
|
|
|
+ $checkStr .= " OR cc.facebook_1 LIKE '%" . $conn->real_escape_string($contact[$facebook_field]) . "%'" .
|
|
|
+ " OR cc.facebook_2 LIKE '%" . $conn->real_escape_string($contact[$facebook_field]) . "%'" .
|
|
|
+ " OR cc.facebook_3 LIKE '%" . $conn->real_escape_string($contact[$facebook_field]) . "%'";
|
|
|
+ $Dupli .= "Facebook" . $i . ":" . $contact[$facebook_field] . " ";
|
|
|
+ }
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-// Check all Alibaba accounts
|
|
|
-for ($i = 1; $i <= 3; $i++) {
|
|
|
- $alibaba_field = 'alibaba_' . $i;
|
|
|
- if (!empty($primary_contact[$alibaba_field])) {
|
|
|
- if (strlen($primary_contact[$alibaba_field]) < 10) {
|
|
|
- $checkStr .= " OR cc.alibaba_1 LIKE '" . $conn->real_escape_string($primary_contact[$alibaba_field]) . "'" .
|
|
|
- " OR cc.alibaba_2 LIKE '" . $conn->real_escape_string($primary_contact[$alibaba_field]) . "'" .
|
|
|
- " OR cc.alibaba_3 LIKE '" . $conn->real_escape_string($primary_contact[$alibaba_field]) . "'";
|
|
|
- } else {
|
|
|
- $checkStr .= " OR cc.alibaba_1 LIKE '%" . substr($primary_contact[$alibaba_field], 3, 12) . "%'" .
|
|
|
- " OR cc.alibaba_2 LIKE '%" . substr($primary_contact[$alibaba_field], 3, 12) . "%'" .
|
|
|
- " OR cc.alibaba_3 LIKE '%" . substr($primary_contact[$alibaba_field], 3, 12) . "%'";
|
|
|
+ // Check all Alibaba accounts
|
|
|
+ for ($i = 1; $i <= 3; $i++) {
|
|
|
+ $alibaba_field = 'alibaba_' . $i;
|
|
|
+ if (!empty($contact[$alibaba_field])) {
|
|
|
+ if (strlen($contact[$alibaba_field]) < 10) {
|
|
|
+ $checkStr .= " OR cc.alibaba_1 LIKE '" . $conn->real_escape_string($contact[$alibaba_field]) . "'" .
|
|
|
+ " OR cc.alibaba_2 LIKE '" . $conn->real_escape_string($contact[$alibaba_field]) . "'" .
|
|
|
+ " OR cc.alibaba_3 LIKE '" . $conn->real_escape_string($contact[$alibaba_field]) . "'";
|
|
|
+ } else {
|
|
|
+ $checkStr .= " OR cc.alibaba_1 LIKE '%" . substr($contact[$alibaba_field], 3, 12) . "%'" .
|
|
|
+ " OR cc.alibaba_2 LIKE '%" . substr($contact[$alibaba_field], 3, 12) . "%'" .
|
|
|
+ " OR cc.alibaba_3 LIKE '%" . substr($contact[$alibaba_field], 3, 12) . "%'";
|
|
|
+ }
|
|
|
+ $Dupli .= "阿里旺旺" . $i . ":" . $contact[$alibaba_field] . " ";
|
|
|
}
|
|
|
- $Dupli .= "阿里旺旺" . $i . ":" . $primary_contact[$alibaba_field] . " ";
|
|
|
}
|
|
|
}
|
|
|
|