|
@@ -43,17 +43,16 @@ public class TaiZhouThreeLevelWardDocTrans extends ModelDocTrans {
|
|
if (StringUtils.isEmpty(structureMap.get("查房日期"))) {
|
|
if (StringUtils.isEmpty(structureMap.get("查房日期"))) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
-
|
|
|
|
//不能简单的标准转化,如果有查房标题,优先使用
|
|
//不能简单的标准转化,如果有查房标题,优先使用
|
|
if (StringUtils.isEmpty(structureMap.get("查房标题")) && StringUtils.isNotEmpty(structureMap.get("查房备注"))) {
|
|
if (StringUtils.isEmpty(structureMap.get("查房标题")) && StringUtils.isNotEmpty(structureMap.get("查房备注"))) {
|
|
structureMap.put("查房标题", structureMap.get("查房备注"));
|
|
structureMap.put("查房标题", structureMap.get("查房备注"));
|
|
}
|
|
}
|
|
- if (StringUtils.isEmpty(structureMap.get("查房标题")) && StringUtils.isNotEmpty(structureMap.get("上级查房医生职称"))) {
|
|
|
|
- structureMap.put("查房标题", structureMap.get("上级查房医生职称"));
|
|
|
|
- }
|
|
|
|
if (StringUtils.isEmpty(structureMap.get("查房标题")) && StringUtils.isNotEmpty(structureMap.get("查房类别"))) {
|
|
if (StringUtils.isEmpty(structureMap.get("查房标题")) && StringUtils.isNotEmpty(structureMap.get("查房类别"))) {
|
|
structureMap.put("查房标题", structureMap.get("查房类别"));
|
|
structureMap.put("查房标题", structureMap.get("查房类别"));
|
|
}
|
|
}
|
|
|
|
+ if (StringUtils.isEmpty(structureMap.get("查房标题")) && StringUtils.isNotEmpty(structureMap.get("上级查房医生职称"))) {
|
|
|
|
+ structureMap.put("查房标题", structureMap.get("上级查房医生职称"));
|
|
|
|
+ }
|
|
//总的查房记录 汇总
|
|
//总的查房记录 汇总
|
|
ThreeLevelWardDoc allDoctorWradDoc = new ThreeLevelWardDoc();
|
|
ThreeLevelWardDoc allDoctorWradDoc = new ThreeLevelWardDoc();
|
|
allDoctorWradDoc.setStructureMap(structureMap);
|
|
allDoctorWradDoc.setStructureMap(structureMap);
|