|
@@ -60,10 +60,11 @@ public class FirstCourseRecordAI extends ModelAI {
|
|
|
}
|
|
|
//诊疗计划
|
|
|
if (StringUtils.isNotEmpty(structureMap.get("诊疗计划")) && StringUtils.isNotEmpty(structureMap.get("需求评估"))) {
|
|
|
- putContent(crfContent, medicalTextType.get(2), structureMap.get("需求评估") + StringUtils.isNotEmpty(structureMap.get("诊疗计划")), "诊疗计划");
|
|
|
- firstCourseRecordDoc.getTreatPlanLabel().setText(structureMap.get("需求评估") + StringUtils.isNotEmpty(structureMap.get("诊疗计划")));
|
|
|
+ putContent(crfContent, medicalTextType.get(2), structureMap.get("诊疗计划") + structureMap.get("需求评估"), "诊疗计划");
|
|
|
+ firstCourseRecordDoc.getTreatPlanLabel().setText(structureMap.get("诊疗计划") + structureMap.get("需求评估"));
|
|
|
} else if (StringUtils.isNotEmpty(structureMap.get("诊疗计划"))) {
|
|
|
putContent(crfContent, medicalTextType.get(2), structureMap.get("诊疗计划"), "诊疗计划");
|
|
|
+ firstCourseRecordDoc.getTreatPlanLabel().setText(structureMap.get("诊疗计划"));
|
|
|
} else if (StringUtils.isNotEmpty(structureMap.get("需求评估"))) {
|
|
|
putContent(crfContent, medicalTextType.get(2), structureMap.get("需求评估"), "诊疗计划");
|
|
|
firstCourseRecordDoc.getTreatPlanLabel().setText(structureMap.get("需求评估"));
|