service-fee/src/main/java/com/java110/fee/cmd/fee/ListFeeCmd.java
@@ -297,6 +297,9 @@ Integer.parseInt(feeDto.getDecimalPlace()))); BigDecimal curFeePrice = new BigDecimal(feeDto.getFeePrice()); curFeePrice = curFeePrice.multiply(new BigDecimal(oweMonth)); if (curFeePrice.doubleValue() == -1) { curFeePrice = BigDecimal.valueOf(0); } feeDto.setAmountOwed(MoneyUtil.computePriceScale(curFeePrice.doubleValue(), feeDto.getScale(), Integer.parseInt(feeDto.getDecimalPlace())) + ""); //动态费用 if ("4004".equals(computingFormula)