From 5842af2c8f3d00b0a5afbee4a1f4b1778ff1872d Mon Sep 17 00:00:00 2001
From: 王佳豪 <wangjiahao@wondersgroup.com>
Date: 星期四, 04 三月 2021 08:42:20 +0800
Subject: [PATCH] 1.显示"通知单号"列 2.出库作业-提取出货内容-增加通知单号的检索条件
---
src/main/resources/mapper/LocDetlMapper.xml | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/main/resources/mapper/LocDetlMapper.xml b/src/main/resources/mapper/LocDetlMapper.xml
index 48bed9e..7f473cb 100644
--- a/src/main/resources/mapper/LocDetlMapper.xml
+++ b/src/main/resources/mapper/LocDetlMapper.xml
@@ -49,6 +49,9 @@
<if test="startTime!=null and endTime!=null">
and a.modi_time between #{startTime} and #{endTime}
</if>
+ <if test="supplier!=null and supplier!=null">
+ and a.supplier like '%' + #{supplier} + '%'
+ </if>
</sql>
<select id="getStockOutPage" resultMap="BaseResultMap">
--
Gitblit v1.9.1