自动化立体仓库 - WMS系统
#
tqs
2023-03-11 2b4d3de4dc0a079dada3a838e589dce547e02de0
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -84,9 +84,9 @@
    private String maktx;
    /**
     * 序列码
     * 批号
     */
    @ApiModelProperty(value= "序列码")
    @ApiModelProperty(value= "批号")
    private String batch;
    /**
@@ -443,12 +443,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;
    }