dubin
2 天以前 ccc39836716ba323c946cddc78a62049731ebb46
src/main/java/com/zy/asrs/service/impl/LocMastServiceImpl.java
@@ -21,6 +21,11 @@
    public LocMast queryFreeLocMast(Integer row, Short locType1) {
        return this.baseMapper.queryFreeLocMast(row, locType1);
    }
    @Override
    public LocMast queryFreeLocMast2(Integer row, Short locType1,Integer bay) {
        return this.baseMapper.queryFreeLocMast2(row, locType1,bay);
    }
    @Override
    public List<String> queryGroupEmptyStock(String sourceLocNo) {
@@ -40,8 +45,16 @@
    }
    @Override
    public LocMast queryDemoLoc(Integer crn) {
        return this.baseMapper.queryDemoLoc(crn);
    public LocMast queryDemoLoc(Integer crn,short locType1) {
        return this.baseMapper.queryDemoLoc(crn,locType1);
    }
    @Override
    public Boolean checkEmptyCount(LocMast locMast) {
        if (locMast == null) {
            return false;
        }
        return this.baseMapper.selectEmptyLocCount(locMast.getLocType1(), locMast.getCrnNo()) > 1;
    }
}