From 248f33ff3b981a15b4adf26880e24852809561d9 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Thu, 28 Oct 2021 09:57:22 +0800 Subject: [PATCH] 短信改造延期 --- zq-erp/src/main/resources/mybatis/mapper/hive/SysStoreInfoDao.xml | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/hive/SysStoreInfoDao.xml b/zq-erp/src/main/resources/mybatis/mapper/hive/SysStoreInfoDao.xml index 6f41218..6bafe6f 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/hive/SysStoreInfoDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/hive/SysStoreInfoDao.xml @@ -380,6 +380,7 @@ c.NAME as gs_NAME, c.UNIT as gs_UNIT, c.good_type as gs_good_type, + c.measure as gs_measure, c.GOODS_SORT_ID as gs_GOODS_SORT_ID, c.SUPPLIER_ID as gs_SUPPLIER_ID, (select TYPE_NAME from sys_goods_type t where t.id=c.GOODS_SORT_ID) gs_goodsSortName, @@ -405,6 +406,10 @@ </if> <if test="record.batch != null and record.batch !='' "> and batch = #{record.batch} + </if> + + <if test="record.queryKey != null and record.queryKey !='' "> + and (instr(c.name,#{record.queryKey}) or instr(c.goods_no, #{record.queryKey}) or instr(c.zjm, #{record.queryKey})) </if> <if test="record.storeId != null and record.storeId !='' "> and STORE_ID = #{record.storeId} @@ -479,6 +484,9 @@ <if test="record.batch != null and record.batch !='' "> and batch = #{record.batch} </if> + <if test="record.queryKey != null and record.queryKey !='' "> + and (instr(c.name,#{record.queryKey}) or instr(c.goods_no, #{record.queryKey}) or instr(c.zjm, #{record.queryKey})) + </if> <if test="record.storeId != null and record.storeId !='' "> and STORE_ID = #{record.storeId} </if> -- Gitblit v1.9.1