|
@@ -49,15 +49,15 @@ public class FirstCourseRecordAI extends ModelAI {
|
|
|
//初步诊断
|
|
|
if (StringUtils.isNotEmpty(structureMap.get(Content.initial_diag))) {
|
|
|
String initial_diag = structureMap.get(Content.initial_diag);
|
|
|
- if (CatalogueUtil.numberExist(initial_diag)) {
|
|
|
+ /*if (CatalogueUtil.numberExist(initial_diag)) {
|
|
|
initial_diag = CatalogueUtil.removeBetweenWordSpace(structureMap.get(Content.initial_diag));
|
|
|
- }
|
|
|
+ }*/
|
|
|
putContent(crfContent, medicalTextType.get(1), initial_diag, Content.initial_diag);
|
|
|
} else if (firstCourseRecordDoc.getInitialDiagLabel() != null && StringUtil.isNotBlank(firstCourseRecordDoc.getInitialDiagLabel().getText())) {
|
|
|
String initial_diag = firstCourseRecordDoc.getInitialDiagLabel().getText();
|
|
|
- if (CatalogueUtil.numberExist(initial_diag)) {
|
|
|
+ /*if (CatalogueUtil.numberExist(initial_diag)) {
|
|
|
initial_diag = CatalogueUtil.removeBetweenWordSpace(firstCourseRecordDoc.getInitialDiagLabel().getText());
|
|
|
- }
|
|
|
+ }*/
|
|
|
putContent(crfContent, medicalTextType.get(1), initial_diag, Content.initial_diag);
|
|
|
}
|
|
|
|
|
@@ -66,15 +66,15 @@ public class FirstCourseRecordAI extends ModelAI {
|
|
|
//鉴别诊断
|
|
|
if (StringUtils.isNotEmpty(structureMap.get("鉴别诊断"))) {
|
|
|
String diffDiag = structureMap.get("鉴别诊断");
|
|
|
- if (CatalogueUtil.numberExist(diffDiag)) {
|
|
|
+ /*if (CatalogueUtil.numberExist(diffDiag)) {
|
|
|
diffDiag = CatalogueUtil.removeBetweenWordSpace(diffDiag);
|
|
|
- }
|
|
|
+ }*/
|
|
|
putContent(crfContent, medicalTextType.get(1), diffDiag, "鉴别诊断");
|
|
|
} else if (firstCourseRecordDoc.getDifferentialDiagLabel() != null && StringUtil.isNotBlank(firstCourseRecordDoc.getDifferentialDiagLabel().getText())) {
|
|
|
String diffDiag = firstCourseRecordDoc.getDifferentialDiagLabel().getText();
|
|
|
- if (CatalogueUtil.numberExist(diffDiag)) {
|
|
|
+ /*if (CatalogueUtil.numberExist(diffDiag)) {
|
|
|
diffDiag = CatalogueUtil.removeBetweenWordSpace(diffDiag);
|
|
|
- }
|
|
|
+ }*/
|
|
|
putContent(crfContent, medicalTextType.get(1), diffDiag, "鉴别诊断");
|
|
|
}
|
|
|
//诊疗计划
|