|
|
@@ -707,7 +707,7 @@
|
|
|
<when test='search != null and search == "searchGoodsCd"'>
|
|
|
AND (
|
|
|
<foreach collection="conditionList" item="item" index="index" separator="or">
|
|
|
- UPPER(G.GOODS_CD) LIKE CONCAT(UPPER(#{item}),'%')
|
|
|
+ G.GOODS_CD LIKE CONCAT(UPPER(#{item}),'%')
|
|
|
</foreach>
|
|
|
)
|
|
|
</when>
|
|
|
@@ -744,10 +744,10 @@
|
|
|
</choose>
|
|
|
</if>
|
|
|
<if test='goodsCd != null and goodsCd != ""'>
|
|
|
- AND UPPER(G.GOODS_CD) LIKE CONCAT(UPPER(#{goodsCd}),'%')
|
|
|
+ AND G.GOODS_CD LIKE CONCAT(UPPER(#{goodsCd}),'%')
|
|
|
</if>
|
|
|
<if test="arrGoodsCd != null and arrGoodsCd.length>0">
|
|
|
- AND UPPER(G.GOODS_CD) IN
|
|
|
+ AND G.GOODS_CD IN
|
|
|
<foreach collection="arrGoodsCd" item="item" index="index" open="(" close=")" separator=",">
|
|
|
UPPER(#{item})
|
|
|
</foreach>
|