#
zhou zhou
昨天 2e114371163bbc7ca5a3ab525b11bf48d0b3b2b8
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WkOrderItem.java
@@ -384,9 +384,9 @@
    public BigDecimal getAbleQty() {
        if (anfme == null) { anfme = 0.0;}
        if (qty == null) { qty = 0.0;}
        if (workQty == null) { workQty = 0.0;}
        BigDecimal anfmeDec = new BigDecimal(anfme.toString());
        BigDecimal qtyDec = new BigDecimal(qty.toString());
        BigDecimal qtyDec = new BigDecimal(workQty.toString());
        return anfmeDec.subtract(qtyDec);
    }