Browse Source

fleat: contact 3

igb 3 weeks ago
parent
commit
bcd7180793
2 changed files with 471 additions and 143 deletions
  1. 362 30
      customerAdd.php
  2. 109 113
      customerSave.php

+ 362 - 30
customerAdd.php

@@ -28,7 +28,288 @@ checkLogin();
             upMediaUrl:"upload.php",
             upMediaExt:"wmv,avi,wma,mp3,mid"
         });
+        
+        // Add contact form
+        $('.add-contact-btn').click(function() {
+            var contactsContainer = $('#contacts-container');
+            var contactIndex = contactsContainer.children('.contact-form').length;
+            var contactForm = `
+                <div class="contact-form" id="contact-form-${contactIndex}">
+                    <div class="contact-header">
+                        <button type="button" class="remove-contact-btn" data-index="${contactIndex}">删除</button>
+                        <h3>联系人 #${contactIndex + 1}</h3>
+                    </div>
+                    <input type="hidden" name="contact[${contactIndex}][id]" value="">
+                    <table width="100%" border="0" cellpadding="3" cellspacing="1" class="contact-table">
+                        <tr>
+                            <th width="8%">联系人</th>
+                            <td><input type="text" name="contact[${contactIndex}][contact_name]" class="txt1" placeholder="联系人姓名"/></td>
+                        </tr>
+                    </table>
+                    <div class="contact-methods-container" id="contact-methods-${contactIndex}">
+                        <!-- Contact methods will be added here -->
+                    </div>
+                    <button type="button" class="add-method-btn" data-contact-index="${contactIndex}">添加联系方式</button>
+                </div>
+            `;
+            contactsContainer.append(contactForm);
+        });
+        
+        // Add contact method
+        $(document).on('click', '.add-method-btn', function() {
+            var contactIndex = $(this).data('contact-index');
+            var methodsContainer = $('#contact-methods-' + contactIndex);
+            
+            // Count existing methods by type
+            var methodCounts = {};
+            methodsContainer.find('select.method-select').each(function() {
+                var type = $(this).val();
+                if (type) {
+                    methodCounts[type] = (methodCounts[type] || 0) + 1;
+                }
+            });
+            
+            var methodRow = `
+                <div class="contact-method-row">
+                    <select class="method-select" onchange="updateMethodSelectAndPlaceholder(this)">
+                        <option value="">请选择联系方式</option>
+                        <option value="tel" ${(methodCounts.tel || 0) >= 3 ? 'disabled' : ''}>电话</option>
+                        <option value="wechat" ${(methodCounts.wechat || 0) >= 3 ? 'disabled' : ''}>微信</option>
+                        <option value="whatsapp" ${(methodCounts.whatsapp || 0) >= 3 ? 'disabled' : ''}>WhatsApp</option>
+                        <option value="email" ${(methodCounts.email || 0) >= 3 ? 'disabled' : ''}>邮箱</option>
+                        <option value="linkedin" ${(methodCounts.linkedin || 0) >= 3 ? 'disabled' : ''}>领英</option>
+                        <option value="facebook" ${(methodCounts.facebook || 0) >= 3 ? 'disabled' : ''}>Facebook</option>
+                        <option value="alibaba" ${(methodCounts.alibaba || 0) >= 3 ? 'disabled' : ''}>阿里巴巴</option>
+                    </select>
+                    <input type="text" class="txt1 method-input" style="width:60%;" placeholder="请选择联系方式类型">
+                    <button type="button" class="remove-method-btn">删除</button>
+                </div>
+            `;
+            
+            methodsContainer.append(methodRow);
+            updateMethodFields(methodsContainer.find('.contact-method-row:last-child'));
+        });
+        
+        // Remove contact method
+        $(document).on('click', '.remove-method-btn', function() {
+            var methodRow = $(this).closest('.contact-method-row');
+            var contactIndex = methodRow.closest('.contact-form').attr('id').split('-')[2];
+            var type = methodRow.find('select.method-select').val();
+            methodRow.remove();
+            
+            // Update available options in other selects
+            updateAvailableMethodTypes(contactIndex);
+        });
+
+        // Remove contact
+        $(document).on('click', '.remove-contact-btn', function() {
+            var contactForm = $(this).closest('.contact-form');
+            contactForm.remove();
+            
+            // Renumber remaining contacts
+            $('#contacts-container .contact-form').each(function(index) {
+                $(this).find('h3').text('联系人 #' + (index + 1));
+            });
+        });
+
+        // Add initial contact form if none exists
+        if ($('#contacts-container').children().length === 0) {
+            $('.add-contact-btn').click();
+        }
     });
