自动化立体仓库 - WMS系统
#
Junjie
2023-10-02 ce5f3c4a6a9bed1c9f2317c45698fe49e63e5d36
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) {