自动化立体仓库 - WMS系统
Administrator
2024-10-31 0636ee6c2bd4eebf46cf5f22bca604a7148964d1
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -397,14 +397,14 @@
    }
    public String getInspect$(){
        if (null == this.inspect){ return null; }
        if (null == this.inspect){ return "待备货"; }
        switch (this.inspect){
            case 1:
                return "是";
            case 0:
                return "否";
                return "备货中";
            case 2:
                return "已备货";
            default:
                return String.valueOf(this.inspect);
                return "待备货";
        }
    }
@@ -417,14 +417,14 @@
    }
    public String getDanger$(){
        if (null == this.danger){ return null; }
        if (null == this.danger){ return "待移库"; }
        switch (this.danger){
            case 1:
                return "是";
            case 0:
                return "否";
                return "移库中";
            case 2:
                return "移库完成";
            default:
                return String.valueOf(this.danger);
                return "待移库";
        }
    }
@@ -499,7 +499,7 @@
        if (!Cools.isEmpty(basBoxType)){
            return String.valueOf(basBoxType.getBoxSpecs());
        }
        return null;
        return this.brand;
    }
}