自动化立体仓库 - WMS系统
pang.jiabao
2024-04-18 f746571f6d16529b8e2593e1d25681dde592d56c
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -84,9 +84,9 @@
    private String maktx;
    /**
     * 序列码
     * 批号
     */
    @ApiModelProperty(value= "序列码")
    @ApiModelProperty(value= "批号")
    private String batch;
    /**
@@ -110,7 +110,8 @@
    /**
     * 品牌
     */
    @ApiModelProperty(value= "品牌")
    @ApiModelProperty(value= "类型")
//    @ApiModelProperty(value= "品牌")
    private String brand;
    /**
@@ -443,12 +444,10 @@
    }
    public Double getEnableQty() {
        if (null != this.anfme && this.workQty != null) {
            return this.anfme - this.workQty;
        if (null != this.anfme && this.qty != null) {
            return this.anfme - this.qty;
        }
//        if (null != this.anfme && this.qty != null) {
//            return this.anfme - this.qty;
//        }
        return null;
    }