ZY
2024-08-16 42a88db7199a088e540118f10ff5b746d5e82109
zy-asrs-wms/src/main/resources/mapper/asrs/ViewLocDetlMapper.xml
@@ -10,14 +10,46 @@
        </if>
        <if test="param!=null and param.size()>0">
            <foreach item="item" collection="param" index="index">
                <if test="item.value!=null">
                    and ${item.name} = #{item.value}
                </if>
            </foreach>
        </if>
    </select>
    <select id="getListLike" resultType="map">
        select * from view_man_loc_detl ld
        where matnr = #{matnr}
        <if test="batch!=null">
            and batch = #{batch}
        </if>
        <if test="param!=null and param.size()>0">
            <foreach item="item" collection="param" index="index">
                and ${item.name} like CONCAT('%',#{item.value},'%')
            </foreach>
        </if>
    </select>
    <select id="getById" resultType="map">
        select * from view_man_loc_detl
        select *
        from view_man_loc_detl
        where id = #{id}
    </select>
    <select id="getSuitableMat" resultType="map">
        select * from view_man_loc_detl ld
        where 1=1
        <if test="param!=null and param.size()>0">
            <foreach item="item" collection="param" index="index">
                and ${item.name} ${type} #{item.value}
            </foreach>
        </if>
        <if test="sortParam!=null and sortParam.size()>0">
            <foreach collection="sortParam" item="order" open="order by " separator="," close="  ">
                ${item.name} #{item.value}
            </foreach>
        </if>
    </select>
</mapper>