Commit 0308b565 by 徐高华

Merge branch 'feature/xgh/2502朋友圈' into 'master'

朋友圈校验bug

See merge request !2788
parents 2b6b61e4 74f5824a
......@@ -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