Преглед на файлове

fleat: update system country

igb преди 3 седмици
родител
ревизия
691c20a0f9
променени са 3 файла, в които са добавени 88 реда и са изтрити 36 реда
  1. 6 2
      system/Searchproduct.php
  2. 14 5
      system/country.php
  3. 68 29
      system/js/Searchproduct.js

+ 6 - 2
system/Searchproduct.php

@@ -4,15 +4,19 @@ checkLogin("信息管理");
 
 $str = textEncode($_GET['str'] ?? '');
 
-$sql = "select id,ProductImg,ProductName,unit from products where productName like '%" . $str . "%'";
+$sql = "SELECT p.id, p.ProductImg, p.ProductName, p.unit, p.category_id, pc.name as categoryName
+        FROM products p
+        LEFT JOIN product_categories pc ON p.category_id = pc.id
+        WHERE p.productName LIKE '%" . $str . "%'";
 $rs = $conn->query($sql);
 
 while ($row = $rs->fetch_assoc()) {
+    $categoryDisplay = !empty($row['categoryName']) ? ' <span style="color:#888;font-size:12px;">['.$row['categoryName'].']</span>' : '';
 ?>
     <li data-id="<?php echo $row['id']; ?>" data-unit="<?php echo $row['unit']; ?>">
         <div class="list-content">
             <div class="pic"><img src="<?php echo $row['ProductImg']; ?>" ></div>
-            <div class="name"><?php echo $row['ProductName']; ?></div>
+            <div class="name"><?php echo $row['ProductName']; ?><?php echo $categoryDisplay; ?></div>
         </div>
     </li>
 <?php

+ 14 - 5
system/country.php

@@ -34,7 +34,11 @@ if ($act == "save") {
     $countryCode = $_POST['countryCode'] ?? '';
 
     if ($isedit) {
-        $sql = "UPDATE country SET addtime=NOW() WHERE id=$id";
+        $sql = "UPDATE country SET 
+            countryName = '" . $conn->real_escape_string($countryName) . "', 
+            countryCode = '" . $conn->real_escape_string($countryCode) . "', 
+            addtime = NOW() 
+            WHERE id = $id";
         $conn->query($sql);
         
         // Delete all existing prices for this area
@@ -124,11 +128,11 @@ if ($act == "add" || $act == "edit") {
         <tbody>
             <tr>
                 <th width="8%">国家</th>
-                <td><input type="text" id="countryName" name="countryName" <?= $isedit ? 'readonly' : '' ?> value="<?= htmlspecialcharsFix($countryName) ?>" class="txt1" /><input type="hidden" name="id" value="<?= $id ?>" /></td>
+                <td><input type="text" id="countryName" name="countryName" value="<?= htmlspecialcharsFix($countryName) ?>" class="txt1" /><input type="hidden" name="id" value="<?= $id ?>" /></td>
             </tr>
             <tr>
                 <th width="8%">区号</th>
-                <td><input type="text" id="countryCode" name="countryCode" <?= $isedit ? 'readonly' : '' ?> value="<?= htmlspecialcharsFix($countryCode) ?>" class="txt1" /></td>
+                <td><input type="text" id="countryCode" name="countryCode" value="<?= htmlspecialcharsFix($countryCode) ?>" class="txt1" /></td>
             </tr>
             <tr>
                 <th width="8%">更新日期</th>
@@ -140,14 +144,19 @@ if ($act == "add" || $act == "edit") {
                 <div class="prowapper">             
                     <?php
                     if (!empty($id) && $id > 0) {
-                        $sql = "SELECT id, ProductName, ProductImg, unit FROM products WHERE id IN (SELECT productId FROM price WHERE AreaId = $id)";
+                        $sql = "SELECT p.id, p.ProductName, p.ProductImg, p.unit, p.category_id, pc.name as categoryName 
+                                FROM products p 
+                                LEFT JOIN product_categories pc ON p.category_id = pc.id 
+                                WHERE p.id IN (SELECT productId FROM price WHERE AreaId = $id)";
                         $result = $conn->query($sql);
                         if ($result && $result->num_rows > 0) {
                             while ($row = $result->fetch_assoc()) {
+                                // 准备分类显示
+                                $categoryDisplay = !empty($row['categoryName']) ? ' <span style="color:#888;font-size:12px;">['.$row['categoryName'].']</span>' : '';
                             ?>
                                 <div class="proitem">
                                     <div class="prodelet"></div>
-                                    <div class="proname"><?= htmlspecialcharsFix($row['ProductName']) ?></div>
+                                    <div class="proname"><?= htmlspecialcharsFix($row['ProductName']) ?><?= $categoryDisplay ?></div>
                                     <div class="propic"><img src="<?= htmlspecialcharsFix($row['ProductImg']) ?>"></div>      
                                     <div class="proprice">
                                         <?php

+ 68 - 29
system/js/Searchproduct.js

@@ -22,7 +22,32 @@ $(document).ready(function() {
 	function() {
 		var id = $(this).data("id");
 		var unit = $(this).data("unit");
-		var n = "<div class='proname'>" + $(this).find(".name").html() + "</div>";
+		var productName = $(this).find(".name").html();
+		
+		// 检查该产品是否已存在
+		var existingProduct = false;
+		$("input[name='productId[]']").each(function() {
+			if ($(this).val() == id) {
+				existingProduct = true;
+				return false; // 跳出循环
+			}
+		});
+		
+		if (existingProduct) {
+			// 如果产品已存在,显示提示并阻止添加
+			// 从HTML内容中提取纯文本产品名称(不包含分类标签)
+			var tempDiv = document.createElement("div");
+			tempDiv.innerHTML = productName;
+			var plainProductName = tempDiv.textContent || tempDiv.innerText || "";
+			plainProductName = plainProductName.split('[')[0].trim(); // 移除分类部分
+			
+			alert("产品「" + plainProductName + "」已添加,不能重复添加");
+			$("#productlist").hide();
+			$("#productSearch").val("");
+			return false;
+		}
+		
+		var n = "<div class='proname'>" + productName + "</div>";
 		var pic = "<div class='propic'>" + $(this).find(".pic").html() + "</div>";
 		var item = "<div class='proitem'><div class='prodelet'></div>" + n + pic + "<div class='proprice'><div class='priceitem'><input type='hidden' name='productId[]' value="+id+"><label>≥</label><input type='number' autocomplete='off' class='txt3 num' name='num[]'><label class='unit'>" + unit + "</label> <label>售价</label><input type='text' class='txt3 price' autocomplete='off' name='price[]'><label>RMB</label> <span class='additem'></span><span class='delitem'></span><span class='note'></span></div></div></div>";
 		$(".prowapper").append(item);
@@ -65,44 +90,58 @@ $(document).ready(function() {
 		}
 	})
 
-	$(".priceitem .num").live("blur",
+	$(".priceitem .price").live("blur",
 	function() {
-		var pnum; //Pre数量
-		var cnum = $(this).val(); //当前数量
-		var i = $(this).parent().index();
-
-		var pre = i - 1;
-		var len = $(".priceitem").length;
-		if (len > 1) {
-			pnum = $(".priceitem").eq(pre).find(".num").val();
-			console.log(pnum);
-			if (eval(cnum) < eval(pnum)) {
-				$(this).parent().find(".note").html("当前数量不能小于上一项");
+		var pprice; //Pre数量
+		var cprice = $(this).val(); //当前数量
+		
+		// 找到当前价格所在的产品区域
+		var currentProduct = $(this).closest('.proprice');
+		// 在当前产品内找出所有价格项
+		var priceItems = currentProduct.find('.priceitem');
+		// 获取当前价格项在当前产品内的索引
+		var currentIndex = $(this).closest('.priceitem').index();
+		
+		// 只有当不是第一个价格项时才需要验证
+		if (currentIndex > 0) {
+			// 获取同一产品内的上一个价格项的价格
+			pprice = priceItems.eq(currentIndex - 1).find(".price").val();
+			// 使用parseFloat进行数值比较而不是eval
+			if (pprice && parseFloat(cprice) > parseFloat(pprice)) {
+				$(this).parent().find(".note").html("当前售价不能高于上一项");
 				$(this).select();
 			}
-			else
-			{$(this).parent().find(".note").html("");}
+			else {
+				$(this).parent().find(".note").html("");
+			}			
 		}
-
 	})
 
-	$(".priceitem .price").live("blur",
+	$(".priceitem .num").live("blur",
 	function() {
-		var pprice; //Pre数量
-		var cprice = $(this).val(); //当前数量
-		var i = $(this).parent().index();
-		var pre = i - 1;
-		var len = $(".priceitem").length;
-		if (len > 1) {
-			pprice = $(".priceitem").eq(pre).find(".price").val();
-			if (eval(cprice) > eval(pprice)) {
-				$(this).parent().find(".note").html("当前售价不能高于上一项");
+		var pnum; //Pre数量
+		var cnum = $(this).val(); //当前数量
+		
+		// 找到当前数量所在的产品区域
+		var currentProduct = $(this).closest('.proprice');
+		// 在当前产品内找出所有价格项
+		var priceItems = currentProduct.find('.priceitem');
+		// 获取当前价格项在当前产品内的索引
+		var currentIndex = $(this).closest('.priceitem').index();
+		
+		// 只有当不是第一个价格项时才需要验证
+		if (currentIndex > 0) {
+			// 获取同一产品内的上一个价格项的数量
+			pnum = priceItems.eq(currentIndex - 1).find(".num").val();
+			// 使用parseFloat进行数值比较而不是eval
+			if (pnum && parseFloat(cnum) < parseFloat(pnum)) {
+				$(this).parent().find(".note").html("当前数量不能小于上一项");
 				$(this).select();
 			}
-			else
-			{$(this).parent().find(".note").html("");}			
+			else {
+				$(this).parent().find(".note").html("");
+			}
 		}
-
 	})
 
 });