|
|
@ -74,7 +74,7 @@ public class CalCpcIndexServiceImpl implements CalCpcIndexService { |
|
|
|
Map<String, Integer> shiftIssueCountMap = calShiftIssueCount(customerId, monthId); |
|
|
|
//4、党员提出的议题转项目数
|
|
|
|
Map<String, Integer> shiftProjectCountMap = calShiftProjectCount(customerId, monthId); |
|
|
|
//5、参加“三会一课”次数 默认0 :当前用户在本月内活动签到次数
|
|
|
|
//5、参加“三会一课”次数 默认0 :当前用户在本月内活动签到次数 限制活动分类编码100001 三会一课
|
|
|
|
Map<String,Integer> joinThreeMeetsCountMap=calJoinThreeMeetsCount(customerId,monthId); |
|
|
|
|
|
|
|
//可以先查询出每个党员的 自建群
|
|
|
@ -109,7 +109,7 @@ public class CalCpcIndexServiceImpl implements CalCpcIndexService { |
|
|
|
if (shiftProjectCountMap.containsKey(indexPartyAblityCpcEntity.getUserId())) { |
|
|
|
indexPartyAblityCpcEntity.setShiftProjectCount(shiftProjectCountMap.get(indexPartyAblityCpcEntity.getUserId())); |
|
|
|
} |
|
|
|
//5、参加“三会一课”次数 目前没有此业务,默认0 : 当前用户在本月内活动签到次数
|
|
|
|
//5、参加“三会一课”次数 目前没有此业务,默认0 : 当前用户在本月内活动签到次数 限制活动分类编码100001 三会一课
|
|
|
|
if(joinThreeMeetsCountMap.containsKey(indexPartyAblityCpcEntity.getUserId())){ |
|
|
|
indexPartyAblityCpcEntity.setJoinThreeMeetsCount(joinThreeMeetsCountMap.get(indexPartyAblityCpcEntity.getUserId())); |
|
|
|
} |
|
|
@ -232,7 +232,7 @@ public class CalCpcIndexServiceImpl implements CalCpcIndexService { |
|
|
|
* @param customerId |
|
|
|
* @param monthId |
|
|
|
* @author yinzuomei |
|
|
|
* @description 5:参加“三会一课”次数 : 当前用户在本月内活动签到次数 |
|
|
|
* @description 5:参加“三会一课”次数 : 当前用户在本月内活动签到次数 限制活动分类编码100001 三会一课 |
|
|
|
* @Date 2021/5/12 13:38 |
|
|
|
**/ |
|
|
|
private Map<String, Integer> calJoinThreeMeetsCount(String customerId, String monthId) { |
|
|
|