自动化立体仓库 - WMS系统
#
LSH
2023-05-16 41012324d4afa371ac50d45e3e93e802cf8d6e28
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;
    }