自动化立体仓库 - WMS系统
#
whycq
2024-06-02 f25494648b97bbc0e0da5f66ee01fc2b49fc3a27
src/main/java/com/zy/asrs/service/LocRuleService.java
@@ -8,12 +8,18 @@
public interface LocRuleService extends IService<LocRule> {
    LocRule find(String matnr);
    List<LocRule> find(String matnr);
    List<LocRule> findCode(String matnr, String other);
    //找混载库位规则
    LocRule findMixed();
    List<LocRule> findMixed();
    //将库位规则组转换为库位组
    List<LocMast> locRuleToLocNos(LocRule locRule);
    int updateKeepGoByMatnr(String matnr, Integer keepGo);
    int updateKeepGoByMixed(Integer keepGo);
}