| | |
| | | void updateLocSts(@Param("locNo") String locNo,@Param("locSts") String locSts); |
| | | |
| | | //找外侧空库位 |
| | | List<LocMast> findOutMast(Short locType1, List<Integer> crnNos); |
| | | List<LocMast> findOutMast(Short locType1,@Param("crnNos") List<Integer> crnNos); |
| | | |
| | | //找单品类型,最内侧空库位 |
| | | LocMast findInEmptyLocMast(Short locType1, @Param("rows") List<Integer> rows); |
| | | List<LocMast> findInEmptyLocMast(Short locType1, @Param("rows") List<Integer> rows, Integer crnNo); |
| | | |
| | | //在库位组中搜索可入的空库位 |
| | | LocMast findEmptyLocMastByLocNos(Short locType1, @Param("locNos") List<String> locNos); |
| | | List<LocMast> findEmptyLocMastByLocNos(Short locType1, @Param("locNos") List<String> locNos, Integer crnNo); |
| | | |
| | | //搜索低频(混放区域)空库位 |
| | | LocMast findEmptyLowFrequencyLocMast(Short locType1); |
| | | List<LocMast> findEmptyLowFrequencyLocMast(Short locType1, Integer crnNo); |
| | | |
| | | List<LocMast> findEmptyLocMast(Short locType1, Integer crnNo); |
| | | |
| | | List<LocMast> selectLocByLev(Integer lev); |
| | | |