|
@@ -0,0 +1,596 @@
|
|
|
+package com.diagbot.facade;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
+import com.diagbot.client.CdssCoreClient;
|
|
|
+import com.diagbot.dto.HosRelationNumDTO;
|
|
|
+import com.diagbot.dto.RespDTO;
|
|
|
+import com.diagbot.entity.NurseConfig;
|
|
|
+import com.diagbot.enums.ConceptTypeEnum;
|
|
|
+import com.diagbot.enums.IsDeleteEnum;
|
|
|
+import com.diagbot.exception.CommonErrorCode;
|
|
|
+import com.diagbot.exception.CommonException;
|
|
|
+import com.diagbot.service.NurseConfigService;
|
|
|
+import com.diagbot.util.DateUtil;
|
|
|
+import com.diagbot.util.EntityUtil;
|
|
|
+import com.diagbot.util.ExcelUtils;
|
|
|
+import com.diagbot.util.ListUtil;
|
|
|
+import com.diagbot.util.RespDTOUtil;
|
|
|
+import com.diagbot.util.StringUtil;
|
|
|
+import com.diagbot.util.UserUtils;
|
|
|
+import com.diagbot.vo.ConceptVO;
|
|
|
+import com.diagbot.vo.HosRelationNumPageVO;
|
|
|
+import com.diagbot.vo.HospitalIdVO;
|
|
|
+import com.diagbot.vo.IdListVO;
|
|
|
+import com.diagbot.vo.IdVO;
|
|
|
+import com.diagbot.vo.NurseConfigListVO;
|
|
|
+import com.diagbot.vo.NurseConfigPageVO;
|
|
|
+import com.google.common.collect.Lists;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+import org.springframework.web.multipart.MultipartFile;
|
|
|
+
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description:
|
|
|
+ * @Author:zhaops
|
|
|
+ * @time: 2021/4/26 13:32
|
|
|
+ */
|
|
|
+@Component
|
|
|
+public class NurseConfigFacade {
|
|
|
+ @Autowired
|
|
|
+ private NurseConfigService nurseConfigService;
|
|
|
+ @Autowired
|
|
|
+ private CdssCoreClient cdssCoreClient;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 判断是否已存在
|
|
|
+ *
|
|
|
+ * @param nurseConfig
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean isExistRecord(NurseConfig nurseConfig) {
|
|
|
+ QueryWrapper<NurseConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
+ .eq("hospital_id", nurseConfig.getHospitalId())
|
|
|
+ .eq("his_name", nurseConfig.getHisName())
|
|
|
+ .eq("unique_name", nurseConfig.getUniqueName());
|
|
|
+ NurseConfig oldRecord = nurseConfigService.getOne(queryWrapper, false);
|
|
|
+ if (nurseConfig.getId() == null
|
|
|
+ && oldRecord != null) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
+ }
|
|
|
+ if (nurseConfig.getId() != null
|
|
|
+ && oldRecord != null
|
|
|
+ && !nurseConfig.getId().equals(oldRecord.getId())) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存记录-单条
|
|
|
+ *
|
|
|
+ * @param nurseConfig
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean saveOrUpdateRecord(NurseConfig nurseConfig) {
|
|
|
+ String userId = UserUtils.getCurrentPrincipleID();
|
|
|
+ Date now = DateUtil.now();
|
|
|
+ nurseConfig.setModifier(userId);
|
|
|
+ nurseConfig.setGmtModified(now);
|
|
|
+ QueryWrapper<NurseConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
+ .eq("hospital_id", nurseConfig.getHospitalId())
|
|
|
+ .eq("his_name", nurseConfig.getHisName())
|
|
|
+ .eq("unique_name", nurseConfig.getUniqueName());
|
|
|
+ NurseConfig oldRecord = nurseConfigService.getOne(queryWrapper, false);
|
|
|
+ if (nurseConfig.getId() == null
|
|
|
+ && oldRecord != null) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
+ }
|
|
|
+ if (nurseConfig.getId() != null
|
|
|
+ && oldRecord != null
|
|
|
+ && !nurseConfig.getId().equals(oldRecord.getId())) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
+ }
|
|
|
+ //新增数据
|
|
|
+ if (nurseConfig.getId() == null) {
|
|
|
+ nurseConfig.setCreator(userId);
|
|
|
+ nurseConfig.setGmtCreate(now);
|
|
|
+ }
|
|
|
+ if (nurseConfig.getIsDeleted() == null) {
|
|
|
+ nurseConfig.setIsDeleted(IsDeleteEnum.N.getKey());
|
|
|
+ }
|
|
|
+ nurseConfigService.saveOrUpdate(nurseConfig);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存记录-批量
|
|
|
+ *
|
|
|
+ * @param nurseConfigListVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean saveOrUpdateRecords(NurseConfigListVO nurseConfigListVO) {
|
|
|
+ if (ListUtil.isEmpty(nurseConfigListVO.getNurseConfigList())) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return saveOrUpdateRecords(nurseConfigListVO.getNurseConfigList());
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批量保存
|
|
|
+ *
|
|
|
+ * @param nurseConfigList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean saveOrUpdateRecords(List<NurseConfig> nurseConfigList) {
|
|
|
+ if (ListUtil.isEmpty(nurseConfigList)) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ String userId = UserUtils.getCurrentPrincipleID();
|
|
|
+ Date now = DateUtil.now();
|
|
|
+
|
|
|
+ //数据不完整的不保存
|
|
|
+ //过滤外部名称或公表名为空的数据
|
|
|
+ nurseConfigList = nurseConfigList
|
|
|
+ .stream()
|
|
|
+ .filter(i -> i.getHospitalId() != null)
|
|
|
+ .filter(i -> StringUtil.isNotBlank(i.getHisName()))
|
|
|
+ .filter(i -> StringUtil.isNotBlank(i.getUniqueName()))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+
|
|
|
+ if (ListUtil.isEmpty(nurseConfigList)) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ Long hospitalId = nurseConfigList.get(0).getHospitalId();
|
|
|
+
|
|
|
+ // 验证数据是否已存在,已存在的先删除
|
|
|
+ // 没id的删除重新插入,有id的更新
|
|
|
+ List<Long> deleteIds = Lists.newLinkedList();
|
|
|
+ Map<String, Map<String, List<Long>>> configMap
|
|
|
+ = getConfigMap(hospitalId, null, null);
|
|
|
+ nurseConfigList.forEach(nurseConfig -> {
|
|
|
+ nurseConfig.setModifier(userId);
|
|
|
+ nurseConfig.setGmtModified(now);
|
|
|
+ if (nurseConfig.getId() == null) {
|
|
|
+ if (configMap.containsKey(nurseConfig.getHisName())
|
|
|
+ && ListUtil.isNotEmpty(configMap.get(nurseConfig.getHisName()).get(nurseConfig.getUniqueName()))) {
|
|
|
+ deleteIds.addAll(configMap.get(nurseConfig.getHisName()).get(nurseConfig.getUniqueName()));
|
|
|
+ }
|
|
|
+ nurseConfig.setCreator(userId);
|
|
|
+ nurseConfig.setGmtCreate(now);
|
|
|
+ }
|
|
|
+ if (nurseConfig.getIsDeleted() == null) {
|
|
|
+ nurseConfig.setIsDeleted(IsDeleteEnum.N.getKey());
|
|
|
+ }
|
|
|
+ });
|
|
|
+ //删除已存在映射关系
|
|
|
+ IdListVO idListVO = new IdListVO();
|
|
|
+ idListVO.setIds(deleteIds);
|
|
|
+ deleteRecords(idListVO);
|
|
|
+ nurseConfigService.saveOrUpdateBatch(nurseConfigList);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除记录-单条
|
|
|
+ *
|
|
|
+ * @param idVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean deleteRecord(IdVO idVO) {
|
|
|
+ UpdateWrapper<NurseConfig> updateWrapper = new UpdateWrapper<>();
|
|
|
+ updateWrapper.eq("id", idVO.getId())
|
|
|
+ .set("is_deleted", IsDeleteEnum.Y.getKey());
|
|
|
+ nurseConfigService.removeById(idVO.getId());
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除记录-批量
|
|
|
+ *
|
|
|
+ * @param idListVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean deleteRecords(IdListVO idListVO) {
|
|
|
+ if (ListUtil.isEmpty(idListVO.getIds())) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ UpdateWrapper<NurseConfig> updateWrapper = new UpdateWrapper<>();
|
|
|
+ updateWrapper.in("id", idListVO.getIds())
|
|
|
+ .set("is_deleted", IsDeleteEnum.Y.getKey());
|
|
|
+ nurseConfigService.removeByIds(idListVO.getIds());
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分页查询
|
|
|
+ *
|
|
|
+ * @param nurseConfigPageVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public IPage<NurseConfig> getPage(NurseConfigPageVO nurseConfigPageVO) {
|
|
|
+ return nurseConfigService.getPage(nurseConfigPageVO);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据导入
|
|
|
+ *
|
|
|
+ * @param file
|
|
|
+ * @param hospitalIdVO
|
|
|
+ */
|
|
|
+ public void importExcel(MultipartFile file, HospitalIdVO hospitalIdVO) {
|
|
|
+ List<NurseConfig> nurseConfigList = ExcelUtils.importExcel(file, 0, 1, NurseConfig.class);
|
|
|
+ if (ListUtil.isNotEmpty(nurseConfigList)) {
|
|
|
+ nurseConfigList.forEach(nurseConfig -> {
|
|
|
+ nurseConfig.setHospitalId(hospitalIdVO.getHospitalId());
|
|
|
+ });
|
|
|
+ importExcelRecords(nurseConfigList, hospitalIdVO);
|
|
|
+ } else {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL, "校验失败,导入数据不能为空");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据导入
|
|
|
+ *
|
|
|
+ * @param nurseConfigList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean importExcelRecords(List<NurseConfig> nurseConfigList, HospitalIdVO hospitalIdVO) {
|
|
|
+ Long hospitalId = hospitalIdVO.getHospitalId();
|
|
|
+ String userId = UserUtils.getCurrentPrincipleID();
|
|
|
+ Date now = DateUtil.now();
|
|
|
+
|
|
|
+ //1、数据完整性校验
|
|
|
+ //2、去除前后空格
|
|
|
+ //过滤空数据,保留重复数据,方便计行
|
|
|
+ nurseConfigList = nurseConfigList.stream()
|
|
|
+ .filter(i -> StringUtil.isNotBlank(i.getHisName())
|
|
|
+ || StringUtil.isNotBlank(i.getUniqueCode())
|
|
|
+ || StringUtil.isNotBlank(i.getUniqueName()))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (ListUtil.isEmpty(nurseConfigList)) {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL, "校验失败,导入数据不能为空");
|
|
|
+ }
|
|
|
+ List<String> emptyNumList = Lists.newLinkedList();
|
|
|
+ for (int i = 0; i < nurseConfigList.size(); i++) {
|
|
|
+ if (StringUtil.isBlank(nurseConfigList.get(i).getHisName())
|
|
|
+ || StringUtil.isBlank(nurseConfigList.get(i).getUniqueName())) {
|
|
|
+ emptyNumList.add(String.valueOf(i + 2));
|
|
|
+ }
|
|
|
+ if (StringUtil.isNotBlank(nurseConfigList.get(i).getHisName())) {
|
|
|
+ nurseConfigList.get(i).setHisName(nurseConfigList.get(i).getHisName().trim());
|
|
|
+ }
|
|
|
+ if (StringUtil.isNotBlank(nurseConfigList.get(i).getUniqueName())) {
|
|
|
+ nurseConfigList.get(i).setUniqueName(nurseConfigList.get(i).getUniqueName().trim());
|
|
|
+ }
|
|
|
+ if (StringUtil.isNotBlank(nurseConfigList.get(i).getUniqueCode())) {
|
|
|
+ nurseConfigList.get(i).setUniqueCode(nurseConfigList.get(i).getUniqueCode().trim());
|
|
|
+ } else {
|
|
|
+ nurseConfigList.get(i).setUniqueCode(null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ListUtil.isNotEmpty(emptyNumList)) {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL, "以下行数(不计入空行)存在不完整数据:"
|
|
|
+ + emptyNumList.stream().collect(Collectors.joining("、"))
|
|
|
+ + "。导入取消,请修改后再试。\n");
|
|
|
+ }
|
|
|
+
|
|
|
+ // 验证数据是否已存在,已存在的先删除
|
|
|
+ // 没id的删除重新插入,有id的更新
|
|
|
+ List<Long> deleteIds = Lists.newLinkedList();
|
|
|
+ Map<String, Map<String, List<Long>>> configMap
|
|
|
+ = getConfigMap(Long.valueOf(hospitalId), null, null);
|
|
|
+ nurseConfigList.forEach(nurseConfig -> {
|
|
|
+ nurseConfig.setHospitalId(Long.valueOf(hospitalId));
|
|
|
+ nurseConfig.setModifier(userId);
|
|
|
+ nurseConfig.setGmtModified(now);
|
|
|
+ if (nurseConfig.getId() == null) {
|
|
|
+ if (configMap.containsKey(nurseConfig.getHisName())
|
|
|
+ && ListUtil.isNotEmpty(configMap.get(nurseConfig.getHisName()).get(nurseConfig.getUniqueName()))) {
|
|
|
+ deleteIds.addAll(configMap.get(nurseConfig.getHisName()).get(nurseConfig.getUniqueName()));
|
|
|
+ }
|
|
|
+ nurseConfig.setCreator(userId);
|
|
|
+ nurseConfig.setGmtCreate(now);
|
|
|
+ }
|
|
|
+ if (nurseConfig.getIsDeleted() == null) {
|
|
|
+ nurseConfig.setIsDeleted(IsDeleteEnum.N.getKey());
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ //标准术语校验
|
|
|
+ List<String> errorNumList = Lists.newLinkedList();
|
|
|
+ List<String> uniqueNames = nurseConfigList.stream()
|
|
|
+ .map(i -> i.getUniqueName())
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ ConceptVO conceptVO = new ConceptVO();
|
|
|
+ conceptVO.setNames(uniqueNames);
|
|
|
+ conceptVO.setType(ConceptTypeEnum.Nurse.getKey());
|
|
|
+ RespDTO<List<String>> respDTO = cdssCoreClient.getConceptNames(conceptVO);
|
|
|
+ RespDTOUtil.respNGDealCover(respDTO, "标准术语校验失败");
|
|
|
+ List<String> names = respDTO.data;
|
|
|
+ for (int i = 0; i < nurseConfigList.size(); i++) {
|
|
|
+ if (!names.contains(nurseConfigList.get(i).getUniqueName())) {
|
|
|
+ errorNumList.add(String.valueOf(i + 2));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (ListUtil.isNotEmpty(errorNumList)) {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL,
|
|
|
+ "以下行数(不计空行)标准术语在数据库中不存在:"
|
|
|
+ + errorNumList.stream().collect(Collectors.joining("、"))
|
|
|
+ + "。导入取消,请修改后再试。");
|
|
|
+ }
|
|
|
+
|
|
|
+ //重复数据过滤
|
|
|
+ nurseConfigList = nurseConfigList
|
|
|
+ .stream()
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList());
|
|
|
+
|
|
|
+ //删除已存在映射关系
|
|
|
+ IdListVO idListVO = new IdListVO();
|
|
|
+ idListVO.setIds(deleteIds);
|
|
|
+ deleteRecords(idListVO);
|
|
|
+ nurseConfigService.saveOrUpdateBatch(nurseConfigList);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取映射关系-公表名
|
|
|
+ *
|
|
|
+ * @param hospitalId
|
|
|
+ * @param hisNames
|
|
|
+ * @param uniqueNames
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Map<String, Map<String, List<Long>>> getConfigMap(Long hospitalId, List<String> hisNames, List<String> uniqueNames) {
|
|
|
+ Map<String, Map<String, List<Long>>> retMap = new HashMap<>();
|
|
|
+ QueryWrapper<NurseConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
+ .eq("hospital_id", hospitalId);
|
|
|
+ if (ListUtil.isNotEmpty(hisNames)) {
|
|
|
+ queryWrapper.in("his_name", hisNames);
|
|
|
+ }
|
|
|
+ if (ListUtil.isNotEmpty(uniqueNames)) {
|
|
|
+ queryWrapper.in("unique_name", uniqueNames);
|
|
|
+ }
|
|
|
+ List<NurseConfig> records = nurseConfigService.list(queryWrapper);
|
|
|
+ if (ListUtil.isEmpty(records)) {
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+ Map<String, List<NurseConfig>> configMap = EntityUtil.makeEntityListMap(records, "hisName");
|
|
|
+ for (Map.Entry<String, List<NurseConfig>> entry : configMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(entry.getValue())) {
|
|
|
+ Map<String, List<NurseConfig>> subMap = EntityUtil.makeEntityListMap(entry.getValue(), "uniqueName");
|
|
|
+ Map<String, List<Long>> subIdMap = new HashMap<>();
|
|
|
+ for (Map.Entry<String, List<NurseConfig>> subEntry : subMap.entrySet()) {
|
|
|
+ subIdMap.put(subEntry.getKey(), subEntry.getValue().stream().map(i -> i.getId()).distinct().collect(Collectors.toList()));
|
|
|
+ }
|
|
|
+ retMap.put(entry.getKey(), subIdMap);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取映射关系-公表名
|
|
|
+ *
|
|
|
+ * @param hospitalId
|
|
|
+ * @param hisNames
|
|
|
+ * @param uniqueNames
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Map<String, Map<String, List<Long>>> getUniqueConfigMap(Long hospitalId, List<String> hisNames, List<String> uniqueNames) {
|
|
|
+ Map<String, Map<String, List<Long>>> retMap = new HashMap<>();
|
|
|
+ QueryWrapper<NurseConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
+ .eq("hospital_id", hospitalId);
|
|
|
+ if (ListUtil.isNotEmpty(hisNames)) {
|
|
|
+ queryWrapper.in("his_name", hisNames);
|
|
|
+ }
|
|
|
+ if (ListUtil.isNotEmpty(uniqueNames)) {
|
|
|
+ queryWrapper.in("unique_name", uniqueNames);
|
|
|
+ }
|
|
|
+ List<NurseConfig> records = nurseConfigService.list(queryWrapper);
|
|
|
+ if (ListUtil.isEmpty(records)) {
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+ Map<String, List<NurseConfig>> configMap = EntityUtil.makeEntityListMap(records, "uniqueName");
|
|
|
+ for (Map.Entry<String, List<NurseConfig>> entry : configMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(entry.getValue())) {
|
|
|
+ Map<String, List<NurseConfig>> subMap = EntityUtil.makeEntityListMap(entry.getValue(), "hisName");
|
|
|
+ Map<String, List<Long>> subIdMap = new HashMap<>();
|
|
|
+ for (Map.Entry<String, List<NurseConfig>> subEntry : subMap.entrySet()) {
|
|
|
+ subIdMap.put(subEntry.getKey(), subEntry.getValue().stream().map(i -> i.getId()).distinct().collect(Collectors.toList()));
|
|
|
+ }
|
|
|
+ retMap.put(entry.getKey(), subIdMap);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据导出
|
|
|
+ *
|
|
|
+ * @param response
|
|
|
+ * @param hospitalIdVO
|
|
|
+ */
|
|
|
+ public void exportExcel(HttpServletResponse response, HospitalIdVO hospitalIdVO) {
|
|
|
+ QueryWrapper<NurseConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
+ .eq("hospital_id", hospitalIdVO.getHospitalId())
|
|
|
+ .orderByDesc("gmt_modified");
|
|
|
+ List<NurseConfig> records = nurseConfigService.list(queryWrapper);
|
|
|
+ String fileName = "护理映射.xls";
|
|
|
+ ExcelUtils.exportExcel(records, null, "sheet1", NurseConfig.class, fileName, response, 12.8f);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 各医院映射关系数列表
|
|
|
+ *
|
|
|
+ * @param hosRelationNumPageVO
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public IPage<HosRelationNumDTO> getRelationNumPage(HosRelationNumPageVO hosRelationNumPageVO) {
|
|
|
+ return nurseConfigService.getRelationNumPage(hosRelationNumPageVO);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据导入模板导出
|
|
|
+ *
|
|
|
+ * @param response
|
|
|
+ */
|
|
|
+ public void exportExcelModule(HttpServletResponse response) {
|
|
|
+ String fileName = "护理映射模板.xls";
|
|
|
+ ExcelUtils.exportExcel(new ArrayList<>(), null, "sheet1", NurseConfig.class, fileName, response, 12.8f);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导入数据预匹配
|
|
|
+ *
|
|
|
+ * @param file
|
|
|
+ * @param response
|
|
|
+ */
|
|
|
+ public void precDataMatch(MultipartFile file, HttpServletResponse response) {
|
|
|
+ List<NurseConfig> originList = ExcelUtils.importExcel(file, 0, 1, NurseConfig.class);
|
|
|
+ List<NurseConfig> retList = dataProcess(originList);
|
|
|
+
|
|
|
+ String fileName = "护理关联数据(预匹配).xls";
|
|
|
+ ExcelUtils.exportExcel(retList, null, "sheet1", NurseConfig.class, fileName, response, 12.8f);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 导入数据验证
|
|
|
+ *
|
|
|
+ * @param file
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean dataVerify(MultipartFile file) {
|
|
|
+ List<NurseConfig> originList = ExcelUtils.importExcel(file, 0, 1, NurseConfig.class);
|
|
|
+ List<NurseConfig> retList = dataProcess(originList);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据处理
|
|
|
+ *
|
|
|
+ * @param originList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<NurseConfig> dataProcess(List<NurseConfig> originList) {
|
|
|
+ List<NurseConfig> retList = Lists.newLinkedList();
|
|
|
+ List<String> hisNameList = originList.stream().map(i -> i.getHisName()).distinct().collect(Collectors.toList());
|
|
|
+ Map<String, List<NurseConfig>> allMap = getAll(hisNameList);
|
|
|
+
|
|
|
+ //去除空格
|
|
|
+ originList.forEach(item -> {
|
|
|
+ item.setHisName(item.getHisName().trim());
|
|
|
+ });
|
|
|
+
|
|
|
+ //获取标准术语
|
|
|
+ List<String> precUniqueName = Lists.newArrayList();
|
|
|
+ if (allMap != null) {
|
|
|
+ for (Map.Entry<String, List<NurseConfig>> entry : allMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(entry.getValue())) {
|
|
|
+ precUniqueName.addAll(entry.getValue().stream().map(i -> i.getUniqueName()).collect(Collectors.toList()));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ precUniqueName = precUniqueName.stream().distinct().collect(Collectors.toList());
|
|
|
+
|
|
|
+ ConceptVO conceptVO = new ConceptVO();
|
|
|
+ conceptVO.setNames(precUniqueName);
|
|
|
+ conceptVO.setType(ConceptTypeEnum.Nurse.getKey());
|
|
|
+ RespDTO<List<String>> respDTO = cdssCoreClient.getConceptNames(conceptVO);
|
|
|
+ RespDTOUtil.respNGDealCover(respDTO, "标准术语校验失败");
|
|
|
+ List<String> uniqueNames = respDTO.data;
|
|
|
+ if (ListUtil.isNotEmpty(originList)) {
|
|
|
+ for (NurseConfig originItem : originList) {
|
|
|
+ if (allMap.containsKey(originItem.getHisName())) {
|
|
|
+ List<NurseConfig> items = allMap.get(originItem.getHisName());
|
|
|
+ boolean flag = false;
|
|
|
+ for (NurseConfig item : items) {
|
|
|
+ if (uniqueNames.contains(item.getUniqueName())) {
|
|
|
+ retList.add(item);
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (!flag) {
|
|
|
+ retList.add(originItem);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ retList.add(originItem);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ retList = retList.stream()
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ return retList;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取所有医院映射数据
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Map<String, List<NurseConfig>> getAll(List<String> hisNameList) {
|
|
|
+ Map<String, List<NurseConfig>> retMap = new HashMap<>();
|
|
|
+ QueryWrapper<NurseConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ if (ListUtil.isNotEmpty(hisNameList)) {
|
|
|
+ queryWrapper.in("his_name", hisNameList);
|
|
|
+ }
|
|
|
+ List<NurseConfig> records = nurseConfigService.list(queryWrapper);
|
|
|
+ if (ListUtil.isEmpty(records)) {
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+ records.forEach(record -> {
|
|
|
+ record.setHospitalId(null);
|
|
|
+ record.setId(null);
|
|
|
+ record.setUniqueCode(StringUtils.isBlank(record.getUniqueCode()) ? "" : record.getUniqueCode());
|
|
|
+ });
|
|
|
+
|
|
|
+ records = records
|
|
|
+ .stream()
|
|
|
+ .filter(record -> record.getIsDeleted().equals(IsDeleteEnum.N.getKey()))
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (ListUtil.isEmpty(records)) {
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ retMap = EntityUtil.makeEntityListMap(records, "hisName");
|
|
|
+
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查找指定医院映射关系
|
|
|
+ *
|
|
|
+ * @param hospitalId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<NurseConfig> getListByHospitalId(Long hospitalId) {
|
|
|
+ QueryWrapper<NurseConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
+ .eq("hospital_id", hospitalId);
|
|
|
+ return nurseConfigService.list(queryWrapper);
|
|
|
+ }
|
|
|
+}
|