Browse Source

fleat:update table name

igb 3 weeks ago
parent
commit
72dc39a2de

+ 1 - 1
abnormal.php

@@ -108,7 +108,7 @@ if ($result && $result->num_rows > 0) {
             </div>
             <div class="col6">
                 <?php
-                $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id = " . $row['cs_type']);
+                $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id = " . $row['cs_type']);
                 if ($typeRow = $typeResult->fetch_assoc()) {
                     echo $typeRow['businessType'];
                 } else {

+ 3 - 3
bindTag.php

@@ -12,7 +12,7 @@ if (!is_numeric($cid) || !is_numeric($eid)) {
 
 $tagvalue = urldecode($_GET['tagvalue'] ?? '');
 
-$sql = "SELECT * FROM tagTable WHERE customerId = " . $conn->real_escape_string($cid) . 
+$sql = "SELECT * FROM tagtable WHERE customerId = " . $conn->real_escape_string($cid) . 
        " AND employeeId = " . $conn->real_escape_string($eid) . 
        " AND tagName = '" . $conn->real_escape_string($tagvalue) . "'";
 
@@ -20,12 +20,12 @@ $result = $conn->query($sql);
 
 if ($result && $result->num_rows > 0) {
     // Tag exists, delete it
-    $sql = "DELETE FROM tagTable WHERE customerId = " . $conn->real_escape_string($cid) . 
+    $sql = "DELETE FROM tagtable WHERE customerId = " . $conn->real_escape_string($cid) . 
            " AND employeeId = " . $conn->real_escape_string($eid) . 
            " AND tagName = '" . $conn->real_escape_string($tagvalue) . "'";
 } else {
     // Tag doesn't exist, add it
-    $sql = "INSERT INTO tagTable (tagName, employeeId, customerId) VALUES ('" . 
+    $sql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" . 
            $conn->real_escape_string($tagvalue) . "', " . 
            $conn->real_escape_string($eid) . ", " . 
            $conn->real_escape_string($cid) . ")";

+ 2 - 2
claimCustomer.php

@@ -56,7 +56,7 @@ if ($reachedLimit) {
         $conn->query($updateSql);
         
         // Insert claim record
-        $insertSql = "INSERT INTO claimRecord (oldCode, originalEmp, newEmp, cs_id, claimTime, isread) 
+        $insertSql = "INSERT INTO claimrecord (oldCode, originalEmp, newEmp, cs_id, claimTime, isread) 
                      VALUES (
                          '" . $conn->real_escape_string($oldCode) . "',
                          '" . $conn->real_escape_string($originalEmp) . "',
@@ -68,7 +68,7 @@ if ($reachedLimit) {
         $conn->query($insertSql);
         
         // Delete tags
-        $conn->query("DELETE FROM tagTable WHERE customerId = " . $cid);
+        $conn->query("DELETE FROM tagtable WHERE customerId = " . $cid);
         
         echo "1";
     }

+ 1 - 1
claimRecord.php

@@ -97,7 +97,7 @@ switch ($searcheType) {
         </tr>
         <tbody>
 <?php
-$sql = "SELECT * FROM claimRecord " . $filterStr . " ORDER BY claimTime DESC";
+$sql = "SELECT * FROM claimrecord " . $filterStr . " ORDER BY claimTime DESC";
 $result = $conn->query($sql);
 
 if ($result && $result->num_rows > 0) {

+ 2 - 2
customerAdd.php

@@ -135,7 +135,7 @@ checkLogin();
                     <th>业务类型</th>
                     <td>
                         <?php
-                        $result = $conn->query("SELECT id, businessType FROM clientType");
+                        $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']}\">
                                   <label for=\"fortype{$row['id']}\">{$row['businessType']}</label>";
@@ -172,7 +172,7 @@ checkLogin();
                             <i class="tag">贸易公司</i>,
                             <i class="tag">档口客户</i>
                             <?php
-                            $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagTable WHERE employeeId = ?");
+                            $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagtable WHERE employeeId = ?");
                             $stmt->bind_param("i", $_SESSION['employee_id']);
                             $stmt->execute();
                             $result = $stmt->get_result();

+ 3 - 3
customerEdit.php

@@ -195,7 +195,7 @@ if (!empty($id) && is_numeric($id)) {
                     <th>业务类型</th>
                     <td>
                         <?php
-                        $result = $conn->query("SELECT id, businessType FROM clientType");
+                        $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>
@@ -237,7 +237,7 @@ if (!empty($id) && is_numeric($id)) {
                     <td>
                         <div class="taglist">
                             <?php
-                            $stmt = $conn->prepare("SELECT id, tagName FROM tagTable WHERE customerId = ?");
+                            $stmt = $conn->prepare("SELECT id, tagName FROM tagtable WHERE customerId = ?");
                             $stmt->bind_param("i", $id);
                             $stmt->execute();
                             $result = $stmt->get_result();
@@ -254,7 +254,7 @@ if (!empty($id) && is_numeric($id)) {
                             <i class="tag">贸易公司</i>,
                             <i class="tag">档口客户</i>
                             <?php
-                            $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagTable WHERE employeeId = ?");
+                            $stmt = $conn->prepare("SELECT DISTINCT tagName FROM tagtable WHERE employeeId = ?");
                             $stmt->bind_param("i", $_SESSION['employee_id']);
                             $stmt->execute();
                             $result = $stmt->get_result();

+ 5 - 5
customerSave.php

@@ -193,13 +193,13 @@ if ($allowedit != 1) {
         
         // Determine who entered first
         if (strtotime($cs_addtime) > strtotime($row['cs_addtime'])) {
-            $tstr = "INSERT INTO logRecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
+            $tstr = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
                    $_SESSION['employee_name'] . "', '" . getIp() . "', '" . date('Y-m-d H:i:s') . "', '" .
                    $_SESSION['employee_name'] . "编辑客户\"" . $cs_code . "\",该客户与\"" . 
                    textUncode($row['cs_code']) . "\"高度类似,<br>重复项为:" . $Dupli . "<br>客户由:" .
                    $_SESSION['employee_name'] . $cs_addtime . "首次录入')";
         } else {
-            $tstr = "INSERT INTO logRecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
+            $tstr = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES ('" .
                    $_SESSION['employee_name'] . "', '" . getIp() . "', '" . date('Y-m-d H:i:s') . "', '" .
                    $_SESSION['employee_name'] . "编辑客户\"" . $cs_code . "\",该客户与\"" . 
                    textUncode($row['cs_code']) . "\"高度类似,<br>重复项为:" . $Dupli . "<br>客户由:" .
@@ -253,10 +253,10 @@ if ($act == "editSave" || $allowedit == 1) {
     $conn->query($updateSql);
 
     // Update tags
-    $conn->query("DELETE FROM tagTable WHERE customerId = " . intval($id));
+    $conn->query("DELETE FROM tagtable WHERE customerId = " . intval($id));
     foreach ($mytag as $tag) {
         if (!empty(trim($tag))) {
-            $tagSql = "INSERT INTO tagTable (tagName, employeeId, customerId) VALUES ('" . 
+            $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" . 
                      $conn->real_escape_string($tag) . "', " . 
                      intval($_SESSION['employee_id']) . ", " . 
                      intval($id) . ")";
@@ -316,7 +316,7 @@ if ($act == "editSave" || $allowedit == 1) {
     // Save tags for new customer
     foreach ($mytag as $tag) {
         if (!empty(trim($tag))) {
-            $tagSql = "INSERT INTO tagTable (tagName, employeeId, customerId) VALUES ('" . 
+            $tagSql = "INSERT INTO tagtable (tagName, employeeId, customerId) VALUES ('" . 
                      $conn->real_escape_string($tag) . "', " . 
                      intval($_SESSION['employee_id']) . ", " . 
                      intval($id) . ")";

+ 3 - 3
customers.php

@@ -100,7 +100,7 @@ if ($act == "edit") {
     
     if ($isedit) {
         $sql = "SELECT c.*, n.c_code FROM customer c 
-                LEFT JOIN myNote n ON c.cs_code = n.c_code 
+                LEFT JOIN mynote n ON c.cs_code = n.c_code 
                 WHERE c.id = $id";
         $result = mysqli_query($conn, $sql);
         if ($row = mysqli_fetch_assoc($result)) {
@@ -353,7 +353,7 @@ $hrefstr = "?keys=" . $keys;
             <select name="fliterBusiness" class="filterSearch">
                 <option value="">请选择</option>
                 <?php
-                $result = $conn->query("SELECT id, businessType FROM clientType");
+                $result = $conn->query("SELECT id, businessType FROM clienttype");
                 while ($row = $result->fetch_assoc()) {
                     $selected = ($filters['Business'] == $row['id']) ? ' selected' : '';
                     echo "<option value=\"{$row['id']}\"$selected>{$row['businessType']}</option>";
@@ -459,7 +459,7 @@ $hrefstr = "?keys=" . $keys;
                     </div>
                     <div class="col6">
                         <?php
-                        $clientType = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                        $clientType = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                         echo $clientType->num_rows > 0 ? $clientType->fetch_assoc()['businessType'] : '未填写';
                         ?>
                     </div>

+ 2 - 2
customersFollow.php

@@ -148,7 +148,7 @@ $hrefstr = "?keys=" . $keys;
             <select name="fliterBusiness" class="filterSearch">
                 <option value="">请选择</option>
                 <?php
-                $result = $conn->query("SELECT id, businessType FROM clientType");
+                $result = $conn->query("SELECT id, businessType FROM clienttype");
                 while ($row = $result->fetch_assoc()) {
                     $selected = ($filterBusiness == $row['id']) ? ' selected="selected"' : '';
                     echo "<option value=\"{$row['id']}\"{$selected}>{$row['businessType']}</option>";
@@ -249,7 +249,7 @@ if ($result && $result->num_rows > 0) {
             </div>
             <div class="col6">
                 <?php
-                $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                 echo ($typeRow = $typeResult->fetch_assoc()) ? htmlspecialcharsFix($typeRow['businessType']) : '未填写';
                 ?>
             </div>

+ 2 - 2
customersNew.php

@@ -148,7 +148,7 @@ $hrefstr = "?keys=" . $keys;
             <select name="fliterBusiness" class="filterSearch">
                 <option value="">请选择</option>
                 <?php
-                $result = $conn->query("SELECT id, businessType FROM clientType");
+                $result = $conn->query("SELECT id, businessType FROM clienttype");
                 while ($row = $result->fetch_assoc()) {
                     $selected = ($filterBusiness == $row['id']) ? ' selected="selected"' : '';
                     echo "<option value=\"{$row['id']}\"{$selected}>{$row['businessType']}</option>";
@@ -251,7 +251,7 @@ if ($result && $result->num_rows > 0) {
             </div>
             <div class="col6">
                 <?php
-                $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                 echo ($typeRow = $typeResult->fetch_assoc()) ? htmlspecialcharsFix($typeRow['businessType']) : '未填写';
                 ?>
             </div>

+ 1 - 1
dashboard.php

@@ -105,7 +105,7 @@ checkLogin("信息管理");
         $data_arr1 = [];
         $text_arr1 = [];
         $result = mysqli_query($conn, "SELECT businessType, COUNT(DISTINCT cs_code) as cc FROM customer 
-                                     LEFT JOIN clientType ON customer.cs_type=clientType.id 
+                                     LEFT JOIN clienttype ON customer.cs_type=clientType.id 
                                      GROUP BY businessType");
         while($row = mysqli_fetch_assoc($result)) {
             $data_arr1[] = number_format($row['cc']/$tn, 4);

+ 1 - 1
editTag.php

@@ -8,7 +8,7 @@ $newtag = $_GET['newtag'] ?? '';
 $originaltag = textEncode(urldecode($originaltag));
 $newtag = textEncode(urldecode($newtag));
 
-$sql = "UPDATE tagTable SET tagName='" . $conn->real_escape_string($newtag) . "' 
+$sql = "UPDATE tagtable SET tagName='" . $conn->real_escape_string($newtag) . "' 
         WHERE tagName='" . $conn->real_escape_string($originaltag) . "' 
         AND employeeId=" . $_SESSION['employee_id'];
 

+ 2 - 2
highSeas.php

@@ -111,7 +111,7 @@ $hrefstr = "?keys=" . $keys;
             <select name="fliterBusiness" class="filterSearch">
                 <option value="">请选择</option>
                 <?php
-                $result = $conn->query("SELECT id, businessType FROM clientType");
+                $result = $conn->query("SELECT id, businessType FROM clienttype");
                 while ($row = $result->fetch_assoc()) {
                     $selected = ($filterBusiness == $row['id']) ? ' selected="selected"' : '';
                     echo "<option value=\"{$row['id']}\"{$selected}>{$row['businessType']}</option>";
@@ -204,7 +204,7 @@ if ($result && $result->num_rows > 0) {
             </div>
             <div class="col6">
                 <?php
-                $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                 echo ($typeRow = $typeResult->fetch_assoc()) ? htmlspecialcharsFix($typeRow['businessType']) : '未填写';
                 ?>
             </div>

+ 2 - 2
home.php

@@ -64,7 +64,7 @@ checkLogin();
 $sql = "SELECT cs_code, em_user, cs_claimdate FROM customer 
         LEFT JOIN employee ON customer.cs_belong = employee.id 
         WHERE customer.id IN (
-            SELECT cs_id FROM claimRecord 
+            SELECT cs_id FROM claimrecord 
             WHERE isread = 0 AND originalEmp = ?
         )";
 
@@ -98,7 +98,7 @@ if ($result->num_rows > 0) {
 }
 
 // Update claim records
-$update_sql = "UPDATE claimRecord SET isread = 1 
+$update_sql = "UPDATE claimrecord SET isread = 1 
                WHERE originalEmp = ? AND isread = 0";
 $update_stmt = $conn->prepare($update_sql);
 $update_stmt->bind_param("s", $_SESSION['employee_name']);

+ 2 - 2
index.php

@@ -5,7 +5,7 @@ $ip = getIp();
 $act = $_GET['act'] ?? '';
 
 if ($act == "logout") {
-    $stmt = $conn->prepare("INSERT INTO logRecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
+    $stmt = $conn->prepare("INSERT INTO logrecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
     $loginAct = $_SESSION['employee_name'] . " " . date('Y-m-d H:i:s') . "从" . $ip . "退出系统";
     $stmt->bind_param("sss", $_SESSION['employee_name'], date('Y-m-d H:i:s'), $loginAct);
     $stmt->execute();
@@ -125,7 +125,7 @@ if ($act == "login") {
 
     // 记录登录日志
     $date=date('Y-m-d H:i:s');
-    $stmt = $conn->prepare("INSERT INTO logRecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
+    $stmt = $conn->prepare("INSERT INTO logrecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
     $loginAct = $_SESSION['employee_name'] . " " . date('Y-m-d H:i:s') . "从" . $ip . "登录";
     $stmt->bind_param("sss", $_SESSION['employee_name'],$date , $loginAct);
     $stmt->execute();

+ 2 - 2
index_not_html.php

@@ -5,7 +5,7 @@ $IP = getIp();
 $Act = $_GET['act'] ?? '';
 
 if ($Act == "logout") {
-    $stmt = $conn->prepare("INSERT INTO logRecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
+    $stmt = $conn->prepare("INSERT INTO logrecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
     $logAct = $_SESSION['employee_name'] . " " . date('Y-m-d H:i:s') . "从" . $IP . "退出系统";
     $stmt->bind_param("sss", $_SESSION['employee_name'], date('Y-m-d H:i:s'), $logAct);
     $stmt->execute();
@@ -120,7 +120,7 @@ if ($Act == "login") {
     }
 
     // 记录登录日志
-    $stmt = $conn->prepare("INSERT INTO logRecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
+    $stmt = $conn->prepare("INSERT INTO logrecord (loginName, loginTime, loginAct) VALUES (?, ?, ?)");
     $logAct = $_SESSION['employee_name'] . " " . date('Y-m-d H:i:s') . "从" . $IP . "登录";
     $stmt->bind_param("sss", $_SESSION['employee_name'], date('Y-m-d H:i:s'), $logAct);
     $stmt->execute();

+ 3 - 3
nullTag.php

@@ -3,7 +3,7 @@ require_once 'conn.php';
 checkLogin();
 
 $tagStr = "";
-$result = $conn->query("SELECT DISTINCT tagName FROM tagTable WHERE employeeId=" . $_SESSION['employee_id']);
+$result = $conn->query("SELECT DISTINCT tagName FROM tagtable WHERE employeeId=" . $_SESSION['employee_id']);
 while ($row = $result->fetch_assoc()) {
     $tagStr .= "<span>" . htmlspecialcharsFix($row['tagName']) . "</span>,";
 }
@@ -52,7 +52,7 @@ $sqlStr = "SELECT id, cs_code, cs_from, cs_country, cs_type, cs_deal, cs_addtime
            cs_whatsapp, cs_wechat, cs_linkedin, cs_facebook, cs_alibaba, cs_note 
            FROM customer 
            WHERE cs_belong=" . $_SESSION['employee_id'] . " 
-           AND id NOT IN (SELECT customerId FROM tagTable)";
+           AND id NOT IN (SELECT customerId FROM tagtable)";
 
 $result = $conn->query($sqlStr);
 $tempNum = 0;
@@ -77,7 +77,7 @@ while ($row = $result->fetch_assoc()) {
             </div>
             <div class="col6">
                 <?php
-                $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                 echo ($typeRow = $typeResult->fetch_assoc()) ? htmlspecialcharsFix($typeRow['businessType']) : '未填写';
                 ?>
             </div>

+ 1 - 1
price.php

@@ -46,7 +46,7 @@ checkLogin();
                 <select name="fliterproduct" id="fliterproduct">
                     <option value="">请选择产品</option>
                     <?php
-                    $result = $conn->query("SELECT id, ProductName FROM Products");
+                    $result = $conn->query("SELECT id, ProductName FROM products");
                     while ($row = $result->fetch_assoc()) {
                         echo "<option value=\"{$row['id']}\">{$row['ProductName']}</option>";
                     }

+ 2 - 2
quantitySearch.php

@@ -6,7 +6,7 @@ $product = $_GET['productId'] ?? '';
 $country = $_GET['country'] ?? '';
 $str = "";
 
-$result = $conn->query("SELECT ProductName, ProductImg, unit, moq, tips FROM Products WHERE id=" . (int)$product);
+$result = $conn->query("SELECT ProductName, ProductImg, unit, moq, tips FROM products WHERE id=" . (int)$product);
 if ($row = $result->fetch_assoc()) {
     $productname = $row['ProductName'];
     $productImg = $row['ProductImg'];
@@ -18,7 +18,7 @@ if ($row = $result->fetch_assoc()) {
 }
 
 // Check if product can be sold in the region
-$result = $conn->query("SELECT * FROM Products WHERE (nosale LIKE '" . $conn->real_escape_string($country) . "%' 
+$result = $conn->query("SELECT * FROM products WHERE (nosale LIKE '" . $conn->real_escape_string($country) . "%' 
                         OR nosale LIKE '%," . $conn->real_escape_string($country) . ",%' 
                         OR nosale LIKE '%" . $conn->real_escape_string($country) . "') 
                         AND Id=" . (int)$product);

+ 2 - 2
silentCustomer.php

@@ -149,7 +149,7 @@ $hrefstr = "?keys=" . $keys;
                 <select name="fliterBusiness" class="filterSearch">
                     <option value="">请选择</option>
                     <?php
-                    $result = $conn->query("SELECT id, businessType FROM clientType");
+                    $result = $conn->query("SELECT id, businessType FROM clienttype");
                     while ($row = $result->fetch_assoc()) {
                         $selected = ($filterBusiness == $row['id']) ? ' selected="selected"' : '';
                         echo "<option value=\"{$row['id']}\"{$selected}>{$row['businessType']}</option>";
@@ -252,7 +252,7 @@ if ($result && $result->num_rows > 0) {
             </div>
             <div class="col10">
                 <?php
-                $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                 echo ($typeRow = $typeResult->fetch_assoc()) ? htmlspecialcharsFix($typeRow['businessType']) : '未填写';
                 ?>
             </div>

+ 3 - 3
subCustomers.php

@@ -22,7 +22,7 @@ if ($act == 'postchk') {
                     WHERE id IN " . $sqlStr;
         }
         
-        $deleteTag = "DELETE FROM tagTable WHERE customerId IN " . $sqlStr;
+        $deleteTag = "DELETE FROM tagtable WHERE customerId IN " . $sqlStr;
         
         $conn->query($sql);
         $conn->query($deleteTag);
@@ -148,7 +148,7 @@ $hrefstr = "?keys=" . $keys;
                 <select name="fliterBusiness" class="filterSearch">
                     <option value="">请选择</option>
                     <?php
-                    $result = $conn->query("SELECT id, businessType FROM clientType");
+                    $result = $conn->query("SELECT id, businessType FROM clienttype");
                     while ($row = $result->fetch_assoc()) {
                         $selected = ($filterBusiness == $row['id']) ? ' selected="selected"' : '';
                         echo "<option value=\"{$row['id']}\"{$selected}>{$row['businessType']}</option>";
@@ -251,7 +251,7 @@ if ($result && $result->num_rows > 0) {
             </div>
             <div class="col6">
                 <?php
-                $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                 echo ($typeRow = $typeResult->fetch_assoc()) ? htmlspecialcharsFix($typeRow['businessType']) : '未填写';
                 ?>
             </div>

+ 1 - 1
subTag.php

@@ -33,7 +33,7 @@ checkLogin();
         <h1 class="tagCloundHead2"><?= htmlspecialcharsFix($row['em_user']) ?>的客户画像:</h1>
         <div class="tagArea">
         <?php
-        $tagResult = $conn->query("SELECT tagName, COUNT(id) as count FROM tagTable WHERE employeeId=" . (int)$row['id'] . " GROUP BY tagName");
+        $tagResult = $conn->query("SELECT tagName, COUNT(id) as count FROM tagtable WHERE employeeId=" . (int)$row['id'] . " GROUP BY tagName");
         while ($tagRow = $tagResult->fetch_assoc()) {
         ?>
             <a href="subTag.php?employeeId=<?= $row['id'] ?>&tagName=<?= urlencode($tagRow['tagName']) ?>"><?= htmlspecialcharsFix($tagRow['tagName']) ?>(<?= $tagRow['count'] ?>)</a>

+ 2 - 2
subTagClound.php

@@ -30,8 +30,8 @@ checkLogin();
         <div class="tagArea">
         <?php
         $result = $conn->query("SELECT tagName, COUNT(DISTINCT cs_code) as count 
-                               FROM tagTable 
-                               LEFT JOIN customer ON tagTable.customerId=customer.id 
+                               FROM tagtable 
+                               LEFT JOIN customer ON tagtable.customerId=customer.id 
                                WHERE employeeId=" . $_SESSION['employee_id'] . " 
                                GROUP BY tagName");
         

+ 8 - 8
system/IP.php

@@ -14,19 +14,19 @@ if ($act == "save") {
     $IPAddress = textEncode($_POST['IPAddress']);
 
     if ($isedit) {
-        $sql = "SELECT * FROM allowIp WHERE id = ?";
+        $sql = "SELECT * FROM allowip WHERE id = ?";
         $stmt = $conn->prepare($sql);
         $stmt->bind_param("i", $id);
         $stmt->execute();
         $result = $stmt->get_result();
         
         if ($result->num_rows > 0) {
-            $sql = "UPDATE allowIp SET IPAddress = ? WHERE id = ?";
+            $sql = "UPDATE allowip SET IPAddress = ? WHERE id = ?";
             $stmt = $conn->prepare($sql);
             $stmt->bind_param("si", $IPAddress, $id);
             $stmt->execute();
         } else {
-            $sql = "INSERT INTO allowIp (IPAddress) VALUES (?)";
+            $sql = "INSERT INTO allowip (IPAddress) VALUES (?)";
             $stmt = $conn->prepare($sql);
             $stmt->bind_param("s", $IPAddress);
             $stmt->execute();
@@ -38,7 +38,7 @@ if ($act == "save") {
         header("Location: ?keys=$keys&Ord=$ord&Page=$page");
         exit;
     } else {
-        $sql = "INSERT INTO allowIp (IPAddress) VALUES (?)";
+        $sql = "INSERT INTO allowip (IPAddress) VALUES (?)";
         $stmt = $conn->prepare($sql);
         $stmt->bind_param("s", $IPAddress);
         $stmt->execute();
@@ -55,7 +55,7 @@ if ($act == "postchk") {
     
     if (isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
         $ids = array_map('intval', $_POST['chkbox']);
-        $sql = "DELETE FROM allowIp WHERE id IN (" . implode(',', array_fill(0, count($ids), '?')) . ")";
+        $sql = "DELETE FROM allowip WHERE id IN (" . implode(',', array_fill(0, count($ids), '?')) . ")";
         $types = str_repeat('i', count($ids));
         $stmt = $conn->prepare($sql);
         $stmt->bind_param($types, ...$ids);
@@ -88,7 +88,7 @@ if ($act == "add" || $act == "edit") {
     
     if ($id != "" && is_numeric($id)) {
         $isedit = true;
-        $sql = "SELECT * FROM allowIp WHERE id = ?";
+        $sql = "SELECT * FROM allowip WHERE id = ?";
         $stmt = $conn->prepare($sql);
         $stmt->bind_param("i", $id);
         $stmt->execute();
@@ -133,7 +133,7 @@ $ord = $_GET['Ord'] ?? '';
 $page = $_GET['Page'] ?? '';
 
 // Get total count first
-$sql = "SELECT COUNT(*) as total FROM allowIp WHERE IPAddress LIKE ?";
+$sql = "SELECT COUNT(*) as total FROM allowip WHERE IPAddress LIKE ?";
 $stmt = $conn->prepare($sql);
 $search = '%' . $keyscode . '%';
 $stmt->bind_param("s", $search);
@@ -155,7 +155,7 @@ if ($page > $total_pages) $page = $total_pages;
 $start = ($page - 1) * $records_per_page;
 
 // Get paginated results
-$sql = "SELECT * FROM allowIp WHERE IPAddress LIKE ? ORDER BY id DESC LIMIT ?, ?";
+$sql = "SELECT * FROM allowip WHERE IPAddress LIKE ? ORDER BY id DESC LIMIT ?, ?";
 $stmt = $conn->prepare($sql);
 $stmt->bind_param("sii", $search, $start, $records_per_page);
 $stmt->execute();

+ 1 - 1
system/Searchproduct.php

@@ -4,7 +4,7 @@ checkLogin("信息管理");
 
 $str = textEncode($_GET['str'] ?? '');
 
-$sql = "select id,ProductImg,ProductName,unit from Products where productName like '%" . $str . "%'";
+$sql = "select id,ProductImg,ProductName,unit from products where productName like '%" . $str . "%'";
 $rs = $conn->query($sql);
 
 while ($row = $rs->fetch_assoc()) {

+ 2 - 2
system/country.php

@@ -127,7 +127,7 @@ if ($act == "add" || $act == "edit") {
                 <td>
                 <div class="prowapper">             
                     <?php
-                    $sql = "SELECT id, ProductName, ProductImg, unit FROM Products WHERE id IN (SELECT productId FROM price WHERE AreaId = $id)";
+                    $sql = "SELECT id, ProductName, ProductImg, unit FROM products WHERE id IN (SELECT productId FROM price WHERE AreaId = $id)";
                     $result = $conn->query($sql);
                     while ($row = $result->fetch_assoc()) {
                     ?>
@@ -137,7 +137,7 @@ if ($act == "add" || $act == "edit") {
                             <div class="propic"><img src="<?= htmlspecialcharsFix($row['ProductImg']) ?>"></div>      
                             <div class="proprice">
                                 <?php
-                                $sql2 = "SELECT num, price FROM Price WHERE productId = {$row['id']} AND AreaId = $id ORDER BY num ASC";
+                                $sql2 = "SELECT num, price FROM price WHERE productId = {$row['id']} AND AreaId = $id ORDER BY num ASC";
                                 $result2 = $conn->query($sql2);
                                 while ($row2 = $result2->fetch_assoc()) {
                                 ?>

+ 2 - 2
system/customers.php

@@ -151,7 +151,7 @@ if ($act == "edit" || $act == "add") {
         
         $sql = "SELECT c.*, n.c_code 
                 FROM customer c 
-                LEFT JOIN myNote n ON c.cs_code = n.c_code 
+                LEFT JOIN mynote n ON c.cs_code = n.c_code 
                 WHERE c.id=$id";
         $result = $conn->query($sql);
         
@@ -294,7 +294,7 @@ if ($act == "edit" || $act == "add") {
                 <td>
                     <?php
                     if($isEdit ?? false) {
-                        $sql = "SELECT id,tagName FROM tagTable WHERE customerId = ?";
+                        $sql = "SELECT id,tagName FROM tagtable WHERE customerId = ?";
                         $stmt = $conn->prepare($sql);
                         $stmt->bind_param("i", $id);
                         $stmt->execute();

+ 1 - 1
system/dashboard.php

@@ -94,7 +94,7 @@ checkLogin("信息管理");
         $data_arr1 = [];
         $text_arr1 = [];
         $result = mysqli_query($conn, "SELECT businessType, COUNT(DISTINCT cs_code) as cc FROM customer 
-                                     LEFT JOIN clientType ON customer.cs_type=clientType.id 
+                                     LEFT JOIN clienttype ON customer.cs_type=clientType.id 
                                      GROUP BY businessType");
         while($row = mysqli_fetch_assoc($result)) {
             $data_arr1[] = number_format($row['cc']/$tn, 4);

+ 1 - 1
system/log.php

@@ -11,7 +11,7 @@ $keyscode = isset($_GET['Keys']) ? htmlspecialcharsFix($_GET['Keys']) : '';
 
 // Prepare the SQL query with proper escaping
 $search_term = mysqli_real_escape_string($conn, $keyscode);
-$sql = "SELECT * FROM logRecord WHERE loginAct LIKE '%$search_term%' ORDER BY id DESC";
+$sql = "SELECT * FROM logrecord WHERE loginAct LIKE '%$search_term%' ORDER BY id DESC";
 $result = mysqli_query($conn, $sql);
 
 // Get total records for pagination

+ 4 - 4
system/products.php

@@ -34,7 +34,7 @@ if ($act == 'save') {
     
     if ($is_edit) {
         // Update existing product
-        $sql = "UPDATE Products SET 
+        $sql = "UPDATE products SET 
                 ProductName = '" . mysqli_real_escape_string($conn, $product_name) . "',
                 ProductImg = '" . mysqli_real_escape_string($conn, $product_img) . "',
                 Addtime = NOW(),
@@ -62,7 +62,7 @@ if ($act == 'save') {
         }
     } else {
         // Insert new product
-        $sql = "INSERT INTO Products (ProductName, ProductImg, Addtime, unit, moq, nosale, note, tips) 
+        $sql = "INSERT INTO products (ProductName, ProductImg, Addtime, unit, moq, nosale, note, tips) 
                 VALUES (
                     '" . mysqli_real_escape_string($conn, $product_name) . "',
                     '" . mysqli_real_escape_string($conn, $product_img) . "',
@@ -146,7 +146,7 @@ if ($act == 'add' || $act == 'edit') {
     
     if ($is_edit) {
         $sql = "SELECT ProductName, ProductImg, unit, moq, nosale, note, tips 
-                FROM Products WHERE id = " . $id;
+                FROM products WHERE id = " . $id;
         $result = mysqli_query($conn, $sql);
         if ($row = mysqli_fetch_assoc($result)) {
             $product_name = htmlspecialchars($row['ProductName']);
@@ -273,7 +273,7 @@ if ($act == 'add' || $act == 'edit') {
     <?php
 } else {
     // Display product list
-    $sql = "SELECT id, ProductName, ProductImg FROM Products ORDER BY id DESC";
+    $sql = "SELECT id, ProductName, ProductImg FROM products ORDER BY id DESC";
     $result = mysqli_query($conn, $sql);
     $total_records = mysqli_num_rows($result);
     $records_per_page = 18;

+ 4 - 4
tag.php

@@ -22,7 +22,7 @@ if ($act == 'postchk') {
                      cs_belong=" . (int)$chkact . ",
                      cs_chain=CONCAT(cs_chain,'," . (int)$chkact . "') 
                      WHERE id IN " . $sqlStr;
-        $deleteTag = "DELETE FROM tagTable WHERE customerId IN " . $sqlStr;
+        $deleteTag = "DELETE FROM tagtable WHERE customerId IN " . $sqlStr;
         
         $conn->query($updateStr);
         $conn->query($deleteTag);
@@ -34,7 +34,7 @@ if ($act == 'postchk') {
 
 // Get all tags for the current employee
 $tagStr = '';
-$result = $conn->query("SELECT DISTINCT tagName FROM tagTable WHERE employeeId=" . $_SESSION['employee_id']);
+$result = $conn->query("SELECT DISTINCT tagName FROM tagtable WHERE employeeId=" . $_SESSION['employee_id']);
 while ($row = $result->fetch_assoc()) {
     $tagStr .= "<span>" . htmlspecialcharsFix($row['tagName']) . "</span>,";
 }
@@ -83,7 +83,7 @@ while ($row = $result->fetch_assoc()) {
                       cs_whatsapp, cs_wechat, cs_linkedin, cs_facebook, cs_alibaba, cs_note 
                       FROM customer 
                       WHERE cs_belong=" . $_SESSION['employee_id'] . " 
-                      AND id IN (SELECT customerId FROM tagTable WHERE tagName='" . $conn->real_escape_string($tagName) . "')";
+                      AND id IN (SELECT customerId FROM tagtable WHERE tagName='" . $conn->real_escape_string($tagName) . "')";
 
             $result = $conn->query($sqlStr);
             $tempNum = 0;
@@ -139,7 +139,7 @@ while ($row = $result->fetch_assoc()) {
                     <div class="coltag mytag" data-id="<?= $row['id'] ?>" data-em="<?= $_SESSION['employee_id'] ?>">
                         <?php
                         $tagStr1 = $tagStr;
-                        $tagResult = $conn->query("SELECT tagName FROM tagTable WHERE customerId=" . $row['id']);
+                        $tagResult = $conn->query("SELECT tagName FROM tagtable WHERE customerId=" . $row['id']);
                         while ($tagRow = $tagResult->fetch_assoc()) {
                             $tagStr1 = str_replace(
                                 "<span>" . htmlspecialcharsFix($tagRow['tagName']) . "</span>",

+ 2 - 2
tagClound.php

@@ -30,8 +30,8 @@ checkLogin();
         <div class="tagArea">
         <?php
         $result = $conn->query("SELECT tagName, COUNT(DISTINCT cs_code) as count 
-                               FROM tagTable 
-                               LEFT JOIN customer ON tagTable.customerId=customer.id 
+                               FROM tagtable 
+                               LEFT JOIN customer ON tagtable.customerId=customer.id 
                                WHERE employeeId=" . $_SESSION['employee_id'] . " 
                                GROUP BY tagName");
         

+ 2 - 2
teamSeas.php

@@ -118,7 +118,7 @@ if ($_SESSION['em_role'] == 0) {
                 <select name="fliterBusiness" class="filterSearch">
                     <option value="">请选择</option>
                     <?php
-                    $result = $conn->query("SELECT id, businessType FROM clientType");
+                    $result = $conn->query("SELECT id, businessType FROM clienttype");
                     while ($row = $result->fetch_assoc()) {
                         $selected = ($filterBusiness == $row['id']) ? ' selected="selected"' : '';
                         echo "<option value=\"{$row['id']}\"{$selected}>" . htmlspecialcharsFix($row['businessType']) . "</option>";
@@ -213,7 +213,7 @@ if ($_SESSION['em_role'] == 0) {
                         </div>
                         <div class="col6">
                             <?php
-                            $typeResult = $conn->query("SELECT businessType FROM clientType WHERE id=" . (int)$row['cs_type']);
+                            $typeResult = $conn->query("SELECT businessType FROM clienttype WHERE id=" . (int)$row['cs_type']);
                             echo ($typeRow = $typeResult->fetch_assoc()) ? htmlspecialcharsFix($typeRow['businessType']) : '未填写';
                             ?>
                         </div>