zc
昨天 438c1612a0b0b212e21d25249ccdebac6a326842
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/CheckDiffItem.java
@@ -106,6 +106,9 @@
    @ApiModelProperty(value= "盘点库存")
    private Double checkQty;
    @ApiModelProperty("索引")
    private String fieldsIndex;
    /**
     * 差异原因
     */
@@ -221,7 +224,7 @@
        if (checkQty.compareTo(0.0) <= 0) {
            return 0.0;
        }
        Double diffQty = Math.round((this.checkQty - this.anfme) * 1000) / 1000.0;
        Double diffQty = Math.round((this.checkQty - this.anfme) * 100) / 100.0;
        return diffQty;
    }