库存预警信息 重置之后数据错误问题

pro
wangwei 2 years ago
parent 2334016fec
commit e0dc1d264c

@ -3,6 +3,8 @@ package com.glxp.api.req.inv;
import com.glxp.api.util.page.ListPageRequest; import com.glxp.api.util.page.ListPageRequest;
import lombok.Data; import lombok.Data;
import java.util.List;
/** /**
* *
*/ */
@ -59,4 +61,6 @@ public class FilterInvRemindMsgRequest extends ListPageRequest {
*/ */
private String supId; private String supId;
private List<String> listInv;
} }

@ -54,6 +54,13 @@
<if test="type != null and type != ''"> <if test="type != null and type != ''">
AND type = #{type} AND type = #{type}
</if> </if>
<if test="listInv != null and listInv.size() != 0">
and irm.invCode in
<foreach collection="listInv" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
</if>
</where> </where>
order by irm.updateTime desc order by irm.updateTime desc
</select> </select>
@ -84,4 +91,4 @@
</if> </if>
</where> </where>
</select> </select>
</mapper> </mapper>

Loading…
Cancel
Save