|
@@ -75,11 +75,6 @@ public class YiWuBeHospitalizedDocTrans extends ModelDocTrans {
|
|
String value = structureMap.get("入院记录").split(" ")[0];
|
|
String value = structureMap.get("入院记录").split(" ")[0];
|
|
structureMap.put("孕产次", value);
|
|
structureMap.put("孕产次", value);
|
|
}
|
|
}
|
|
- //产科个人史
|
|
|
|
- if(structureMap.containsKey("个人史")){
|
|
|
|
- String value =structureMap.get("个人史").split("1")[0];
|
|
|
|
- structureMap.put("个人史",value);
|
|
|
|
- }
|
|
|
|
//入院记录下方的记录者签名和时间
|
|
//入院记录下方的记录者签名和时间
|
|
if(structureMap.containsKey("修正诊断")){
|
|
if(structureMap.containsKey("修正诊断")){
|
|
String value=structureMap.get("修正诊断").replaceAll("医师签名","").
|
|
String value=structureMap.get("修正诊断").replaceAll("医师签名","").
|
|
@@ -116,7 +111,7 @@ public class YiWuBeHospitalizedDocTrans extends ModelDocTrans {
|
|
}
|
|
}
|
|
//产科入院记录个人史处理
|
|
//产科入院记录个人史处理
|
|
if(structureMap.containsKey("个人史")){
|
|
if(structureMap.containsKey("个人史")){
|
|
- String value=structureMap.get("个人史").replaceAll("月经史:","");
|
|
|
|
|
|
+ String value=structureMap.get("个人史").split("月经史")[0];
|
|
structureMap.put("个人史",value);
|
|
structureMap.put("个人史",value);
|
|
}
|
|
}
|
|
OrdinaryAssistant.removeBlank(structureMap);
|
|
OrdinaryAssistant.removeBlank(structureMap);
|