Browse Source

fleat: customer add

igb 2 days ago
parent
commit
0d7cc7f428
4 changed files with 50 additions and 8 deletions
  1. 7 1
      customerAdd.php
  2. 15 2
      customerEdit.php
  3. 27 4
      customerSave.php
  4. 1 1
      panel.php

+ 7 - 1
customerAdd.php

@@ -247,6 +247,12 @@ checkLogin();
             return false;
         }
         
+        // Validate that at least one business type is selected
+        if (!$('input[name="cs_type[]"]:checked').length) {
+            alert("请至少选择一种业务类型!");
+            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 || 
@@ -509,7 +515,7 @@ checkLogin();
                         <?php
                         $result = $conn->query("SELECT id, businessType FROM clienttype");
                         while ($row = $result->fetch_assoc()) {
-                            echo "<input type=\"radio\" name=\"cs_type\" value=\"{$row['id']}\" id=\"fortype{$row['id']}\">
+                            echo "<input type=\"checkbox\" name=\"cs_type[]\" value=\"{$row['id']}\" id=\"fortype{$row['id']}\">
                                   <label for=\"fortype{$row['id']}\">{$row['businessType']}</label>";
                         }
                         ?>

+ 15 - 2
customerEdit.php

@@ -573,6 +573,12 @@ if (!empty($id) && is_numeric($id)) {
             return false;
         }
         
+        // Validate that at least one business type is selected
+        if (!$('input[name="cs_type[]"]:checked').length) {
+            alert("请至少选择一种业务类型!");
+            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 || 
@@ -1258,10 +1264,17 @@ if (!empty($id) && is_numeric($id)) {
                     <th>业务类型</th>
                     <td>
                         <?php
+                        // 获取当前客户的业务类型
+                        $selected_types = [];
+                        $type_result = $conn->query("SELECT business_type_id FROM customer_business_type WHERE customer_id = " . intval($id));
+                        while ($type_row = $type_result->fetch_assoc()) {
+                            $selected_types[] = $type_row['business_type_id'];
+                        }
+                        
                         $result = $conn->query("SELECT id, businessType FROM clienttype");
                         while ($row = $result->fetch_assoc()) {
-                            $checked = ($row['id'] == $customer['cs_type']) ? ' checked="checked"' : '';
-                            echo "<input type=\"radio\" name=\"cs_type\" value=\"{$row['id']}\" id=\"fortype{$row['id']}\"$checked>
+                            $checked = in_array($row['id'], $selected_types) ? ' checked="checked"' : '';
+                            echo "<input type=\"checkbox\" name=\"cs_type[]\" value=\"{$row['id']}\" id=\"fortype{$row['id']}\"$checked>
                                   <label for=\"fortype{$row['id']}\">{$row['businessType']}</label>";
                         }
                         ?>

+ 27 - 4
customerSave.php

@@ -26,7 +26,7 @@ $cs_company = textEncode($_POST['cs_company'] ?? '');
 $cs_country = $_POST['cs_country'] ?? '';
 $cs_from = $_POST['cs_from'] ?? '';
 $cs_address = textEncode($_POST['cs_address'] ?? '');
-$cs_type = textEncode($_POST['cs_type'] ?? '');
+$cs_type = $_POST['cs_type'] ?? []; // Changed to array for multi-select
 $cs_belongclient = $_POST['cs_belongclient'] ?? '';
 $cs_addtime = $_POST['cs_addtime'] ?? '';
 $cs_updatetime = date('Y-m-d H:i:s');
@@ -43,7 +43,6 @@ $allowedit = is_numeric($allowedit) ? $allowedit : 0;
 $cs_country = (is_numeric($cs_country) && $cs_country !== '') ? $cs_country : 0;
 $cs_from = (is_numeric($cs_from) && $cs_from !== '') ? $cs_from : 0;
 $cs_deal = (is_numeric($cs_deal) && $cs_deal !== '') ? $cs_deal : 1;
-$cs_type = (is_numeric($cs_type) && $cs_type !== '') ? $cs_type : 5;
 $cs_belongClient = (is_numeric($cs_belongclient) && $cs_belongclient !== '') ? $cs_belongclient : 0;
 
 $cs_note = htmlEncode($_POST['cs_note'] ?? '');
@@ -698,6 +697,20 @@ if ($act == "editSave" || $allowedit == 1) {
 
     $conn->query($updateSql);
     
+    // 处理业务类型 - 先删除已有的业务类型
+    $conn->query("DELETE FROM customer_business_type WHERE customer_id = " . intval($id));
+    
+    // 添加新的业务类型
+    if (!empty($cs_type) && is_array($cs_type)) {
+        foreach ($cs_type as $type_id) {
+            $type_id = intval($type_id);
+            if ($type_id > 0) {
+                $conn->query("INSERT INTO customer_business_type (customer_id, business_type_id) 
+                             VALUES (" . intval($id) . ", " . $type_id . ")");
+            }
+        }
+    }
+    
     // 处理联系人信息 - 首先删除已有的不在提交列表中的联系人
     $existingContactIds = [];
     foreach ($contacts as $contact) {
@@ -795,7 +808,7 @@ if ($act == "editSave" || $allowedit == 1) {
     // Insert new customer record
     $insertSql = "INSERT INTO customer (
         cs_code, cs_company, cs_country, cs_from, cs_address,
-        cs_type, cs_addtime, cs_updatetime, cs_belong, cs_belongClient, 
+        cs_addtime, cs_updatetime, cs_belong, cs_belongClient, 
         cs_state, cs_deal, cs_note, cs_chain, is_silent, cs_dealdate
     ) VALUES (
         '" . $conn->real_escape_string($cs_code) . "',
@@ -803,7 +816,6 @@ if ($act == "editSave" || $allowedit == 1) {
         " . $cs_country . ",
         " . $cs_from . ",
         '" . $conn->real_escape_string($cs_address) . "',
-        " . $cs_type . ",
         NOW(),
         NOW(),
         " . $cs_belong . ",
@@ -819,6 +831,17 @@ if ($act == "editSave" || $allowedit == 1) {
     $conn->query($insertSql);
     $new_customer_id = $conn->insert_id;
     
+    // Insert business types for new customer
+    if ($new_customer_id > 0 && !empty($cs_type) && is_array($cs_type)) {
+        foreach ($cs_type as $type_id) {
+            $type_id = intval($type_id);
+            if ($type_id > 0) {
+                $conn->query("INSERT INTO customer_business_type (customer_id, business_type_id) 
+                             VALUES (" . $new_customer_id . ", " . $type_id . ")");
+            }
+        }
+    }
+    
     // Insert contact information for all contacts
     if ($new_customer_id > 0) {
         foreach ($contacts as $contact) {

+ 1 - 1
panel.php

@@ -43,7 +43,7 @@ $stmt->close();
                 <dt><a href="../home.php" target="contentFrame">客户查找</a></dt>
             <?php endif; ?>
             <dt><a href="../customerAdd.php" target="contentFrame">客户录入</a></dt>
-            <dt><a href="relationships.php" target="contentFrame">客户关系</a></dt>
+            <!-- <dt><a href="relationships.php" target="contentFrame">客户关系</a></dt> -->
             <dt><a href="../order.php" target="contentFrame">订单管理</a></dt>
             <dt id="myCustomer" class="subnav">我的客户
                 <div class="list-wraper">