自动化立体仓库 - WCS系统
#
luxiaotao1123
2020-08-19 cf94ec501adf48741fbe7969e7d36f4a1c43dcbe
src/main/java/com/zy/asrs/domain/enums/CrnStatusType.java
@@ -34,4 +34,20 @@
    public void setDesc(String desc) {
        this.desc = desc;
    }}
    }
    public static CrnStatusType process(Integer ioType){
        if (ioType>100) {
            return TAKE;
        } else if (ioType < 100 && ioType!=3 && ioType!=6 && ioType!=11) {
            return PUT;
        } else if (ioType == 3) {
            return SITE_MOVE;
        } else if (ioType == 11) {
            return STOCK_MOVE;
        } else {
            return ERROR;
        }
    }
}