From d16c9ca6307adde5d4b9734c540e276477940686 Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期五, 23 二月 2024 17:03:56 +0800 Subject: [PATCH] 分析页 牌号统计 功能完善 --- src/main/java/com/zy/asrs/service/impl/LocDetlServiceImpl.java | 22 ++++++++++++++++++++-- 1 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zy/asrs/service/impl/LocDetlServiceImpl.java b/src/main/java/com/zy/asrs/service/impl/LocDetlServiceImpl.java index b083fa9..e13669c 100644 --- a/src/main/java/com/zy/asrs/service/impl/LocDetlServiceImpl.java +++ b/src/main/java/com/zy/asrs/service/impl/LocDetlServiceImpl.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.service.impl.ServiceImpl; import com.core.common.Cools; import com.zy.asrs.entity.LocDetl; +import com.zy.asrs.entity.LocDetlWarningDTO; import com.zy.asrs.entity.result.LocDetlAll; import com.zy.asrs.entity.result.LocDetlDTO; import com.zy.asrs.entity.result.StockVo; @@ -76,6 +77,13 @@ } @Override + public Page<LocDetlAll> getWarningNumPage(Page<LocDetlAll> page) { + page.setRecords(baseMapper.getWarningNumList(page.getCondition())); + page.setTotal(baseMapper.getWarningNumListCount(page.getCondition())); + return page; + } + + @Override public Double sumAll() { return this.baseMapper.sumAll(); } @@ -106,8 +114,8 @@ } @Override - public List<LocDetl> queryStock2(String matnr, String batch, int owner) { - return this.baseMapper.queryStock2(matnr, batch, owner); + public List<LocDetl> queryStock2(String matnr, String batch) { + return this.baseMapper.queryStock2(matnr, batch); } @Override @@ -183,4 +191,14 @@ public int selectAllPymentcount(LocDetlDTO locDetlDTO) { return this.baseMapper.selectAllPymentcount(locDetlDTO); } + + @Override + public List<LocDetlWarningDTO> selectAllWarning(LocDetlWarningDTO locDetlWarningDTO) { + return this.baseMapper.selectAllWarning(locDetlWarningDTO); + } + + @Override + public int getAllWarningCount(LocDetlWarningDTO locDetlWarningDTO) { + return this.baseMapper.getAllWarningCount(locDetlWarningDTO); + } } -- Gitblit v1.9.1