+
+    // Update method fields based on selection
+    function updateMethodFields(methodRow) {
+        var select = methodRow.find('select.method-select');
+        var input = methodRow.find('input.method-input');
+        var contactForm = methodRow.closest('.contact-form');
+        var contactIndex = contactForm.attr('id').split('-')[2];
+        var type = select.val();
+        
+        if (!type) return;
+        
+        // Count existing methods of this type
+        var count = 1;
+        contactForm.find('select.method-select').each(function() {
+            if ($(this).val() === type && $(this)[0] !== select[0]) {
+                count++;
+            }
+        });
+        
+        // Update field names
+        select.attr('name', `contact[${contactIndex}][${type}_${count}]`);
+        input.attr('name', `contact[${contactIndex}][${type}_${count}]`);
+        
+        // Add format field for tel and whatsapp
+        if (type === 'tel' || type === 'whatsapp') {
+            if (!methodRow.find('.format-input').length) {
+                input.after(`<input type="hidden" class="format-input" name="contact[${contactIndex}][${type}_${count}_format]">`);
+            }
+        }
+        
+        // Add backup field
+        if (!methodRow.find('.backup-input').length) {
+            methodRow.append(`<input type="hidden" class="backup-input" name="contact[${contactIndex}][${type}_${count}_bu]">`);
+        }
+    }
+
+    // Update available method types for a contact
+    function updateAvailableMethodTypes(contactIndex) {
+        var methodsContainer = $('#contact-methods-' + contactIndex);
+        
+        // Count methods by type
+        var methodCounts = {};
+        methodsContainer.find('select.method-select').each(function() {
+            var type = $(this).val();
+            if (type) {
+                methodCounts[type] = (methodCounts[type] || 0) + 1;
+            }
+        });
+        
+        // Update all selects in this contact
+        methodsContainer.find('select.method-select').each(function() {
+            var currentValue = $(this).val();
+            
+            $(this).find('option').each(function() {
+                var optionValue = $(this).val();
+                if (optionValue && optionValue !== currentValue) {
+                    $(this).prop('disabled', (methodCounts[optionValue] || 0) >= 3);
+                }
+            });
+        });
+    }
+
+    // Update placeholder and handle method fields
+    function updateMethodSelectAndPlaceholder(selectElement) {
+        var methodRow = $(selectElement).closest('.contact-method-row');
+        updateMethodPlaceholder(selectElement);
+        updateMethodFields(methodRow);
+        
+        var contactIndex = methodRow.closest('.contact-form').attr('id').split('-')[2];
+        updateAvailableMethodTypes(contactIndex);
+    }
+
+    // Update method placeholder based on selected type
+    function updateMethodPlaceholder(selectElement) {
+        var placeholder = "";
+        var value = $(selectElement).val();
+        
+        switch(value) {
+            case "tel":
+                placeholder = "电话格式:区号+号码 如:+86 15012345678";
+                break;
+            case "wechat":
+                placeholder = "微信";
+                break;
+            case "whatsapp":
+                placeholder = "Whatsapp 格式:区号+号码 如:+86 15012345678";
+                break;
+            case "email":
+                placeholder = "邮件";
+                break;
+            case "linkedin":
+                placeholder = "领英链接";
+                break;
+            case "facebook":
+                placeholder = "Facebook";
+                break;
+            case "alibaba":
+                placeholder = "阿里巴巴";
+                break;
+            default:
+                placeholder = "请选择联系方式类型";
+        }
+        
+        $(selectElement).next('.method-input').attr('placeholder', placeholder);
+    }
+
+    // Custom validation function for multiple contacts form with contact methods
+    function validateMultipleContactsForm() {
+        var clientCode = $("#cs_code").val();
+        var clientCompany = $("#cs_company").val();
+        var clientFrom = $("#cs_from").val();
+        var clientCountry = $("#cs_country").val();
+        
+        // Validate basic customer info
+        if (clientCode == "" || clientCode == null) {
+            alert("客户代码不能为空!");
+            $("#cs_code").focus();
+            return false;
+        }
+        
+        if (clientCountry == 0 || !clientCountry) {
+            alert("这是哪个国家的客户?");
+            return false;
+        }
+        
+        if (clientFrom == "0") {
+            alert("请填写客户来源!");
+            return false;
+        }
+        
+        // Validate that at least one contact has at least one contact method
+        var hasContactMethod = false;
+        var allContactsValid = true;
+        
+        $('.contact-form').each(function(contactIndex) {
+            var $form = $(this);
+            var contactName = $form.find('input[name*="[contact_name]"]').val();
+            var hasMethodInThisContact = false;
+            
+            // Check if this contact has methods
+            $form.find('.contact-method-row').each(function() {
+                var methodType = $(this).find('select.method-select').val();
+                var methodValue = $(this).find('input.method-input').val();
+                
+                if (methodValue) {
+                    hasMethodInThisContact = true;
+                    hasContactMethod = true;
+                }
+                
+                // Check if method type is selected but value is empty
+                if (methodType && !methodValue) {
+                    alert("联系方式类型已选择但值为空");
+                    allContactsValid = false;
+                    return false;
+                }
+            });
+            
+            // If contact has a name but no methods, or has methods but no name
+            if ((contactName && !hasMethodInThisContact) || (!contactName && hasMethodInThisContact)) {
+                alert("联系人 #" + (contactIndex + 1) + " 缺少联系人姓名或联系方式");
+                allContactsValid = false;
+                return false;
+            }
+            
+            // If contact has neither name nor methods, it's an empty contact
+            if (!contactName && !hasMethodInThisContact) {
+                alert("联系人 #" + (contactIndex + 1) + " 是空的,请填写信息或删除此联系人");
+                allContactsValid = false;
+                return false;
+            }
+        });
+        
+        if (!allContactsValid) {
+            return false;
+        }
+        
+        if (!hasContactMethod) {
+            alert("至少需要添加一个联系人,且联系人至少需要一种联系方式!");
+            return false;
+        }
+        
+        // Set tag values
+        $("input#mytag").val($(".taglist").html());
+        
+        return true;
+    }
+
+    // Modified submission function
+    function subform() {
+        if (validateMultipleContactsForm()) {
+            $("#form1").submit();
+        }
+    }
     </script>
     <style>
         body {
@@ -39,12 +320,82 @@ checkLogin();
         #man_zone {
             margin-left: 0;
         }
