|
@@ -44,6 +44,6 @@ public interface ISettlement {
|
|
|
pay = new BigDecimal("0.0");
|
|
pay = new BigDecimal("0.0");
|
|
|
total = new BigDecimal("1");
|
|
total = new BigDecimal("1");
|
|
|
}
|
|
}
|
|
|
- return df().format(pay.divide(total, 2, RoundingMode.HALF_UP)) + "%";
|
|
|
|
|
|
|
+ return df().format(pay.divide(total, 6, RoundingMode.HALF_UP).multiply(new BigDecimal("100.0"))) + "%";
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|