|
@@ -89,7 +89,10 @@ public class YiWuBeHospitalizedDocTrans extends ModelDocTrans {
|
|
|
replaceAll("补充诊断","").
|
|
|
replaceAll("修正诊断","").
|
|
|
replaceAll("\"","").
|
|
|
- replaceAll(":","").replaceAll(" ","");
|
|
|
+ replaceAll(":","").
|
|
|
+ replaceAll("日期","").
|
|
|
+ replaceAll("医生签名","").
|
|
|
+ replaceAll("签名时间","");
|
|
|
structureMap.put("修正诊断",value);
|
|
|
}
|
|
|
if(structureMap.containsKey("补充诊断")){
|
|
@@ -100,9 +103,17 @@ public class YiWuBeHospitalizedDocTrans extends ModelDocTrans {
|
|
|
replaceAll("补充诊断","").
|
|
|
replaceAll("修正诊断","").
|
|
|
replaceAll("\"","").
|
|
|
- replaceAll(":","").replaceAll(" ","");
|
|
|
+ replaceAll(":","").
|
|
|
+ replaceAll("日期","").
|
|
|
+ replaceAll("医生签名","").
|
|
|
+ replaceAll("签名时间","");
|
|
|
structureMap.put("补充诊断",value);
|
|
|
}
|
|
|
+ if(structureMap.containsKey("初步诊断")){
|
|
|
+ String value=structureMap.get("初步诊断").replaceAll("日期","").
|
|
|
+ replaceAll(":","");
|
|
|
+ structureMap.put("初步诊断",value);
|
|
|
+ }
|
|
|
OrdinaryAssistant.removeBlank(structureMap);
|
|
|
}
|
|
|
/*if (StringUtils.isEmpty(structureMap.get("入院时间")) && StringUtils.isNotEmpty(structureMap.get("入病房时间"))) {
|