|
|
@@ -99,6 +99,7 @@ public class StatisticsDataServiceImpl implements StatisticsDataService {
|
|
|
List<RegisterAccountData> collect = registerAccountData.stream().filter(data -> {
|
|
|
if (data.getNumOfUser() != null && data.getNumOfUser() > 0) {
|
|
|
data.setMoney(data.getMoney().divide(BigDecimal.valueOf(100)));
|
|
|
+ data.setRefundMoney(data.getRefundMoney() == null ? BigDecimal.ZERO : data.getRefundMoney().divide(BigDecimal.valueOf(100)));
|
|
|
return true;
|
|
|
}
|
|
|
return false;
|