自动化立体仓库 - WMS系统
zyx
2023-07-14 2c3fddeac17fb2edf05325faacee71fa97f7cc2f
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) {