自动化立体仓库 - WMS系统
zyx
2024-01-14 25314b5ee613c48e7db31138d7fcb8abc4c536be
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -327,6 +327,23 @@
    @TableField("uuid")
    private String uuid;
    //最大熔指
    private double fingerMeltingMin;
    //最小熔指
    private double fingerMeltingMax;
    //最大熔点
    private double fusingPointMin;
    //最小熔点
    private double fusingPointMax;
    //最大黄度
    private double yellownessMin;
    //最大黄度
    private double yellownessMax;
    //最小不透明度
    private double opacityMin;
    //最大不透明度
    private double opacityMax;
    public String getOwner$(){
        LocOwnerService service = SpringUtils.getBean(LocOwnerService.class);
        LocOwner locOwner = service.selectById(this.owner);
@@ -506,11 +523,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) {