Commit 74f5824a by 徐高华

朋友圈校验bug

parent 36f8132c
......@@ -162,7 +162,7 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService
if(CollectionUtils.isEmpty(list)) {
this.qwMomentPlanAttendMapper.updateFail(plan.getPlanId(), clerkIdList,"任务下发时未绑定企微号");
}else {
List<String> noStaffClerkIdList = allList.stream().filter(o->map.keySet().contains(o.getClerkId())).map(o->o.getClerkId()).collect(Collectors.toList());
List<String> noStaffClerkIdList = allList.stream().filter(o->!map.keySet().contains(o.getClerkId())).map(o->o.getClerkId()).collect(Collectors.toList());
if(CollectionUtils.isNotEmpty(noStaffClerkIdList)) {
this.qwMomentPlanAttendMapper.updateFail(plan.getPlanId(), noStaffClerkIdList,"任务下发时未绑定企微号");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment