|
@@ -64,7 +64,7 @@ public class ChangxThreeLevelWardDocTrans extends ModelDocTrans {
|
|
|
//总的查房记录 汇总
|
|
|
ThreeLevelWardDoc allDoctorWradDoc = new ThreeLevelWardDoc();
|
|
|
allDoctorWradDoc.setStructureMap(structureMap);
|
|
|
- allDoctorWradDoc.setPageData((Map) xmlNodeValueMap);
|
|
|
+ allDoctorWradDoc.setPageData((Map) structureMap);
|
|
|
threeLevelWardDoc.addAllDoctorWradDoc(allDoctorWradDoc);
|
|
|
|
|
|
//主任医师查房
|
|
@@ -81,7 +81,7 @@ public class ChangxThreeLevelWardDocTrans extends ModelDocTrans {
|
|
|
if (directorDoctorWardDoc == null && attendingDoctorWardDoc == null) {
|
|
|
GeneralDoctorWardDoc generalDoctorWardDoc = new GeneralDoctorWardDoc();
|
|
|
generalDoctorWardDoc.setStructureMap(structureMap);
|
|
|
- generalDoctorWardDoc.setPageData((Map) xmlNodeValueMap);
|
|
|
+ generalDoctorWardDoc.setPageData((Map) structureMap);
|
|
|
threeLevelWardDoc.addGeneralDoctorWardDoc(generalDoctorWardDoc);
|
|
|
}
|
|
|
}
|
|
@@ -100,7 +100,7 @@ public class ChangxThreeLevelWardDocTrans extends ModelDocTrans {
|
|
|
if (StringUtils.isNotEmpty(title) && title.contains("主任")) {
|
|
|
directorDoctorWardDoc = new DirectorDoctorWardDoc();
|
|
|
directorDoctorWardDoc.setStructureMap(structureMap);
|
|
|
- directorDoctorWardDoc.setPageData((Map) sourceMap);
|
|
|
+ directorDoctorWardDoc.setPageData((Map) structureMap);
|
|
|
}
|
|
|
return directorDoctorWardDoc;
|
|
|
}
|
|
@@ -118,7 +118,7 @@ public class ChangxThreeLevelWardDocTrans extends ModelDocTrans {
|
|
|
if (StringUtils.isNotEmpty(title) && title.contains("主治")) {
|
|
|
attendingDoctorWardDoc = new AttendingDoctorWardDoc();
|
|
|
attendingDoctorWardDoc.setStructureMap(structureMap);
|
|
|
- attendingDoctorWardDoc.setPageData((Map) sourceMap);
|
|
|
+ attendingDoctorWardDoc.setPageData((Map) structureMap);
|
|
|
}
|
|
|
return attendingDoctorWardDoc;
|
|
|
}
|