库存预警消息提醒

master
anthonywj 2 years ago
parent 0fa11542c5
commit 5e3fb59030

@ -3,6 +3,7 @@ package com.glxp.api.controller.inv;
import com.github.pagehelper.PageInfo;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.controller.BaseController;
import com.glxp.api.req.inv.FilterInvRemindMsgRequest;
import com.glxp.api.res.inv.InvRemindMsgResponse;
import com.glxp.api.service.inv.InvRemindMsgService;
@ -18,7 +19,7 @@ import java.util.List;
*/
@Slf4j
@RestController
public class InvRemindMsgController {
public class InvRemindMsgController extends BaseController {
@Resource
private InvRemindMsgService invRemindMsgService;
@ -31,6 +32,11 @@ public class InvRemindMsgController {
*/
@GetMapping("/udiwms/inv/remind/msg/filter")
public BaseResponse filterList(FilterInvRemindMsgRequest filterInvRemindMsgRequest) {
if (!isHosUser()) {
filterInvRemindMsgRequest.setSupId(getCustomerId());
}
List<InvRemindMsgResponse> list = invRemindMsgService.filterList(filterInvRemindMsgRequest);
PageInfo<InvRemindMsgResponse> pageInfo = new PageInfo<>(list);
return ResultVOUtils.page(pageInfo);

@ -27,8 +27,8 @@
(select `name` from auth_space where `code` = irm.invSpaceCode and invCode = irm.invCode) invSpaceName,
(select `name` from basic_corp where erpId = irm.supId) supName
from inv_remind_msg irm
left join basic_udirel bu on bu.id = irm.relId
left join basic_products bp on bp.uuid = bu.uuid
left join basic_udirel bu on bu.id = irm.relId
left join basic_products bp on bp.uuid = bu.uuid
<where>
<if test="relId != null and relId != ''">
AND irm.relId = #{relId}
@ -54,12 +54,16 @@
<if test="type != null and type != ''">
AND type = #{type}
</if>
<if test="supId != null">
AND irm.supId = #{supId}
</if>
</where>
order by irm.updateTime desc
</select>
<select id="selectRemindMsg" resultType="com.glxp.api.entity.inv.InvRemindMsgEntity">
select * from inv_remind_msg
select *
from inv_remind_msg
<where>
<if test="relId != null and relId != ''">
AND relId = #{relId}
@ -84,4 +88,4 @@
</if>
</where>
</select>
</mapper>
</mapper>

Loading…
Cancel
Save