|
@@ -14,6 +14,7 @@ import org.springframework.stereotype.Component;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
import java.util.regex.Pattern;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* @ClassName : THR03120
|
|
@@ -33,6 +34,7 @@ public class THR03123 extends QCCatalogue {
|
|
|
LeaveHospitalDoc leaveHospitalDoc = inputInfo.getLeaveHospitalDoc();
|
|
|
List<String> chemotherapyList = Content.chemotherapyDrugList;
|
|
|
List<String> tumorDiseaseList = Content.tumorDiseaseList;
|
|
|
+ tumorDiseaseList = tumorDiseaseList.stream().filter(obj->obj.contains("癌") || obj.contains("恶性")).collect(Collectors.toList());
|
|
|
//首页判断出院诊断
|
|
|
if (firstPageRecordDoc != null) {
|
|
|
Map<String, Object> structureExtMap = firstPageRecordDoc.getStructureExtMap();
|