|
@@ -11,6 +11,7 @@ import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @ClassName : THR0140
|
|
* @ClassName : THR0140
|
|
@@ -26,8 +27,8 @@ public class THR0140 extends QCCatalogue {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
List<ThreeLevelWardDoc> allDoctorWradDocs = threeLevelWardDocs.get(0).getAllDoctorWradDocs();
|
|
List<ThreeLevelWardDoc> allDoctorWradDocs = threeLevelWardDocs.get(0).getAllDoctorWradDocs();
|
|
- allDoctorWradDocs.stream().filter(doc -> StringUtil.isBlank(doc.getStructureMap().get("记录医师")));
|
|
|
|
- if (allDoctorWradDocs.size() == 0) {
|
|
|
|
|
|
+ List<ThreeLevelWardDoc> recordDoctorList = allDoctorWradDocs.stream().filter(doc -> StringUtil.isBlank(doc.getStructureMap().get("记录医师"))).collect(Collectors.toList());
|
|
|
|
+ if (recordDoctorList.size() == 0) {
|
|
status.set("0");
|
|
status.set("0");
|
|
}
|
|
}
|
|
|
|
|