|
@@ -7,6 +7,7 @@ import com.diagbot.dto.WordCrfDTO;
|
|
|
import com.diagbot.process.HighRiskProcess;
|
|
|
import com.diagbot.vo.HighRiskNeoVO;
|
|
|
import com.diagbot.vo.IndicationPushVO;
|
|
|
+import com.diagbot.vo.ItemExt;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
@@ -44,13 +45,13 @@ public class HighRiskFacade {
|
|
|
public HighRiskNeoVO fillHighRiskNeo(WordCrfDTO wordCrfDTO) {
|
|
|
HighRiskNeoVO highRiskNeoVO = new HighRiskNeoVO();
|
|
|
|
|
|
- List<Item> items = wordCrfDTO.getDrugOrder();
|
|
|
+ List<ItemExt> itemExts = wordCrfDTO.getDrugOrder();
|
|
|
|
|
|
- for (Item item : items) {
|
|
|
+ for (ItemExt item : itemExts) {
|
|
|
highRiskNeoVO.getDrugList().put(item.getName(), item.getUniqueName());
|
|
|
}
|
|
|
|
|
|
- items = wordCrfDTO.getOperationOrder();
|
|
|
+ List<Item> items = wordCrfDTO.getOperationOrder();
|
|
|
|
|
|
for (Item item : items) {
|
|
|
highRiskNeoVO.getOperationList().put(item.getName(), item.getUniqueName());
|