自动化立体仓库 - WMS系统
zjj
2023-09-01 a801b6c075becb1a8660d451cbfb31ddf782a89d
src/main/java/com/zy/asrs/service/impl/LocDetlServiceImpl.java
@@ -4,6 +4,9 @@
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;
import com.zy.asrs.mapper.LocDetlMapper;
import com.zy.asrs.service.LocDetlService;
@@ -64,6 +67,18 @@
        page.setRecords(baseMapper.getStockStatis(page.getCondition()));
        page.setTotal(baseMapper.getStockStatisCount(page.getCondition()));
        return page;
    }
    @Override
    public Page<LocDetlAll> getStockStatisAll(Page<LocDetlAll> page) {
        page.setRecords(baseMapper.getStockStatisAll(page.getCondition()));
        page.setTotal(baseMapper.getStockStatisCountAll(page.getCondition()));
        return page;
    }
    @Override
    public Double sumAll() {
        return this.baseMapper.sumAll();
    }
    @Override
@@ -149,4 +164,34 @@
        }
        return this.baseMapper.searchByLike(orderNo, matnr, maktx, specs, locNo);
    }
    @Override
    public List<LocDetlAll> selectAllOwner(LocDetlDTO locDetlDTO) {
        return this.baseMapper.selectAllOwner(locDetlDTO);
    }
    @Override
    public List<LocDetlAll> selectAllPyment(LocDetlDTO locDetlDTO) {
        return this.baseMapper.selectAllPyment(locDetlDTO);
    }
    @Override
    public int selectAllCount(LocDetlDTO locDetlDTO) {
        return this.baseMapper.selectAllCount(locDetlDTO);
    }
    @Override
    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);
    }
}