|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package cn.iocoder.yudao.module.system.service.home; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeGroupCountVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.taskinfo.vo.TaskInfoPageReqVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeCountResVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.home.vo.HomeSelectVO; |
|
|
|
@ -30,7 +31,6 @@ public class HomeServiceImpl implements HomeService{
|
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private TaskInfoService taskInfoService; |
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private TaskInfoMapper taskInfoMapper; |
|
|
|
|
@Resource |
|
|
|
@ -95,22 +95,40 @@ public class HomeServiceImpl implements HomeService{
|
|
|
|
|
taskFinishList.add(item.getTaskFinishNum()); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//总数
|
|
|
|
|
final Integer taskExec = taskExecList.stream().reduce(Integer::sum).orElse(0); |
|
|
|
|
homeCountResVO.setInspectionsCount(taskExec); |
|
|
|
|
//完成数
|
|
|
|
|
final Integer taskFinish = taskFinishList.stream().reduce(Integer::sum).orElse(0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (taskFinish != null && taskFinish != 0) { |
|
|
|
|
double taskCompletionRate = (double) taskFinish/taskExec; |
|
|
|
|
homeCountResVO.setTaskCompletionRate(taskCompletionRate); |
|
|
|
|
double taskCompletionRate = (double) taskFinish/taskExec*100; |
|
|
|
|
homeCountResVO.setTaskCompletionRate(String.format("%.1f", taskCompletionRate)); |
|
|
|
|
} else { |
|
|
|
|
homeCountResVO.setTaskCompletionRate(0.0); |
|
|
|
|
homeCountResVO.setTaskCompletionRate("0.0"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
homeCountResVO.setTaskCount(taskInfoAppPage.getTotal()); |
|
|
|
|
|
|
|
|
|
//根据不同的身份查询
|
|
|
|
|
final List<HomeGroupCountVO> homeGroupCountVOS = taskInfoMapper.selectHomeGroupCount(homeSelectVO); |
|
|
|
|
|
|
|
|
|
List<HomeGroupCountVO> homeGroupCountVOS1 = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
if (homeGroupCountVOS != null && homeGroupCountVOS.size() > 0) { |
|
|
|
|
homeGroupCountVOS.forEach(item->{ |
|
|
|
|
HomeGroupCountVO groupCountVO = new HomeGroupCountVO(); |
|
|
|
|
groupCountVO.setName(item.getName()); |
|
|
|
|
double rate = (double) item.getFinishCount() /taskExec * 100; |
|
|
|
|
groupCountVO.setCompletionRate(String.format("%.1f", rate)); |
|
|
|
|
homeGroupCountVOS1.add(groupCountVO); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
homeCountResVO.setCompletionRate(homeGroupCountVOS); |
|
|
|
|
homeCountResVO.setTotalCompletionRate(homeGroupCountVOS1); |
|
|
|
|
|
|
|
|
|
return homeCountResVO; |
|
|
|
|
} |
|
|
|
|