|
|
|
@ -1,24 +1,27 @@
|
|
|
|
|
package cn.iocoder.yudao.module.system.service.home; |
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.enterprise.vo.EnterprisePageReqVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo.InspectionsLogAppListVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.home.vo.HomeCountResVO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.home.vo.HomeSelectVO; |
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
|
|
|
|
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; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.enterprise.EnterpriseMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.enterprisetag.EnterpriseTagMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.taskinfo.TaskInfoMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.dept.DeptService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.enterprise.EnterpriseService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.taskinfo.TaskInfoService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.user.AdminUserService; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
|
import java.time.LocalDateTime; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
@Slf4j |
|
|
|
|
@Service |
|
|
|
|
public class HomeServiceImpl implements HomeService{ |
|
|
|
|
|
|
|
|
@ -73,12 +76,48 @@ public class HomeServiceImpl implements HomeService{
|
|
|
|
|
|
|
|
|
|
homeCountResVO.setEnterpriseCount(enterpriseCount); |
|
|
|
|
|
|
|
|
|
TaskInfoPageReqVO taskInfoPageReqVO = new TaskInfoPageReqVO(); |
|
|
|
|
if (homeSelectVO.getDeptId() != null) { |
|
|
|
|
taskInfoPageReqVO.setDeptId(homeSelectVO.getDeptId()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (homeSelectVO.getSelectWeek() != null) { |
|
|
|
|
taskInfoPageReqVO.setSelectWeek(homeSelectVO.getSelectWeek()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
final PageResult<TaskInfoDO> taskInfoAppPage = taskInfoService.getTaskInfoAppPage(taskInfoPageReqVO); |
|
|
|
|
|
|
|
|
|
List<Integer> taskExecList = new ArrayList<>(); |
|
|
|
|
List<Integer> taskFinishList = new ArrayList<>(); |
|
|
|
|
if (taskInfoAppPage != null && taskInfoAppPage.getList() != null && taskInfoAppPage.getList().size() > 0) { |
|
|
|
|
taskInfoAppPage.getList().forEach(item->{ |
|
|
|
|
taskExecList.add(item.getTaskExecNum()); |
|
|
|
|
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); |
|
|
|
|
} else { |
|
|
|
|
homeCountResVO.setTaskCompletionRate(0.0); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// taskInfoService.getTaskInfoAppPage()
|
|
|
|
|
homeCountResVO.setTaskCount(taskInfoAppPage.getTotal()); |
|
|
|
|
|
|
|
|
|
//根据不同的身份查询
|
|
|
|
|
|
|
|
|
|
return homeCountResVO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public HomeCountResVO appCount2(HomeSelectVO homeSelectVO) { |
|
|
|
|
|
|
|
|
|
return null; |
|
|
|
|
// return List.of();
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|