From 2bc10d832acd06bc6511e50405202fde99b0e7c2 Mon Sep 17 00:00:00 2001
From: zhangc <zc@123>
Date: 星期六, 18 一月 2025 10:20:25 +0800
Subject: [PATCH] java 优化库位检索逻辑,添加AGV工作明细服务,修复定时任务

---
 src/main/resources/mapper/ViewWorkInMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/main/resources/mapper/ViewWorkInMapper.xml b/src/main/resources/mapper/ViewWorkInMapper.xml
index cc06a0e..848ea9d 100644
--- a/src/main/resources/mapper/ViewWorkInMapper.xml
+++ b/src/main/resources/mapper/ViewWorkInMapper.xml
@@ -8,6 +8,9 @@
         <if test="loc_no!=null and loc_no!='' ">
             and loc_no like '%' + #{loc_no} + '%'
         </if>
+        <if test="supp_code!=null and supp_code!='' ">
+            and supp_code like '%' + #{supp_code} + '%'
+        </if>
         <if test="matnr!=null and matnr!='' ">
             and matnr like '%' + #{matnr} + '%'
         </if>
@@ -48,6 +51,9 @@
         <if test="loc_no!=null and loc_no!='' ">
             and loc_no like '%' + #{loc_no} + '%'
         </if>
+        <if test="supp_code!=null and supp_code!='' ">
+            and supp_code like '%' + #{supp_code} + '%'
+        </if>
         <if test="matnr!=null and matnr!='' ">
             and matnr like '%' + #{matnr} + '%'
         </if>

--
Gitblit v1.9.1