|
@@ -53,24 +53,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
LEFT JOIN erp_barcodes eb on eb.lotnum = illa.lotnum
|
|
|
LEFT JOIN code_sku_relationship csr on csr.sn = ila.lotatt02
|
|
|
<where>
|
|
|
- <if test="barcode != null and barcode != ''"> and barcode = #{barcode}</if>
|
|
|
- <if test="stockId != null and stockId != ''"> and stock_id = #{stockId}</if>
|
|
|
- <if test="locationNo != null and locationNo != ''"> and location_no = #{locationNo}</if>
|
|
|
- <if test="boxNo != null and boxNo != ''"> and box_no = #{boxNo}</if>
|
|
|
- <if test="lotnum != null and lotnum != ''"> and lotnum = #{lotnum}</if>
|
|
|
- <if test="qty != null "> and qty = #{qty}</if>
|
|
|
- <if test="type != null and type != ''"> and type = #{type}</if>
|
|
|
- <if test="erpNo != null and erpNo != ''"> and erp_no = #{erpNo}</if>
|
|
|
- <if test="erpName != null and erpName != ''"> and erp_name like concat('%', #{erpName}, '%')</if>
|
|
|
- <if test="erpType != null and erpType != ''"> and erp_type = #{erpType}</if>
|
|
|
- <if test="userdefine1 != null and userdefine1 != ''"> and userdefine1 = #{userdefine1}</if>
|
|
|
- <if test="userdefine2 != null and userdefine2 != ''"> and userdefine2 = #{userdefine2}</if>
|
|
|
- <if test="userdefine3 != null and userdefine3 != ''"> and userdefine3 = #{userdefine3}</if>
|
|
|
- <if test="userdefine4 != null and userdefine4 != ''"> and userdefine4 = #{userdefine4}</if>
|
|
|
- <if test="userdefine5 != null and userdefine5 != ''"> and userdefine5 = #{userdefine5}</if>
|
|
|
- <if test="userdefine6 != null and userdefine6 != ''"> and userdefine6 = #{userdefine6}</if>
|
|
|
- <if test="userdefine7 != null and userdefine7 != ''"> and userdefine7 = #{userdefine7}</if>
|
|
|
- <if test="userdefine8 != null and userdefine8 != ''"> and userdefine8 = #{userdefine8}</if>
|
|
|
+ <if test="barcode != null and barcode != ''"> and csr.sn like CONCAT('%', #{barcode},'%')</if>
|
|
|
+ <if test="locationNo != null and locationNo != ''"> and bli.location_no like CONCAT('%', #{locationNo},'%') </if>
|
|
|
+ <if test="boxNo != null and boxNo != ''"> and ila.lotatt07 like CONCAT('%',#{boxNo},'%')</if>
|
|
|
+ <if test="lotnum != null and lotnum != ''"> and illa.lotnum like CONCAT('%',#{lotnum},'%') </if>
|
|
|
+ <if test="qty != null "> and illa.qty like CONCAT('%',#{qty},'%')</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|