自动化立体仓库 - WMS系统
123
zhang
5 天以前 21d0e7ab9d5c7316225a3e9eecf465cd37c9bd85
src/main/java/com/zy/asrs/service/LocMastService.java
@@ -15,8 +15,11 @@
    List<LocMast> queryFreeLocMast0(List<Integer> rows, Integer rowsLen, Short locType1,Boolean inoutEveryday);
    List<LocMast> queryFreeLocMast1(List<Integer> rows, Integer rowsLen, Short locType1,Boolean inoutEveryday
                                    , Integer rowBeg, Integer rowEnd, Integer bayBeg, Integer bayEnd, Integer levBeg, Integer levEnd);
    List<LocMast> queryFreeLocMastEnd(Integer row);
    List<LocMast> queryFreeLocMastEnd0(Integer bay,Integer lev,Integer row);
    List<LocMast> queryFreeLocMastEnd(Integer row, Short locType1);
    List<LocMast> queryFreeLocMastEnd0(Integer bay,Integer lev,Integer row, Short locType1);
    List<LocMast> queryFreeLocMastEnd1(Integer row, Short locType1,Boolean inoutEveryday);
    List<LocMast> queryFreeLocMast2(Short locType1, Integer rowBeg, Integer rowEnd, Integer bayBeg, Integer bayEnd, Integer levBeg, Integer levEnd);
    /**
     * 获取同组货架的空库位
@@ -30,7 +33,14 @@
     * @param locMast
     * @return
     */
    Boolean checkEmptyCount(LocMast locMast);
    Boolean checkEmptyCount(LocMast locMast, int quaOfBlank);
    /**
     * 检查当前库位所属巷道的空库位数量
     * @param locMast
     * @return
     */
    Boolean checkEmptyCount0(LocMast locMast, int quaOfBlank);
    /**
     * 当前库存明细是否为整托
@@ -51,4 +61,25 @@
    void breakUp(String locNo, List<String> excludeLocNos);
    void updateLocSts(String locNo, String locSts);
    //找外侧空库位
    List<LocMast> findOutMast(Short locType1, List<Integer> crnNos);
    //找单品类型,最内侧空库位
    List<LocMast> findInEmptyLocMast(Short locType1, List<Integer> rows, Integer crnNo);
    List<LocMast> findInEmptyLocMastNew(Short locType1, List<String> locNos, Integer crnNo);
    //在库位组中搜索可入的空库位
    List<LocMast> findEmptyLocMastByLocNos(Short locType1, List<String> locNos, Integer crnNo);
    //搜索低频(混放区域)空库位
    List<LocMast> findEmptyLowFrequencyLocMast(Short locType1, Integer crnNo);
    List<LocMast> findEmptyLocMast(Short locType1, Integer crnNo);
    //查询指定楼层的库位数据
    List<LocMast> selectLocByLev(Integer lev);
    List<LocMast> selectByLocNos(List<String> locNos);
}