|
@@ -1,6 +1,5 @@
|
|
|
package com.diagbot.facade;
|
|
|
|
|
|
-import com.diagbot.dto.AnesthesiaInfoDTO;
|
|
|
import com.diagbot.dto.DictionaryInfoDTO;
|
|
|
import com.diagbot.dto.DiseaseInfoDTO;
|
|
|
import com.diagbot.dto.DrugInfoDTO;
|
|
@@ -59,7 +58,7 @@ public class MedRetrievalFacade {
|
|
|
List<IndexDTO> indexList = Lists.newLinkedList();
|
|
|
|
|
|
/**
|
|
|
- * 类型:1-化验大项、2-化验小项、3-辅检、4-诊断、5-药品、6-手术和操作、7-科室、8-输血、9-症状、10-量表、11-护理、12-麻醉
|
|
|
+ * 类型:1-化验大项、2-化验小项、3-辅检、4-诊断、5-药品、6-手术和操作、7-科室、8-输血、9-症状、10-量表、11-护理
|
|
|
*/
|
|
|
switch (retrievalVO.getType()) {
|
|
|
case 1:
|
|
@@ -163,14 +162,6 @@ public class MedRetrievalFacade {
|
|
|
retrievalDTO.setNursenames(BeanUtil.listCopyTo(indexList, NurseInfoDTO.class));
|
|
|
}
|
|
|
break;
|
|
|
- case 12:
|
|
|
- medRetrievalVO.setTypeId(LexiconEnum.Anesthesia.getKey());
|
|
|
- medRetrievalVO.getTypeIds().add(LexiconEnum.Anesthesia.getKey());
|
|
|
- indexList = klConceptFacade.index(medRetrievalVO);
|
|
|
- if (ListUtil.isNotEmpty(indexList)) {
|
|
|
- retrievalDTO.setAnesthesiaInfonames(BeanUtil.listCopyTo(indexList, AnesthesiaInfoDTO.class));
|
|
|
- }
|
|
|
- break;
|
|
|
}
|
|
|
return retrievalDTO;
|
|
|
}
|