|
@@ -28,14 +28,16 @@ public class BeiLunBeHospitalizedHtmlAnalysis implements BeiLunHtmlAnalysis {
|
|
|
|
|
|
if (recTitle.contains("24小时")) {
|
|
|
analysis24h(doc, map);
|
|
|
+ BeiLunHtmlAnalysisUtil.insertModuleId(recTypeId, map);
|
|
|
} else if (recTitle.contains("日间病历")) {
|
|
|
analysisDay(doc, map);
|
|
|
+ BeiLunHtmlAnalysisUtil.insertModuleId(recTypeId, map);
|
|
|
} else {
|
|
|
analysisGeneral(doc, recTitle, map);
|
|
|
+ //默认使用标准模板
|
|
|
+ map.put("mode_id", "402");
|
|
|
}
|
|
|
//BeiLunHtmlAnalysisUtil.insertModuleId(recTypeId, map);
|
|
|
- //默认使用标准模板
|
|
|
- map.put("mode_id", "402");
|
|
|
return map;
|
|
|
}
|
|
|
|