|
@@ -20,12 +20,12 @@ import java.util.Map;
|
|
public class FIRC02970 extends QCCatalogue {
|
|
public class FIRC02970 extends QCCatalogue {
|
|
public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
status.set("0");
|
|
status.set("0");
|
|
- if (inputInfo.getBeHospitalizedDoc() == null) {
|
|
|
|
|
|
+ if (inputInfo.getFirstCourseRecordDoc() == null) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- Map<String, String> beHospitalStructureMap = inputInfo.getBeHospitalizedDoc().getStructureMap();
|
|
|
|
- String treatPlan = beHospitalStructureMap.get("诊疗计划");
|
|
|
|
- String treatmentMonitoringPlan = beHospitalStructureMap.get("治疗监测计划");
|
|
|
|
|
|
+ Map<String, String> firstCourseRecordStructureMap = inputInfo.getFirstCourseRecordDoc().getStructureMap();
|
|
|
|
+ String treatPlan = firstCourseRecordStructureMap.get("诊疗计划");
|
|
|
|
+ String treatmentMonitoringPlan = firstCourseRecordStructureMap.get("治疗监测计划");
|
|
if (StringUtil.isBlank(treatPlan) && StringUtil.isBlank(treatmentMonitoringPlan)) {
|
|
if (StringUtil.isBlank(treatPlan) && StringUtil.isBlank(treatmentMonitoringPlan)) {
|
|
return;
|
|
return;
|
|
}
|
|
}
|