自动化立体仓库 - WMS系统
野心家
2025-05-27 e8cf4d70206fb9f4d09a4fc5a23aad2424e1369d
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -420,9 +420,11 @@
        if (null == this.danger){ return null; }
        switch (this.danger){
            case 1:
                return "是";
                return "合格";
            case 2:
                return "不合格";
            case 0:
                return "否";
                return "待判";
            default:
                return String.valueOf(this.danger);
        }
@@ -473,7 +475,7 @@
    }
    public String getQty$(){
        if (getAnfme().equals(getQty())){
        if (this.anfme.equals(this.qty)){
            return "已完成";
        }
        return "未完成";
@@ -499,7 +501,7 @@
        if (!Cools.isEmpty(basBoxType)){
            return String.valueOf(basBoxType.getBoxSpecs());
        }
        return null;
        return this.brand;
    }
}