|
|
@@ -5104,6 +5104,23 @@
|
|
|
</foreach>
|
|
|
)
|
|
|
</if>
|
|
|
+
|
|
|
+ <if test='conditionList2 != null and conditionList2.length>0'>
|
|
|
+ AND (
|
|
|
+ <foreach collection="conditionList2" item="item2" index="index" separator="or">
|
|
|
+ Z.PRODUCTNO LIKE CONCAT(UPPER(#{item2}),'%')
|
|
|
+ </foreach>
|
|
|
+ )
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test='conditionList3 != null and conditionList3.length>0'>
|
|
|
+ AND (
|
|
|
+ <foreach collection="conditionList3" item="item3" index="index" separator="or">
|
|
|
+ Z.SKUCODE LIKE CONCAT(UPPER(#{item3}),'%')
|
|
|
+ </foreach>
|
|
|
+ )
|
|
|
+ </if>
|
|
|
+
|
|
|
</select>
|
|
|
|
|
|
<!-- WMS입고단품목록 -->
|
|
|
@@ -5157,6 +5174,22 @@
|
|
|
</foreach>
|
|
|
)
|
|
|
</if>
|
|
|
+
|
|
|
+ <if test='conditionList2 != null and conditionList2.length>0'>
|
|
|
+ AND (
|
|
|
+ <foreach collection="conditionList2" item="item2" index="index" separator="or">
|
|
|
+ Z.PRODUCTNO LIKE CONCAT(UPPER(#{item2}),'%')
|
|
|
+ </foreach>
|
|
|
+ )
|
|
|
+ </if>
|
|
|
+
|
|
|
+ <if test='conditionList3 != null and conditionList3.length>0'>
|
|
|
+ AND (
|
|
|
+ <foreach collection="conditionList3" item="item3" index="index" separator="or">
|
|
|
+ Z.SKUCODE LIKE CONCAT(UPPER(#{item3}),'%')
|
|
|
+ </foreach>
|
|
|
+ )
|
|
|
+ </if>
|
|
|
ORDER BY LOTNO, DATEINCOME, SKUCODE
|
|
|
) Q
|
|
|
LIMIT #{pageable.limitStartRow} , #{pageable.pageSize}
|