Commit 2172b45d by 徐高华

朋友圈校验bug

parent 74f5824a
...@@ -170,6 +170,9 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService ...@@ -170,6 +170,9 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService
for(QwMomentPlanAttendDTO dto : allList) { for(QwMomentPlanAttendDTO dto : allList) {
String cid = dto.getClerkId() ; String cid = dto.getClerkId() ;
String sid = dto.getStaffId() ; String sid = dto.getStaffId() ;
if(noStaffClerkIdList.contains(cid)) {
continue;
}
if(map.get(cid) != null && map.get(cid).equals(sid)) { if(map.get(cid) != null && map.get(cid).equals(sid)) {
}else { }else {
this.qwMomentPlanAttendMapper.updateSuccessStaff(plan.getPlanId(),cid,map.get(cid)); this.qwMomentPlanAttendMapper.updateSuccessStaff(plan.getPlanId(),cid,map.get(cid));
......
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