自动化立体仓库 - WMS系统
zjj
2023-09-25 404d4ddadf135189b8818c85f58cd0c8c4835913
src/main/resources/mapper/LocDetlMapper.xml
@@ -514,10 +514,10 @@
        <if test="matnr != null and matnr !='' ">
            and t.matnr like '%' + #{matnr} + '%'
        </if>
        <if test="owner != null and owner !='' ">
            and t.owner like '%' + #{owner} + '%'
        <if test="owner != null">
            and t.owner =  #{owner}
        </if>
        <if test="payment != null and payment !='' ">
        <if test="payment != null">
            and t.payment = #{payment}
        </if>
@@ -548,6 +548,7 @@
        SELECT * FROM asr_loc_detl_all
        ) t
        WHERE 1=1
        <include refid="selectAllSql"></include>
        ) a
        WHERE a.row BETWEEN ((#{pageNumber}-1)*#{pageSize}+1) and (#{pageNumber}*#{pageSize})