自动化立体仓库 - WMS系统
zjj
2023-09-08 486065f75babd0e67b9101faa974ba634c00e72a
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;
@@ -106,8 +107,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 +184,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);
    }
}