|
@@ -34,25 +34,26 @@ public class THR0140 extends QCCatalogue {
|
|
}
|
|
}
|
|
List<ThreeLevelWardDoc> recordDoctorList = allDoctorWradDocs
|
|
List<ThreeLevelWardDoc> recordDoctorList = allDoctorWradDocs
|
|
.stream()
|
|
.stream()
|
|
- .filter(doc -> StringUtil.isBlank(doc.getStructureMap().get("记录医师")))
|
|
|
|
|
|
+ .filter(doc -> StringUtil.isBlank(doc.getStructureMap().get("记录医生")))
|
|
.collect(Collectors.toList());
|
|
.collect(Collectors.toList());
|
|
if (recordDoctorList.size() == 0) {
|
|
if (recordDoctorList.size() == 0) {
|
|
status.set("0");
|
|
status.set("0");
|
|
|
|
+ return;
|
|
}
|
|
}
|
|
|
|
|
|
StringBuffer message = new StringBuffer();
|
|
StringBuffer message = new StringBuffer();
|
|
//长兴:返回所有医师未签名的记录日期
|
|
//长兴:返回所有医师未签名的记录日期
|
|
int i = 0;
|
|
int i = 0;
|
|
for (ThreeLevelWardDoc threeLevelWardDoc : allDoctorWradDocs) {
|
|
for (ThreeLevelWardDoc threeLevelWardDoc : allDoctorWradDocs) {
|
|
- if (StringUtil.isBlank(threeLevelWardDoc.getStructureMap().get("记录医师"))) {
|
|
|
|
- if (threeLevelWardDoc.getStructureMap() != null && threeLevelWardDoc.getStructureMap().get("记录时间") != null) {
|
|
|
|
|
|
+ if (StringUtil.isBlank(threeLevelWardDoc.getStructureMap().get("记录医生"))) {
|
|
|
|
+ if (threeLevelWardDoc.getStructureMap() != null && threeLevelWardDoc.getStructureMap().get("查房日期") != null) {
|
|
if (i > 1) {
|
|
if (i > 1) {
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
if (message.toString().length() == 0) {
|
|
if (message.toString().length() == 0) {
|
|
- message.append(threeLevelWardDoc.getStructureMap().get("记录时间"));
|
|
|
|
|
|
+ message.append(threeLevelWardDoc.getStructureMap().get("查房日期"));
|
|
} else {
|
|
} else {
|
|
- message.append(",").append(threeLevelWardDoc.getStructureMap().get("记录时间"));
|
|
|
|
|
|
+ message.append(",").append(threeLevelWardDoc.getStructureMap().get("查房日期"));
|
|
}
|
|
}
|
|
i++;
|
|
i++;
|
|
}
|
|
}
|