自动化立体仓库 - WMS系统
#
Junjie
2023-09-22 9e3dafcb599c369ca06879e5a89a9c1e65f17fb5
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -433,10 +433,15 @@
    }
    public Double getEnableQty() {
        Double enableQty = null;
        if (null != this.anfme && this.qty != null) {
            return this.anfme - this.qty;
            enableQty = this.anfme - this.qty;
            if (enableQty < 0) {
                enableQty = 0.0D;
            }
//            return this.anfme - this.qty;
        }
        return null;
        return enableQty;
    }
    public void sync(Object source) {