|
@@ -40,7 +40,7 @@ public class TaizhouDocTrans extends DocTrans {
|
|
break;
|
|
break;
|
|
case "输血/血制品病程记录":
|
|
case "输血/血制品病程记录":
|
|
TaiZhouClinicalBloodDocTrans clinicalBloodDocTrans = new TaiZhouClinicalBloodDocTrans();
|
|
TaiZhouClinicalBloodDocTrans clinicalBloodDocTrans = new TaiZhouClinicalBloodDocTrans();
|
|
- /* inputInfo.setClinicalBloodDocs(clinicalBloodDocTrans.extract(i));*/
|
|
|
|
|
|
+ inputInfo.setClinicalBloodDocs(clinicalBloodDocTrans.extract(i));
|
|
break;
|
|
break;
|
|
case "危急值记录":
|
|
case "危急值记录":
|
|
TaiZhouCrisisValueReportDocTrans crisisValueReportDocTrans = new TaiZhouCrisisValueReportDocTrans();
|
|
TaiZhouCrisisValueReportDocTrans crisisValueReportDocTrans = new TaiZhouCrisisValueReportDocTrans();
|
|
@@ -60,11 +60,11 @@ public class TaizhouDocTrans extends DocTrans {
|
|
break;
|
|
break;
|
|
case "疑难病例讨论记录":
|
|
case "疑难病例讨论记录":
|
|
TaiZhouDifficultCaseDiscussDocTrans difficultCaseDiscussDocTrans = new TaiZhouDifficultCaseDiscussDocTrans();
|
|
TaiZhouDifficultCaseDiscussDocTrans difficultCaseDiscussDocTrans = new TaiZhouDifficultCaseDiscussDocTrans();
|
|
- /* inputInfo.setDifficultCaseDiscussDocs(difficultCaseDiscussDocTrans.extract(i));*/
|
|
|
|
|
|
+ inputInfo.setDifficultCaseDiscussDocs(difficultCaseDiscussDocTrans.extract(i));
|
|
break;
|
|
break;
|
|
case "医嘱信息":
|
|
case "医嘱信息":
|
|
TaiZhouDoctorAdviceDocTrans doctorAdviceDocTrans = new TaiZhouDoctorAdviceDocTrans();
|
|
TaiZhouDoctorAdviceDocTrans doctorAdviceDocTrans = new TaiZhouDoctorAdviceDocTrans();
|
|
- /*inputInfo.setDoctorAdviceDocs(doctorAdviceDocTrans.extract(i));*/
|
|
|
|
|
|
+ inputInfo.setDoctorAdviceDocs(doctorAdviceDocTrans.extract(i));
|
|
break;
|
|
break;
|
|
case "值班交接制度":
|
|
case "值班交接制度":
|
|
TaiZhouDutyShiftSystemDocTrans dutyShiftSystemDocTrans = new TaiZhouDutyShiftSystemDocTrans();
|
|
TaiZhouDutyShiftSystemDocTrans dutyShiftSystemDocTrans = new TaiZhouDutyShiftSystemDocTrans();
|
|
@@ -90,7 +90,7 @@ public class TaizhouDocTrans extends DocTrans {
|
|
break;
|
|
break;
|
|
case "抢救记录":
|
|
case "抢救记录":
|
|
TaiZhouRescueDocTrans rescueDocTrans = new TaiZhouRescueDocTrans();
|
|
TaiZhouRescueDocTrans rescueDocTrans = new TaiZhouRescueDocTrans();
|
|
- /* inputInfo.setRescueDocs(rescueDocTrans.extract(i));*/
|
|
|
|
|
|
+ inputInfo.setRescueDocs(rescueDocTrans.extract(i));
|
|
break;
|
|
break;
|
|
case "病重通知书":
|
|
case "病重通知书":
|
|
TaiZhouSeriouslyIllNoticeDocTrans seriouslyIllNoticeDocTrans = new TaiZhouSeriouslyIllNoticeDocTrans();
|
|
TaiZhouSeriouslyIllNoticeDocTrans seriouslyIllNoticeDocTrans = new TaiZhouSeriouslyIllNoticeDocTrans();
|
|
@@ -152,9 +152,9 @@ public class TaizhouDocTrans extends DocTrans {
|
|
if (ListUtil.isNotEmpty(inputInfo.getCriticallyIllNoticeDocs())) {
|
|
if (ListUtil.isNotEmpty(inputInfo.getCriticallyIllNoticeDocs())) {
|
|
inputInfo.getPageData().put("病危通知书", inputInfo.getCriticallyIllNoticeDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
inputInfo.getPageData().put("病危通知书", inputInfo.getCriticallyIllNoticeDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
}
|
|
}
|
|
- // if (ListUtil.isNotEmpty(inputInfo.getDifficultCaseDiscussDocs())) {
|
|
|
|
- // inputInfo.getPageData().put("疑难病例讨论记录", inputInfo.getDifficultCaseDiscussDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
|
|
- // }
|
|
|
|
|
|
+ if (ListUtil.isNotEmpty(inputInfo.getDifficultCaseDiscussDocs())) {
|
|
|
|
+ inputInfo.getPageData().put("疑难病例讨论记录", inputInfo.getDifficultCaseDiscussDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
|
|
+ }
|
|
// if (ListUtil.isNotEmpty(inputInfo.getDoctorAdviceDocs())) {
|
|
// if (ListUtil.isNotEmpty(inputInfo.getDoctorAdviceDocs())) {
|
|
// inputInfo.getPageData().put("医嘱信息", inputInfo.getDoctorAdviceDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
// inputInfo.getPageData().put("医嘱信息", inputInfo.getDoctorAdviceDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
// }
|
|
// }
|