+        .contact-form {
+            margin-bottom: 10px;
+            /*border: 1px solid #ddd;*/
+            padding: 8px;
+            background-color: #FFFFFF;
+        }
+        .contact-header {
+            display: flex;
+            align-items: center;
+            margin-bottom: 8px;
+            gap: 10px;
+        }
+        .contact-header h3 {
+            margin: 0;
+            order: 2;
+            flex-grow: 1;
+        }
+        .remove-contact-btn {
+            background-color: #f44336;
+            color: white;
+            border: none;
+            padding: 4px 8px;
+            cursor: pointer;
+            order: 1;
+        }
+        .add-contact-btn {
+            background-color: #4CAF50;
+            color: white;
+            border: none;
+            padding: 6px 12px;
+            margin-bottom: 10px;
+            cursor: pointer;
+        }
+        .contact-methods-container {
+            margin-top: 8px;
+        }
+        .contact-method-row {
+            margin-bottom: 6px;
+            padding: 6px;
+            border: 1px solid #eee;
+           /*background-color: #f5f5f5;*/
+            display: flex;
+            align-items: center;
+            gap: 8px;
+        }
+        .add-method-btn {
+            background-color: #2196F3;
+            color: white;
+            border: none;
+            padding: 4px 8px;
+            margin-top: 4px;
+            cursor: pointer;
+        }
+        .remove-method-btn {
+            background-color: #f44336;
+            color: white;
+            border: none;
+            padding: 2px 4px;
+            cursor: pointer;
+        }
+        .method-select {
+            margin-right: 8px;
+            padding: 3px;
+        }
+        .contact-table {
+            margin-bottom: 6px;
+        }
+        .contact-table td, .contact-table th {
+            padding: 4px 6px;
+        }
     </style>
 </head>
 <body class="clear">
 <?php // require_once 'panel.php'; ?>
 <div id="man_zone">
