|
@@ -1,5 +1,6 @@
|
|
|
package com.diagbot.facade;
|
|
|
|
|
|
+import com.diagbot.dto.AnesthesiaInfoDTO;
|
|
|
import com.diagbot.dto.DictionaryInfoDTO;
|
|
|
import com.diagbot.dto.DiseaseInfoDTO;
|
|
|
import com.diagbot.dto.DrugInfoDTO;
|
|
@@ -58,7 +59,7 @@ public class MedRetrievalFacade {
|
|
|
List<IndexDTO> indexList = Lists.newLinkedList();
|
|
|
|
|
|
/**
|
|
|
- * 类型:1-化验大项、2-化验小项、3-辅检、4-诊断、5-药品、6-手术和操作、7-科室、8-输血、9-症状、10-量表、11-护理
|
|
|
+ * 类型:1-化验大项、2-化验小项、3-辅检、4-诊断、5-药品、6-手术和操作、7-科室、8-输血、9-症状、10-量表、11-护理、12-麻醉
|
|
|
*/
|
|
|
switch (retrievalVO.getType()) {
|
|
|
case 1:
|
|
@@ -162,6 +163,14 @@ 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;
|
|
|
}
|