|
@@ -674,6 +674,12 @@ public class XszyyCommonAnalysisUtil {
|
|
|
}
|
|
|
String content = sb.toString();
|
|
|
structureMap.put("病情记录", content);
|
|
|
+ /*if(content.contains("/书写医师签名")){
|
|
|
+ structureMap.put("记录医生",content.substring(content.lastIndexOf("/书写医师签名")+1));
|
|
|
+ }else if(content.contains("/书写医师")){
|
|
|
+ structureMap.put("记录医生",content.substring(content.lastIndexOf("/书写医师")+1));
|
|
|
+ }*/
|
|
|
+ /*
|
|
|
if (structureMap.containsKey("病情记录")) {
|
|
|
String info = structureMap.get("病情记录");
|
|
|
if (info.contains("记录医师")) {
|
|
@@ -686,7 +692,7 @@ public class XszyyCommonAnalysisUtil {
|
|
|
structureMap.put("病情记录", info.substring(0, info.lastIndexOf("主治医师")));
|
|
|
structureMap.put("医师签名", info.substring(info.lastIndexOf("主治医师") + "主治医师:".length()));
|
|
|
}
|
|
|
- }
|
|
|
+ }*/
|
|
|
}
|
|
|
}
|
|
|
|