自动化立体仓库 - WMS系统
#
LSH
2023-12-15 43a90d017c9c54ca8683b30b61ae79934fe05a85
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -506,11 +506,15 @@
    }
    public Double getEnableQty() {
        Double enableQty = null;
        if (null != this.anfme && this.workQty != null) {
            enableQty = this.anfme  - this.workQty;
           if (enableQty <0){
               enableQty = 0.0D;
           }
        if (null != this.anfme && this.qty != null) {
            return this.anfme - this.qty;
        }
        return null;
        return enableQty;
    }
    public void sync(Object source) {