| | |
| | | progressPlanInfoFlag.setPlanInfoList( |
| | | new LambdaQueryChainWrapper<>(projectPlanInfoMapper) |
| | | .eq(ProjectPlanInfo::getProjectPlanRecordId, record.getId()) |
| | | .eq(ProjectPlanInfo::getDeleted, 0) // 未删除 |
| | | .eq(ProjectPlanInfo::getPlanStatus, 2) // 计划项审批通过 |
| | | .list() |
| | | ); |
| | | monthProgress.add(progressPlanInfoFlag); |
| | |
| | | progressPlanInfoFlag.setPlanInfoList( |
| | | new LambdaQueryChainWrapper<>(projectPlanInfoMapper) |
| | | .eq(ProjectPlanInfo::getProjectPlanRecordId, record.getId()) |
| | | .eq(ProjectPlanInfo::getDeleted, 0) // 未删除 |
| | | .eq(ProjectPlanInfo::getPlanStatus, 2) // 计划项审批通过 |
| | | .list() |
| | | ); |
| | | seasonProgress.add(progressPlanInfoFlag); |
| | |
| | | progressPlanInfoFlag.setPlanInfoList( |
| | | new LambdaQueryChainWrapper<>(projectPlanInfoMapper) |
| | | .eq(ProjectPlanInfo::getProjectPlanRecordId, record.getId()) |
| | | .eq(ProjectPlanInfo::getDeleted, 0) // 未删除 |
| | | .eq(ProjectPlanInfo::getPlanStatus, 2) // 计划项审批通过 |
| | | .list() |
| | | ); |
| | | yearProgress.add(progressPlanInfoFlag); |
| | |
| | | |
| | | request.getSituationDescriptionFileList().stream() |
| | | .forEach(file -> { |
| | | file.setId(null); |
| | | file.setBusId(request.getProjectReportId().longValue()); |
| | | file.setType(FileTypeEnum.PROJECT_SITUATION_DESCRIPTION); |
| | | file.setGmtCreate(new Date()); |
| | |
| | | |
| | | request.getCompletedReportFileList().stream() |
| | | .forEach(file -> { |
| | | file.setId(null); |
| | | file.setBusId(request.getProjectReportId().longValue()); |
| | | file.setType(FileTypeEnum.PROJECT_COMPLETE_REPORT); |
| | | file.setGmtCreate(new Date()); |