|
@@ -3,16 +3,24 @@ 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.DictionaryInfoDTO;
|
|
|
import com.diagbot.dto.HosRelationNumDTO;
|
|
|
+import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.entity.DrugConfig;
|
|
|
+import com.diagbot.enums.ConceptTypeEnum;
|
|
|
import com.diagbot.enums.IsDeleteEnum;
|
|
|
+import com.diagbot.exception.CommonErrorCode;
|
|
|
+import com.diagbot.exception.CommonException;
|
|
|
import com.diagbot.service.DrugConfigService;
|
|
|
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.DrugConfigListVO;
|
|
|
import com.diagbot.vo.DrugConfigPageVO;
|
|
|
import com.diagbot.vo.HosRelationNumPageVO;
|
|
@@ -25,6 +33,7 @@ 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;
|
|
@@ -40,6 +49,10 @@ import java.util.stream.Collectors;
|
|
|
public class DrugConfigFacade {
|
|
|
@Autowired
|
|
|
private DrugConfigService drugConfigService;
|
|
|
+ @Autowired
|
|
|
+ private CdssCoreClient cdssCoreClient;
|
|
|
+ @Autowired
|
|
|
+ private DictionaryFacade dictionaryFacade;
|
|
|
|
|
|
/**
|
|
|
* 判断是否已存在
|
|
@@ -53,9 +66,22 @@ public class DrugConfigFacade {
|
|
|
.eq("hospital_id", drugConfig.getHospitalId())
|
|
|
.eq("his_name", drugConfig.getHisName())
|
|
|
.eq("unique_name", drugConfig.getUniqueName());
|
|
|
+ if (StringUtil.isBlank(drugConfig.getForm())) {
|
|
|
+ queryWrapper.and(i -> i.isNull("form")
|
|
|
+ .or()
|
|
|
+ .eq("form", ""));
|
|
|
+ } else {
|
|
|
+ queryWrapper.eq("form", drugConfig.getForm());
|
|
|
+ }
|
|
|
DrugConfig oldRecord = drugConfigService.getOne(queryWrapper, false);
|
|
|
- if (oldRecord != null) {
|
|
|
- return true;
|
|
|
+ if (drugConfig.getId() == null
|
|
|
+ && oldRecord != null) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
+ }
|
|
|
+ if (drugConfig.getId() != null
|
|
|
+ && oldRecord != null
|
|
|
+ && !drugConfig.getId().equals(oldRecord.getId())) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
}
|
|
|
return false;
|
|
|
}
|
|
@@ -71,6 +97,28 @@ public class DrugConfigFacade {
|
|
|
Date now = DateUtil.now();
|
|
|
drugConfig.setModifier(userId);
|
|
|
drugConfig.setGmtModified(now);
|
|
|
+ QueryWrapper<DrugConfig> queryWrapper = new QueryWrapper<>();
|
|
|
+ queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
+ .eq("hospital_id", drugConfig.getHospitalId())
|
|
|
+ .eq("his_name", drugConfig.getHisName())
|
|
|
+ .eq("unique_name", drugConfig.getUniqueName());
|
|
|
+ if (StringUtil.isBlank(drugConfig.getForm())) {
|
|
|
+ queryWrapper.and(i -> i.isNull("form")
|
|
|
+ .or()
|
|
|
+ .eq("form", ""));
|
|
|
+ } else {
|
|
|
+ queryWrapper.eq("form", drugConfig.getForm());
|
|
|
+ }
|
|
|
+ DrugConfig oldRecord = drugConfigService.getOne(queryWrapper, false);
|
|
|
+ if (drugConfig.getId() == null
|
|
|
+ && oldRecord != null) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
+ }
|
|
|
+ if (drugConfig.getId() != null
|
|
|
+ && oldRecord != null
|
|
|
+ && !drugConfig.getId().equals(oldRecord.getId())) {
|
|
|
+ throw new CommonException(CommonErrorCode.IS_EXISTS, "该条关联已存在,无法保存");
|
|
|
+ }
|
|
|
//新增数据
|
|
|
if (drugConfig.getId() == null) {
|
|
|
drugConfig.setCreator(userId);
|
|
@@ -117,23 +165,37 @@ public class DrugConfigFacade {
|
|
|
.filter(i -> StringUtil.isNotBlank(i.getHisName()))
|
|
|
.filter(i -> StringUtil.isNotBlank(i.getUniqueName()))
|
|
|
.collect(Collectors.toList());
|
|
|
+
|
|
|
if (ListUtil.isEmpty(drugConfigList)) {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
Long hospitalId = drugConfigList.get(0).getHospitalId();
|
|
|
|
|
|
+ List<String> hisNames = drugConfigList
|
|
|
+ .stream()
|
|
|
+ .map(i -> i.getHisName())
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ List<String> uniqueNames = drugConfigList
|
|
|
+ .stream()
|
|
|
+ .map(i -> i.getUniqueName())
|
|
|
+ .collect(Collectors.toList());
|
|
|
+
|
|
|
// 验证数据是否已存在,已存在的先删除
|
|
|
// 没id的删除重新插入,有id的更新
|
|
|
List<Long> deleteIds = Lists.newLinkedList();
|
|
|
- Map<String, Map<String, Long>> configMap
|
|
|
- = getConfigMap(hospitalId, null, null);
|
|
|
+ Map<String, Map<String, Map<String, Long>>> configMap
|
|
|
+ = getConfigMap(hospitalId, hisNames, uniqueNames);
|
|
|
drugConfigList.forEach(drugConfig -> {
|
|
|
+ drugConfig.setHospitalId(Long.valueOf(hospitalId));
|
|
|
drugConfig.setModifier(userId);
|
|
|
drugConfig.setGmtModified(now);
|
|
|
+ String form = StringUtil.isBlank(drugConfig.getForm()) ? "" : drugConfig.getForm();
|
|
|
if (drugConfig.getId() == null) {
|
|
|
- if (configMap.containsKey(drugConfig.getHisName())) {
|
|
|
- deleteIds.add(configMap.get(drugConfig.getHisName()).get(drugConfig.getUniqueName()));
|
|
|
+ if (configMap.get(drugConfig.getHisName()) != null
|
|
|
+ && configMap.get(drugConfig.getHisName()).get(form) != null
|
|
|
+ && configMap.get(drugConfig.getHisName()).get(form).get(drugConfig.getUniqueName()) != null) {
|
|
|
+ deleteIds.add(configMap.get(drugConfig.getHisName()).get(form).get(drugConfig.getUniqueName()));
|
|
|
}
|
|
|
drugConfig.setCreator(userId);
|
|
|
drugConfig.setGmtCreate(now);
|
|
@@ -142,6 +204,7 @@ public class DrugConfigFacade {
|
|
|
drugConfig.setIsDeleted(IsDeleteEnum.N.getKey());
|
|
|
}
|
|
|
});
|
|
|
+
|
|
|
//删除已存在映射关系
|
|
|
IdListVO idListVO = new IdListVO();
|
|
|
idListVO.setIds(deleteIds);
|
|
@@ -203,8 +266,145 @@ public class DrugConfigFacade {
|
|
|
drugConfigList.forEach(drugConfig -> {
|
|
|
drugConfig.setHospitalId(hospitalIdVO.getHospitalId());
|
|
|
});
|
|
|
- saveOrUpdateRecords(drugConfigList);
|
|
|
+ importExcelRecords(drugConfigList, hospitalIdVO);
|
|
|
+ } else {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL, "校验失败,导入数据不能为空");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据导入
|
|
|
+ *
|
|
|
+ * @param drugConfigList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Boolean importExcelRecords(List<DrugConfig> drugConfigList,HospitalIdVO hospitalIdVO) {
|
|
|
+ Long hospitalId = hospitalIdVO.getHospitalId();
|
|
|
+ String userId = UserUtils.getCurrentPrincipleID();
|
|
|
+ Date now = DateUtil.now();
|
|
|
+
|
|
|
+ //1、数据完整性校验
|
|
|
+ //2、去除前后空格
|
|
|
+ //过滤空数据,保留重复数据,方便计行
|
|
|
+ drugConfigList = drugConfigList.stream()
|
|
|
+ .filter(i -> StringUtil.isNotBlank(i.getHisName())
|
|
|
+ || StringUtil.isNotBlank(i.getForm())
|
|
|
+ || StringUtil.isNotBlank(i.getUniqueCode())
|
|
|
+ || StringUtil.isNotBlank(i.getUniqueName()))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (ListUtil.isEmpty(drugConfigList)) {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL, "校验失败,导入数据不能为空");
|
|
|
+ }
|
|
|
+ List<String> emptyNumList = Lists.newLinkedList();
|
|
|
+ //药品剂型
|
|
|
+ List<DictionaryInfoDTO> dicTypeMappingList = dictionaryFacade.getListByGroupType(9);
|
|
|
+ List<String> formList = dicTypeMappingList.stream()
|
|
|
+ .filter(i -> StringUtil.isNotBlank(i.getName()))
|
|
|
+ .map(i -> i.getName())
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ List<String> formErrNumList = Lists.newLinkedList();
|
|
|
+ for (int i = 0; i < drugConfigList.size(); i++) {
|
|
|
+ if (StringUtil.isBlank(drugConfigList.get(i).getHisName())
|
|
|
+ || StringUtil.isBlank(drugConfigList.get(i).getUniqueName())) {
|
|
|
+ emptyNumList.add(String.valueOf(i + 2));
|
|
|
+ }
|
|
|
+ if (StringUtil.isNotBlank(drugConfigList.get(i).getHisName())) {
|
|
|
+ drugConfigList.get(i).setHisName(drugConfigList.get(i).getHisName().trim());
|
|
|
+ }
|
|
|
+ if (StringUtil.isNotBlank(drugConfigList.get(i).getUniqueName())) {
|
|
|
+ drugConfigList.get(i).setUniqueName(drugConfigList.get(i).getUniqueName().trim());
|
|
|
+ }
|
|
|
+ if (StringUtil.isNotBlank(drugConfigList.get(i).getForm())) {
|
|
|
+ if (!formList.contains(drugConfigList.get(i).getForm())) {
|
|
|
+ formErrNumList.add(String.valueOf(i + 2));
|
|
|
+ } else {
|
|
|
+ drugConfigList.get(i).setForm(drugConfigList.get(i).getForm().trim());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (StringUtil.isNotBlank(drugConfigList.get(i).getUniqueCode())) {
|
|
|
+ drugConfigList.get(i).setUniqueCode(drugConfigList.get(i).getUniqueCode().trim());
|
|
|
+ } else {
|
|
|
+ drugConfigList.get(i).setUniqueCode(null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (ListUtil.isNotEmpty(emptyNumList)) {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL, "以下行数(不计入空行)存在不完整数据:"
|
|
|
+ + emptyNumList.stream().collect(Collectors.joining("、"))
|
|
|
+ + "。导入取消,请修改后再试。\n");
|
|
|
+ }
|
|
|
+ if (ListUtil.isNotEmpty(formErrNumList)) {
|
|
|
+ throw new CommonException(CommonErrorCode.PARAM_IS_NULL, "以下行数(不计入空行)药品剂型与数据库药品剂型不匹配:"
|
|
|
+ + formErrNumList.stream().collect(Collectors.joining("、"))
|
|
|
+ + "。导入取消,请修改后再试。\n");
|
|
|
}
|
|
|
+
|
|
|
+ List<String> hisNames = drugConfigList
|
|
|
+ .stream()
|
|
|
+ .map(i -> i.getHisName())
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ List<String> uniqueNames = drugConfigList
|
|
|
+ .stream()
|
|
|
+ .map(i -> i.getUniqueName())
|
|
|
+ .collect(Collectors.toList());
|
|
|
+
|
|
|
+ // 验证数据是否已存在,已存在的先删除
|
|
|
+ // 没id的删除重新插入,有id的更新
|
|
|
+ List<Long> deleteIds = Lists.newLinkedList();
|
|
|
+ Map<String, Map<String, Map<String, Long>>> configMap
|
|
|
+ = getConfigMap(Long.valueOf(hospitalId), hisNames, uniqueNames);
|
|
|
+ drugConfigList.forEach(drugConfig -> {
|
|
|
+ drugConfig.setHospitalId(Long.valueOf(hospitalId));
|
|
|
+ drugConfig.setModifier(userId);
|
|
|
+ drugConfig.setGmtModified(now);
|
|
|
+ String form = StringUtil.isBlank(drugConfig.getForm()) ? "" : drugConfig.getForm();
|
|
|
+ if (drugConfig.getId() == null) {
|
|
|
+ if (configMap.get(drugConfig.getHisName()) != null
|
|
|
+ && configMap.get(drugConfig.getHisName()).get(form) != null
|
|
|
+ && configMap.get(drugConfig.getHisName()).get(form).get(drugConfig.getUniqueName()) != null) {
|
|
|
+ deleteIds.add(configMap.get(drugConfig.getHisName()).get(form).get(drugConfig.getUniqueName()));
|
|
|
+ }
|
|
|
+ drugConfig.setCreator(userId);
|
|
|
+ drugConfig.setGmtCreate(now);
|
|
|
+ }
|
|
|
+ if (drugConfig.getIsDeleted() == null) {
|
|
|
+ drugConfig.setIsDeleted(IsDeleteEnum.N.getKey());
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ //标准术语校验
|
|
|
+ List<String> errorNumList = Lists.newLinkedList();
|
|
|
+ ConceptVO conceptVO = new ConceptVO();
|
|
|
+ conceptVO.setNames(uniqueNames);
|
|
|
+ conceptVO.setType(ConceptTypeEnum.Drug.getKey());
|
|
|
+ RespDTO<List<String>> respDTO = cdssCoreClient.getConceptNames(conceptVO);
|
|
|
+ RespDTOUtil.respNGDealCover(respDTO, "标准术语校验失败");
|
|
|
+ List<String> names = respDTO.data;
|
|
|
+ for (int i = 0; i < drugConfigList.size(); i++) {
|
|
|
+ if (!names.contains(drugConfigList.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("、"))
|
|
|
+ + "。导入取消,请修改后再试。");
|
|
|
+ }
|
|
|
+
|
|
|
+ //重复数据过滤
|
|
|
+ drugConfigList = drugConfigList
|
|
|
+ .stream()
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList());
|
|
|
+
|
|
|
+ //删除已存在映射关系
|
|
|
+ IdListVO idListVO = new IdListVO();
|
|
|
+ idListVO.setIds(deleteIds);
|
|
|
+ deleteRecords(idListVO);
|
|
|
+ drugConfigService.saveOrUpdateBatch(drugConfigList);
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -213,9 +413,137 @@ public class DrugConfigFacade {
|
|
|
* @param hospitalId
|
|
|
* @param hisNames
|
|
|
* @param uniqueNames
|
|
|
+ * @return Map<hisName,Map<form,Map<uniqueName,id>>>
|
|
|
+ */
|
|
|
+ public Map<String, Map<String,Map<String, Long>>> getConfigMap(Long hospitalId, List<String> hisNames, List<String> uniqueNames) {
|
|
|
+ Map<String, Map<String, Map<String, Long>>> retMap = new HashMap<>();
|
|
|
+ QueryWrapper<DrugConfig> 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<DrugConfig> records = drugConfigService.list(queryWrapper);
|
|
|
+ if (ListUtil.isEmpty(records)) {
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+ Map<String, List<DrugConfig>> hisNameMap = EntityUtil.makeEntityListMap(records, "hisName");
|
|
|
+ for (Map.Entry<String, List<DrugConfig>> entry : hisNameMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(entry.getValue())) {
|
|
|
+ Map<String, Map<String, Long>> formMap = new HashMap<>();
|
|
|
+ entry.getValue().forEach(i -> {
|
|
|
+ if (StringUtil.isBlank(i.getForm())) {
|
|
|
+ i.setForm("");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ Map<String, List<DrugConfig>> subMap
|
|
|
+ = EntityUtil.makeEntityListMap(entry.getValue(), "form");
|
|
|
+ for (Map.Entry<String, List<DrugConfig>> subEntry : subMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(subEntry.getValue())) {
|
|
|
+ formMap.put(subEntry.getKey(),
|
|
|
+ EntityUtil.makeMapWithKeyValue(subEntry.getValue(), "uniqueName", "id"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ retMap.put(entry.getKey(), formMap);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取映射关系
|
|
|
+ * Map<uniqueName,Map<form,Map<hisName,id>>>
|
|
|
+ *
|
|
|
+ * @param hospitalId
|
|
|
+ * @param hisNames
|
|
|
+ * @param uniqueNames
|
|
|
* @return
|
|
|
*/
|
|
|
- public Map<String, Map<String, Long>> getConfigMap(Long hospitalId, List<String> hisNames, List<String> uniqueNames) {
|
|
|
+ public Map<String,Map<String,Map<String,Long>>> getUniqueNameConfigMap(Long hospitalId, List<String> hisNames, List<String> uniqueNames) {
|
|
|
+ Map<String, Map<String, Map<String, Long>>> retMap = new HashMap<>();
|
|
|
+ QueryWrapper<DrugConfig> 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<DrugConfig> records = drugConfigService.list(queryWrapper);
|
|
|
+ if (ListUtil.isEmpty(records)) {
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+ records.forEach(i -> {
|
|
|
+ if (StringUtil.isBlank(i.getForm())) {
|
|
|
+ i.setForm("");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ Map<String, List<DrugConfig>> uniqueNameMap = EntityUtil.makeEntityListMap(records, "uniqueName");
|
|
|
+ for (Map.Entry<String, List<DrugConfig>> entry : uniqueNameMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(entry.getValue())) {
|
|
|
+ Map<String, Map<String, Long>> formMap = new HashMap<>();
|
|
|
+ Map<String, List<DrugConfig>> subMap
|
|
|
+ = EntityUtil.makeEntityListMap(entry.getValue(), "form");
|
|
|
+ for (Map.Entry<String, List<DrugConfig>> subEntry : subMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(subEntry.getValue())) {
|
|
|
+ formMap.put(subEntry.getKey(),
|
|
|
+ EntityUtil.makeMapWithKeyValue(subEntry.getValue(), "hisName", "id"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ retMap.put(entry.getKey(), formMap);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取映射关系-公表名
|
|
|
+ *
|
|
|
+ * @param hospitalId
|
|
|
+ * @param hisNames
|
|
|
+ * @param uniqueNames
|
|
|
+ * @return Map<hisName,Map<uniqueName,id>>
|
|
|
+ */
|
|
|
+ public Map<String, Map<String,Long>> getConfigMapWithoutForm(Long hospitalId, List<String> hisNames, List<String> uniqueNames) {
|
|
|
+ Map<String, Map<String, Long>> retMap = new HashMap<>();
|
|
|
+ QueryWrapper<DrugConfig> 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<DrugConfig> records = drugConfigService.list(queryWrapper);
|
|
|
+ if (ListUtil.isEmpty(records)) {
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+ Map<String, List<DrugConfig>> hisNameMap
|
|
|
+ = EntityUtil.makeEntityListMap(records, "hisName");
|
|
|
+ for (Map.Entry<String, List<DrugConfig>> entry : hisNameMap.entrySet()) {
|
|
|
+ if (ListUtil.isNotEmpty(entry.getValue())) {
|
|
|
+ retMap.put(entry.getKey(),
|
|
|
+ EntityUtil.makeMapWithKeyValue(records, "uniqueName", "id"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return retMap;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取映射关系
|
|
|
+ * Map<uniqueName,Map<hisName,id>>
|
|
|
+ *
|
|
|
+ * @param hospitalId
|
|
|
+ * @param hisNames
|
|
|
+ * @param uniqueNames
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public Map<String,Map<String,Long>> getUniqueNameConfigMapWithoutForm(Long hospitalId, List<String> hisNames, List<String> uniqueNames) {
|
|
|
Map<String, Map<String, Long>> retMap = new HashMap<>();
|
|
|
QueryWrapper<DrugConfig> queryWrapper = new QueryWrapper<>();
|
|
|
queryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
@@ -230,10 +558,17 @@ public class DrugConfigFacade {
|
|
|
if (ListUtil.isEmpty(records)) {
|
|
|
return retMap;
|
|
|
}
|
|
|
- Map<String, List<DrugConfig>> configMap = EntityUtil.makeEntityListMap(records, "hisName");
|
|
|
- for (Map.Entry<String, List<DrugConfig>> entry : configMap.entrySet()) {
|
|
|
+ records.forEach(i -> {
|
|
|
+ if (StringUtil.isBlank(i.getForm())) {
|
|
|
+ i.setForm("");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ Map<String, List<DrugConfig>> uniqueNameMap
|
|
|
+ = EntityUtil.makeEntityListMap(records, "uniqueName");
|
|
|
+ for (Map.Entry<String, List<DrugConfig>> entry : uniqueNameMap.entrySet()) {
|
|
|
if (ListUtil.isNotEmpty(entry.getValue())) {
|
|
|
- retMap.put(entry.getKey(), EntityUtil.makeMapWithKeyValue(entry.getValue(), "uniqueName", "id"));
|
|
|
+ retMap.put(entry.getKey(),
|
|
|
+ EntityUtil.makeMapWithKeyValue(records, "hisName", "id"));
|
|
|
}
|
|
|
}
|
|
|
return retMap;
|
|
@@ -263,4 +598,14 @@ public class DrugConfigFacade {
|
|
|
public IPage<HosRelationNumDTO> getRelationNumPage(HosRelationNumPageVO hosRelationNumPageVO) {
|
|
|
return drugConfigService.getRelationNumPage(hosRelationNumPageVO);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据导入模板导出
|
|
|
+ *
|
|
|
+ * @param response
|
|
|
+ */
|
|
|
+ public void exportExcelModule(HttpServletResponse response) {
|
|
|
+ String fileName = "药品映射模板.xls";
|
|
|
+ ExcelUtils.exportExcel(new ArrayList<>(), null, "sheet1", DrugConfig.class, fileName, response, 12.8f);
|
|
|
+ }
|
|
|
}
|