|
@@ -147,7 +147,8 @@ public class BeiLunThreeLevelWardDocTrans extends ModelDocTrans {
|
|
|
String doctorTitle = getDoctorTitle(operationDocs, recordDate, "一助");
|
|
|
title = title.replace("一助", doctorTitle);
|
|
|
}
|
|
|
- if ((StringUtils.isNotEmpty(subTitle(title)) && subTitle(title).contains("主任")) || findDirector(content)) {
|
|
|
+ if ((StringUtils.isNotEmpty(subTitle(title)) && subTitle(title).contains("主任")) || findDirector(content)
|
|
|
+ || "三级医师查房".equals(title)) {
|
|
|
directorDoctorWardDoc = new DirectorDoctorWardDoc();
|
|
|
directorDoctorWardDoc.setStructureMap(structureMap);
|
|
|
directorDoctorWardDoc.setPageData((Map) structureMap);
|
|
@@ -177,7 +178,7 @@ public class BeiLunThreeLevelWardDocTrans extends ModelDocTrans {
|
|
|
title = title.replace("一助", doctorTitle);
|
|
|
}
|
|
|
if ((StringUtils.isNotEmpty(subTitle(title)) && subTitle(title).contains("主治"))
|
|
|
- || findAttend(content)) {
|
|
|
+ || findAttend(content) || "三级医师查房".equals(title)) {
|
|
|
attendingDoctorWardDoc = new AttendingDoctorWardDoc();
|
|
|
attendingDoctorWardDoc.setStructureMap(structureMap);
|
|
|
attendingDoctorWardDoc.setPageData((Map) structureMap);
|