自动化立体仓库 - WMS系统
#
Junjie
7 天以前 8ea7d56801214f50f45c7f8982cd28ac58cfd7c5
src/main/java/com/zy/asrs/service/impl/LocMastServiceImpl.java
@@ -10,6 +10,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Collections;
import java.util.List;
@Service("locMastService")
@@ -57,7 +58,7 @@
        if (locMast == null) {
            return false;
        }
        return this.baseMapper.selectEmptyLocCount(locMast.getLocType1(), locMast.getCrnNo(),1L) > 1;
        return this.baseMapper.selectEmptyLocCount(locMast.getLocType1(), locMast.getCrnNo(),1L) > 10;
    }
    @Override
@@ -153,4 +154,9 @@
        }
        return this.baseMapper.selectLocShuttleMoveUnilateralN(bay,lev,type);
    }
    @Override
    public List<Integer> selectRowByCrnNo(Integer crnNo) {
        return this.baseMapper.selectRowByCrnNo(crnNo);
    }
}