chen.lin
18 小时以前 a2ef34a807b1f88ac9b18dae51adbf61ce821595
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/CheckDiffItem.java
@@ -83,9 +83,9 @@
    private String model;
    /**
     * 托盘码
     * 料箱码
     */
    @ApiModelProperty(value= "托盘码")
    @ApiModelProperty(value= "料箱码")
    private String barcode;
    /**
@@ -224,7 +224,7 @@
        if (checkQty.compareTo(0.0) <= 0) {
            return 0.0;
        }
        Double diffQty = Math.round((this.checkQty - this.anfme) * 100) / 100.0;
        Double diffQty = Math.round((this.checkQty - this.anfme) * 1000000) / 1000000.0;
        return diffQty;
    }