Commit 15130647 by 徐高华

朋友圈

parent a76f4782
...@@ -65,13 +65,13 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService ...@@ -65,13 +65,13 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService
@Override @Override
public ServiceResponse<Page<QwMomentPlanAttendDTO>> attendList(PlanClerkListQDTO qdto) { public ServiceResponse<Page<QwMomentPlanAttendDTO>> attendList(PlanClerkListQDTO qdto) {
// 0已失效 1待完成 2已完成 // 0已失效 1待完成 2已完成
int sendStatus = qdto.getSendStatus() ; Integer sendStatus = qdto.getSendStatus() ;
TabQwMomentPlan plan = this.qwMomentPlanMapper.getById(qdto.getPlanId()) ; TabQwMomentPlan plan = this.qwMomentPlanMapper.getById(qdto.getPlanId()) ;
boolean isEnd = plan.getStatusFlag()==2 || plan.getEndDate().getTime() <= System.currentTimeMillis() ; boolean isEnd = plan.getStatusFlag()==2 || plan.getEndDate().getTime() <= System.currentTimeMillis() ;
if(isEnd && sendStatus==1) { if(null != sendStatus && isEnd && sendStatus==1) {
return ServiceResponse.success(new Page<>()); return ServiceResponse.success(new Page<>());
} }
if(!isEnd && sendStatus==0) { if(null != sendStatus && !isEnd && sendStatus==0) {
return ServiceResponse.success(new Page<>()); return ServiceResponse.success(new Page<>());
} }
PageHelper.startPage(qdto); PageHelper.startPage(qdto);
...@@ -89,7 +89,7 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService ...@@ -89,7 +89,7 @@ public class QwMomentPlanAttendServiceImpl implements QwMomentPlanAttendService
} }
List<QwMomentPlanAttendDTO> list = this.qwMomentPlanAttendMapper.list(qdto); List<QwMomentPlanAttendDTO> list = this.qwMomentPlanAttendMapper.list(qdto);
Page<QwMomentPlanAttendDTO> retPage = PageHelperUtils.changePageHelperToCurrentPage(list, QwMomentPlanAttendDTO.class); Page<QwMomentPlanAttendDTO> retPage = PageHelperUtils.changePageHelperToCurrentPage(list, QwMomentPlanAttendDTO.class);
if(CollectionUtils.isNotEmpty(retPage.getResult()) && sendStatus==0) { if(CollectionUtils.isNotEmpty(retPage.getResult()) && null != sendStatus && sendStatus==0) {
retPage.getResult().forEach(o->o.setTaskStatus(0)); retPage.getResult().forEach(o->o.setTaskStatus(0));
} }
return ServiceResponse.success(retPage); return ServiceResponse.success(retPage);
......
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