|
@@ -170,6 +170,10 @@ public class BeiLunOperationDocTrans extends ModelDocTrans {
|
|
|
String recTypeId = contentMap.get("recTypeId").toString();
|
|
|
BeiLunHtmlAnalysis beiLunHtmlAnalysis = new BeiLunOperationRecordHtmlAnalysis();
|
|
|
Map<String, String> sourceMap = beiLunHtmlAnalysis.analysis(content, recTitle, recTypeId);
|
|
|
+ //含有手术情况知情书时间特殊处理
|
|
|
+ if (sourceMap.containsKey("时间") && sourceMap.get("时间").contains("宁波市北仑区人民医院")) {
|
|
|
+ sourceMap.put("时间", sourceMap.get("时间").substring(0, sourceMap.get("时间").indexOf("宁波市北仑区人民医院")));
|
|
|
+ }
|
|
|
if (MapUtils.isNotEmpty(sourceMap)) {
|
|
|
structureMap = OrdinaryAssistant.mapKeyContrast(sourceMap, operationRecord_keyContrasts);
|
|
|
structureMap.put("记录编号", contentMap.get("recId").toString());
|