From 06ea3e5721995a4a4e1ae0db93d7f7dac1bfa162 Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期三, 11 三月 2026 15:20:05 +0800
Subject: [PATCH] 1.成品灌装完成后采集plc反馈的是否贴标信息随工作任务存入数据库中 2.库存查询界面以及出库提取界面新增是否贴标搜索筛选功能

---
 src/main/resources/mapper/WrkDetlLogMapper.xml |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/mapper/WrkDetlLogMapper.xml b/src/main/resources/mapper/WrkDetlLogMapper.xml
index a1bda51..4699a11 100644
--- a/src/main/resources/mapper/WrkDetlLogMapper.xml
+++ b/src/main/resources/mapper/WrkDetlLogMapper.xml
@@ -29,6 +29,7 @@
         <result column="safe_qty" property="safeQty"/>
         <result column="weight" property="weight"/>
         <result column="length" property="length"/>
+        <result column="man_length" property="manLength"/>
         <result column="volume" property="volume"/>
         <result column="three_code" property="threeCode"/>
         <result column="supp" property="supp"/>
@@ -69,10 +70,10 @@
             and a.maktx like concat('%',#{maktx},'%')
         </if>
         <if test="model != null and model != ''">
-            and a.model like concat('%',#{model},'%')
+            and a.model = #{model}
         </if>
         <if test="volume != null and volume != ''">
-            and a.volume like concat('%',#{volume},'%')
+            and a.volume = #{volume}
         </if>
         <if test="zpallet != null and zpallet != ''">
             and a.zpallet like concat('%',#{zpallet},'%')

--
Gitblit v1.9.1