|
@@ -610,9 +610,7 @@ public class DegreeRegistrationServiceImpl extends BaseServiceImpl<Integer, Degr
|
|
|
BigDecimal subjectLevelAmount = degree.getMoney() == null ? BigDecimal.ZERO : degree.getMoney();
|
|
|
BigDecimal theoryLevelAmount = degree.getTheoryMoney() == null ? BigDecimal.ZERO : degree.getTheoryMoney();
|
|
|
BigDecimal totalAmount = subjectLevelAmount.add(theoryLevelAmount);
|
|
|
- Set<Integer> collect = dataList.stream().map(e -> e.getUserId()).collect(Collectors.toSet());
|
|
|
-
|
|
|
- pageInfo.setApplyNum(collect.size());
|
|
|
+ pageInfo.setApplyNum(degreeRegistrationDao.countApplyNum(params));
|
|
|
pageInfo.setSubjectLevelAmount(subjectLevelAmount);
|
|
|
pageInfo.setTheoryLevelAmount(theoryLevelAmount);
|
|
|
pageInfo.setTotalAmount(totalAmount);
|