Explorar el Código

fleat: update customersave

igb hace 6 días
padre
commit
5ba95a6e9b
Se han modificado 2 ficheros con 39 adiciones y 1 borrados
  1. 18 0
      customerAdd.php
  2. 21 1
      customerEdit.php

+ 18 - 0
customerAdd.php

@@ -249,8 +249,15 @@ checkLogin();
             return false;
         }
         
+        // Get source text to check if it's from Alibaba platforms
+        var clientFromText = $("#cs_from option:selected").text();
+        var isAlibabaSource = clientFromText.indexOf("1688") >= 0 || 
+                             clientFromText.indexOf("阿里") >= 0 || 
+                             clientFromText.indexOf("alibaba") >= 0;
+        
         // Validate that at least one contact has at least one contact method
         var hasContactMethod = false;
+        var hasAlibabaContact = false;
         var allContactsValid = true;
         var phoneRegex = /^\+\d{1,4}\s\d{5,}$/; // Regex to validate phone format: +[country code] [number]
         var emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; // Regex to validate email format
@@ -268,6 +275,11 @@ checkLogin();
                 if (methodValue) {
                     hasMethodInThisContact = true;
                     hasContactMethod = true;
+                    
+                    // Check if there's an Alibaba contact method
+                    if (methodType === 'alibaba') {
+                        hasAlibabaContact = true;
+                    }
                 }
                 
                 // Check if method type is selected but value is empty
@@ -322,6 +334,12 @@ checkLogin();
             return false;
         }
         
+        // If source is from Alibaba platforms, must have Alibaba contact method
+        if (isAlibabaSource && !hasAlibabaContact) {
+            alert("客户来源为1688或阿里国际站时,必须添加至少一个阿里巴巴联系方式!");
+            return false;
+        }
+        
         // Set tag values
         $("input#mytag").val($(".taglist").html());
         

+ 21 - 1
customerEdit.php

@@ -298,7 +298,7 @@ if (!empty($id) && is_numeric($id)) {
         var clientCompany = $("#cs_company").val();
         var clientFrom = $("#cs_from").val();
         var clientCountry = $("#cs_country").val();
-        
+
         // Validate basic customer info
         if (clientCode == "" || clientCode == null) {
             alert("客户代码不能为空!");
@@ -318,8 +318,16 @@ if (!empty($id) && is_numeric($id)) {
             return false;
         }
         
+        // Get source text to check if it's from Alibaba platforms
+        var clientFromText = $("#cs_from option:selected").text();
+        var isAlibabaSource = clientFromText.indexOf("1688") >= 0 || 
+                             clientFromText.indexOf("阿里") >= 0 || 
+                             clientFromText.indexOf("alibaba") >= 0;
+
+        
         // Validate that at least one contact has at least one contact method
         var hasContactMethod = false;
+        var hasAlibabaContact = false;
         var allContactsValid = true;
         var phoneRegex = /^\+\d{1,4}\s\d{5,}$/; // Regex to validate phone format: +[country code] [number]
         var emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; // Regex to validate email format
@@ -337,6 +345,11 @@ if (!empty($id) && is_numeric($id)) {
                 if (methodValue) {
                     hasMethodInThisContact = true;
                     hasContactMethod = true;
+                    
+                    // Check if there's an Alibaba contact method
+                    if (methodType === 'alibaba') {
+                        hasAlibabaContact = true;
+                    }
                 }
                 
                 // Check if method type is selected but value is empty
@@ -391,6 +404,12 @@ if (!empty($id) && is_numeric($id)) {
             return false;
         }
         
+        // If source is from Alibaba platforms, must have Alibaba contact method
+        if (isAlibabaSource && !hasAlibabaContact) {
+            alert("客户来源为1688或阿里国际站时,必须添加至少一个阿里巴巴联系方式!");
+            return false;
+        }
+        
         // Set tag values
         $("input#mytag").val($(".taglist").html());
         
@@ -423,6 +442,7 @@ if (!empty($id) && is_numeric($id)) {
     // Modified submission function
     function submitCustomerForm() {
         if (validateMultipleContactsForm()) {
+
             $("#form1").submit();
         }
     }