-    <form name="form1" id="form1" method="post" action="customerSave.php<?= $hrefstr ?? '' ?>" onSubmit="return checkInput();">
+    <form name="form1" id="form1" method="post" action="customerSave.php<?= $hrefstr ?? '' ?>">
         <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
             <tbody>
                 <tr>
@@ -58,10 +409,6 @@ checkLogin();
                     <th width="8%">公司名称</th>
                     <td><input type="text" id="cs_company" name="cs_company" value="" class="txt1" /></td>
                 </tr>
-                <tr>
-                    <th width="8%">联系人</th>
-                    <td><input type="text" id="cs_name" name="cs_name" value="" class="txt1" /></td>
-                </tr>
                 <tr>
                     <th width="8%">地区</th>
                     <td>
@@ -103,30 +450,15 @@ checkLogin();
                     </td>
                 </tr>
                 <tr>
-                    <th rowspan="7">联系方式</th>
-                    <td><input type="text" id="cs_tel" name="cs_tel" value="" class="txt1 tel" placeholder="电话格式:区号+号码 如:+86 15012345678" /></td>
-                </tr>
-                <tr>
-                    <td><input type="text" id="cs_wechat" name="cs_wechat" value="" class="txt1 wechat" placeholder="微信"/></td>
-                </tr>
-                <tr>
+                    <th width="8%" valign="top">联系人信息</th>
                     <td>
-                        <input type="text" id="cs_whatsapp" name="cs_whatsapp" value="" class="txt-short2 whatsapp" placeholder="Whatsapp 格式:区号+号码 如:+86 15012345678"/>
-                        <span class="syncphone">同步到电话联方式</span>
+                        <button type="button" class="add-contact-btn">添加联系人</button>
+                        
+                        <div id="contacts-container">
+                            <!-- Contact forms will be added here -->
+                        </div>
                     </td>
                 </tr>
-                <tr>
-                    <td><input type="text" id="cs_email" name="cs_email" value="" class="txt1 mail" placeholder="邮件" /></td>
-                </tr>
-                <tr>
-                    <td><input type="text" id="cs_linkedin" name="cs_linkedin" value="" class="txt1 linkedin" placeholder="领英链接"/></td>
-                </tr>
-                <tr>
-                    <td><input type="text" id="cs_facebook" name="cs_facebook" value="" class="txt1 facebook" placeholder="Facebook" /></td>
-                </tr>
-                <tr>
-                    <td><input type="text" id="cs_alibaba" name="cs_alibaba" value="" class="txt1 alibaba" placeholder="阿里巴巴会员名" /></td>
-                </tr>
                 <tr>
                     <th>地址</th>
                     <td><input type="text" id="cs_address" name="cs_address" value="" class="txt1" /></td>
@@ -172,10 +504,10 @@ checkLogin();
                             <i class="tag">贸易公司</i>,
                             <i class="tag">档口客户</i>
                             <?php
-                            $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagtable WHERE employeeId = ?");
-                            $stmt->bind_param("i", $_SESSION['employee_id']);
-                            $stmt->execute();
-                            $result = $stmt->get_result();
+                            // 将bind_param改为SQL拼接
+                            $employee_id = intval($_SESSION['employee_id']);
+                            $sql = "SELECT DISTINCT tagName FROM tagtable WHERE employeeId = ".$employee_id;
+                            $result = $conn->query($sql);
                             
                             while ($row = $result->fetch_assoc()) {
                                 echo "<i class=\"tag\">" . htmlspecialcharsFix(textUncode($row['tagName'])) . "</i>,";

+ 109 - 113
customerSave.php

@@ -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] . " ";
     }
 }