自动化立体仓库 - WMS系统
#
LSH
2023-09-17 73df1a92d6fd2696d4f359efa19e4b684317d732
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -150,7 +150,7 @@
    private String origin;
    /**
     * 厂家
     * 厂家 、、江铜:暂存库位号
     */
    @ApiModelProperty(value= "厂家")
    private String manu;
@@ -236,7 +236,7 @@
    private Integer deadWarn;
    /**
     * 制购 1: 制造  2: 采购  3: 外协
     * 制购 1: 制造  2: 采购  3: 外协  、、江铜:是否确认   1: 确认  2: 未确认
     */
    @ApiModelProperty(value= "制购 1: 制造  2: 采购  3: 外协  ")
    private Integer source;
@@ -360,17 +360,26 @@
        }
    }
//    public String getSource$(){
//        if (null == this.source){ return null; }
//        switch (this.source){
//            case 1:
//                return "制造";
//            case 2:
//                return "采购";
//            case 3:
//                return "外协";
//            default:
//                return String.valueOf(this.source);
//        }
//    }
    public String getSource$(){
        if (null == this.source){ return null; }
        if (null == this.source){ return "未确认"; }
        switch (this.source){
            case 1:
                return "制造";
            case 2:
                return "采购";
            case 3:
                return "外协";
                return "确认";
            default:
                return String.valueOf(this.source);
                return "未确认";
        }
    }
@@ -442,6 +451,13 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.updateTime);
    }
    public String getQty$(){
        if (getAnfme().equals(getQty())){
            return "已完成";
        }
        return "未完成";
    }
    public Double getEnableQty() {
        if (null != this.anfme && this.workQty != null) {
            return this.anfme - this.workQty;