|
@@ -109,7 +109,6 @@ public class YiWuFirstCourseRecordDocTrans extends ModelDocTrans {
|
|
|
// 最后的主诊医师处理
|
|
|
if(structureMap.containsKey("诊疗计划")){
|
|
|
if(StringUtils.isNotEmpty(structureMap.get("诊疗计划"))){
|
|
|
- structureMap.put("诊疗计划",structureMap.get("诊疗计划").split("诊疗方案")[0]);
|
|
|
String temp=structureMap.get("诊疗计划");
|
|
|
List<String> titles = Lists.newArrayList("。",";");
|
|
|
for (String str: titles) {
|
|
@@ -121,6 +120,7 @@ public class YiWuFirstCourseRecordDocTrans extends ModelDocTrans {
|
|
|
temp=temp.replaceAll(str,"");
|
|
|
}
|
|
|
structureMap.put("主诊医师",temp);
|
|
|
+ structureMap.put("诊疗计划",structureMap.get("诊疗计划").split("诊疗方案")[0]);
|
|
|
}
|
|
|
}
|
|
|
return firstCourseRecordDoc;
|