|
@@ -62,6 +62,24 @@ public class BeiLunPreoperativeHtmlAnalysis implements BeiLunHtmlAnalysis {
|
|
|
CommonAnalysisUtil.processType(map, "5.本次手术是否属于计划性多次手术");
|
|
|
CommonAnalysisUtil.processType(map, "讨论方式");
|
|
|
CommonAnalysisUtil.makeEmpty(map, "主刀医生签名");
|
|
|
+ // 解决医生签名显示 年 月 日 时 分
|
|
|
+ signatureTime(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 解决医生签名时间显示 年 月 日 时 分
|
|
|
+ *
|
|
|
+ * @param map
|
|
|
+ */
|
|
|
+ private void signatureTime(Map<String, String> map) {
|
|
|
+ String goCureDoctor = map.get("经治医生签字时间");
|
|
|
+ String operateDoctor = map.get("主刀医生签字时间");
|
|
|
+ if (goCureDoctor.contains("年 月 日 时 分")) {
|
|
|
+ map.put("经治医生签字时间", goCureDoctor.replace("年 月 日 时 分", ""));
|
|
|
+ }
|
|
|
+ if (operateDoctor.contains("年 月 日 时 分")) {
|
|
|
+ map.put("主刀医生签字时间", operateDoctor.replace("年 月 日 时 分", ""));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|