自动化立体仓库 - WMS系统
pang.jiabao
5 天以前 d18505cc87fa30a5b202057bbcc4236986efc80a
src/main/java/com/zy/asrs/entity/OrderDetlPakin.java
@@ -10,11 +10,11 @@
import com.zy.asrs.service.BasProcessProceduresService;
import com.zy.asrs.service.BasQualityTestingService;
import com.zy.asrs.service.OrderService;
import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.beans.BeanUtils;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
@@ -529,7 +529,7 @@
    public Double getEnableQty() {
        if (null != this.anfme && this.workQty != null) {
            return this.anfme - this.workQty;
            return this.anfme - this.workQty - this.qty;
        }
        return null;
    }
@@ -575,7 +575,7 @@
    }
    public void sync(Object source) {
        Synchro.Copy(source, this);
        BeanUtils.copyProperties(source, this);
    }
}