|
@@ -110,51 +110,51 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
@Autowired
|
|
|
MedCheckInfoFacade medCheckInfoFacade;
|
|
|
@Autowired
|
|
|
- MedConsultationApplyFacade medConsultationApplyFacade;
|
|
|
+ StrConsultationApplyFacade strConsultationApplyFacade;
|
|
|
@Autowired
|
|
|
- MedConsultationResultFacade medConsultationResultFacade;
|
|
|
+ StrConsultationResultFacade strConsultationResultFacade;
|
|
|
@Autowired
|
|
|
- MedConsultationNoteFacade medConsultationNoteFacade;
|
|
|
+ StrConsultationNoteFacade strConsultationNoteFacade;
|
|
|
@Autowired
|
|
|
- MedConsultationRecordFacade medConsultationRecordFacade;
|
|
|
+ StrConsultationRecordFacade strConsultationRecordFacade;
|
|
|
@Autowired
|
|
|
- MedAdmissionNoteFacade medAdmissionNoteFacade;
|
|
|
+ StrAdmissionNoteFacade strAdmissionNoteFacade;
|
|
|
@Autowired
|
|
|
- MedBloodResultFacade medBloodResultFacade;
|
|
|
+ StrBloodResultFacade strBloodResultFacade;
|
|
|
@Autowired
|
|
|
- MedBloodTransfusionFacade medBloodTransfusionFacade;
|
|
|
+ StrBloodTransfusionFacade strBloodTransfusionFacade;
|
|
|
@Autowired
|
|
|
- MedCrisisNoteFacade medCrisisNoteFacade;
|
|
|
+ StrCrisisNoteFacade strCrisisNoteFacade;
|
|
|
@Autowired
|
|
|
- MedDeathDiscussionFacade medDeathDiscussionFacade;
|
|
|
+ StrDeathDiscussionFacade strDeathDiscussionFacade;
|
|
|
@Autowired
|
|
|
- MedDeathNoteFacade medDeathNoteFacade;
|
|
|
+ StrDeathNoteFacade strDeathNoteFacade;
|
|
|
@Autowired
|
|
|
- MedDifficultCaseFacade medDifficultCaseFacade;
|
|
|
+ StrDifficultCaseFacade strDifficultCaseFacade;
|
|
|
@Autowired
|
|
|
- MedFirstRecordFacade medFirstRecordFacade;
|
|
|
+ StrFirstRecordFacade strFirstRecordFacade;
|
|
|
@Autowired
|
|
|
- MedIllCriticallyFacade medIllCriticallyFacade;
|
|
|
+ StrIllCriticallyFacade strIllCriticallyFacade;
|
|
|
@Autowired
|
|
|
- MedIllSeriouslFacade medIllSeriouslFacade;
|
|
|
+ StrIllSeriouslFacade strIllSeriouslFacade;
|
|
|
@Autowired
|
|
|
- MedLeaveHospitalFacade medLeaveHospitalFacade;
|
|
|
+ StrLeaveHospitalFacade strLeaveHospitalFacade;
|
|
|
@Autowired
|
|
|
- MedOperativeFirstRecordFacade medOperativeFirstRecordFacade;
|
|
|
+ StrOperativeFirstRecordFacade strOperativeFirstRecordFacade;
|
|
|
@Autowired
|
|
|
- MedOperativeNoteFacade medOperativeNoteFacade;
|
|
|
+ StrOperativeNoteFacade strOperativeNoteFacade;
|
|
|
@Autowired
|
|
|
- MedPeriodConclusionFacade medPeriodConclusionFacade;
|
|
|
+ StrPeriodConclusionFacade strPeriodConclusionFacade;
|
|
|
@Autowired
|
|
|
- MedPreoperativeDiscussionFacade medPreoperativeDiscussionFacade;
|
|
|
+ StrPreoperativeDiscussionFacade strPreoperativeDiscussionFacade;
|
|
|
@Autowired
|
|
|
- MedRescueNoteFacade medRescueNoteFacade;
|
|
|
+ StrRescueNoteFacade strRescueNoteFacade;
|
|
|
@Autowired
|
|
|
- MedTransferInNoteFacade medTransferInNoteFacade;
|
|
|
+ StrTransferInNoteFacade strTransferInNoteFacade;
|
|
|
@Autowired
|
|
|
- MedTransferOutNoteFacade medTransferOutNoteFacade;
|
|
|
+ StrTransferOutNoteFacade strTransferOutNoteFacade;
|
|
|
@Autowired
|
|
|
- MedWardRecordFacade medWardRecordFacade;
|
|
|
+ StrWardRecordFacade strWardRecordFacade;
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -307,7 +307,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
Map<String, List<RecordContentDTO>> recMap = EntityUtil.makeEntityListMap(recordContentDTOList, "standModelName");
|
|
|
// -------------------------------------文书数据改造开始----------------------------------
|
|
|
// 获取会诊申请单
|
|
|
- List<MedConsultationApply> medConsultationApplyList = medConsultationApplyFacade.list(new QueryWrapper<MedConsultationApply>()
|
|
|
+ List<StrConsultationApply> strConsultationApplyList = strConsultationApplyFacade.list(new QueryWrapper<StrConsultationApply>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -316,7 +316,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 获取会诊结果单
|
|
|
- List<MedConsultationResult> medConsultationResultList = medConsultationResultFacade.list(new QueryWrapper<MedConsultationResult>()
|
|
|
+ List<StrConsultationResult> strConsultationResultList = strConsultationResultFacade.list(new QueryWrapper<StrConsultationResult>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -325,7 +325,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 会诊单(申请和结果)
|
|
|
- List<MedConsultationNote> medConsultationNoteList = medConsultationNoteFacade.list(new QueryWrapper<MedConsultationNote>()
|
|
|
+ List<StrConsultationNote> strConsultationNoteList = strConsultationNoteFacade.list(new QueryWrapper<StrConsultationNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -334,7 +334,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 会诊记录
|
|
|
- List<MedConsultationRecord> medConsultationRecordList = medConsultationRecordFacade.list(new QueryWrapper<MedConsultationRecord>()
|
|
|
+ List<StrConsultationRecord> strConsultationRecordList = strConsultationRecordFacade.list(new QueryWrapper<StrConsultationRecord>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -343,7 +343,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 入院记录
|
|
|
- List<MedAdmissionNote> medAdmissionNoteList = medAdmissionNoteFacade.list(new QueryWrapper<MedAdmissionNote>()
|
|
|
+ List<StrAdmissionNote> strAdmissionNoteList = strAdmissionNoteFacade.list(new QueryWrapper<StrAdmissionNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -353,7 +353,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 输血效果评价
|
|
|
- List<MedBloodResult> medBloodResultList = medBloodResultFacade.list(new QueryWrapper<MedBloodResult>()
|
|
|
+ List<StrBloodResult> strBloodResultList = strBloodResultFacade.list(new QueryWrapper<StrBloodResult>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -362,7 +362,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 输血记录
|
|
|
- List<MedBloodTransfusion> medBloodTransfusionList = medBloodTransfusionFacade.list(new QueryWrapper<MedBloodTransfusion>()
|
|
|
+ List<StrBloodTransfusion> strBloodTransfusionList = strBloodTransfusionFacade.list(new QueryWrapper<StrBloodTransfusion>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -371,7 +371,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 危急值记录
|
|
|
- List<MedCrisisNote> medCrisisNoteList = medCrisisNoteFacade.list(new QueryWrapper<MedCrisisNote>()
|
|
|
+ List<StrCrisisNote> strCrisisNoteList = strCrisisNoteFacade.list(new QueryWrapper<StrCrisisNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -380,7 +380,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 死亡病例讨论记录
|
|
|
- List<MedDeathDiscussion> medDeathDiscussionList = medDeathDiscussionFacade.list(new QueryWrapper<MedDeathDiscussion>()
|
|
|
+ List<StrDeathDiscussion> strDeathDiscussionList = strDeathDiscussionFacade.list(new QueryWrapper<StrDeathDiscussion>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -389,7 +389,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 死亡记录
|
|
|
- List<MedDeathNote> medDeathNoteList = medDeathNoteFacade.list(new QueryWrapper<MedDeathNote>()
|
|
|
+ List<StrDeathNote> strDeathNoteList = strDeathNoteFacade.list(new QueryWrapper<StrDeathNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -398,7 +398,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 疑难病例讨论记录
|
|
|
- List<MedDifficultCase> medDifficultCaseList = medDifficultCaseFacade.list(new QueryWrapper<MedDifficultCase>()
|
|
|
+ List<StrDifficultCase> strDifficultCaseList = strDifficultCaseFacade.list(new QueryWrapper<StrDifficultCase>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -407,7 +407,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 首次病程录
|
|
|
- List<MedFirstRecord> medFirstRecordList = medFirstRecordFacade.list(new QueryWrapper<MedFirstRecord>()
|
|
|
+ List<StrFirstRecord> strFirstRecordList = strFirstRecordFacade.list(new QueryWrapper<StrFirstRecord>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -416,7 +416,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 病危通知单
|
|
|
- List<MedIllCritically> medIllCriticallyList = medIllCriticallyFacade.list(new QueryWrapper<MedIllCritically>()
|
|
|
+ List<StrIllCritically> strIllCriticallyList = strIllCriticallyFacade.list(new QueryWrapper<StrIllCritically>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -425,7 +425,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 病重通知单
|
|
|
- List<MedIllSeriousl> medIllSeriouslList = medIllSeriouslFacade.list(new QueryWrapper<MedIllSeriousl>()
|
|
|
+ List<StrIllSeriousl> strIllSeriouslList = strIllSeriouslFacade.list(new QueryWrapper<StrIllSeriousl>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -434,7 +434,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 出院小结
|
|
|
- List<MedLeaveHospital> medLeaveHospitalList = medLeaveHospitalFacade.list(new QueryWrapper<MedLeaveHospital>()
|
|
|
+ List<StrLeaveHospital> strLeaveHospitalList = strLeaveHospitalFacade.list(new QueryWrapper<StrLeaveHospital>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -443,7 +443,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 术后首程
|
|
|
- List<MedOperativeFirstRecord> medOperativeFirstRecordList = medOperativeFirstRecordFacade.list(new QueryWrapper<MedOperativeFirstRecord>()
|
|
|
+ List<StrOperativeFirstRecord> strOperativeFirstRecordList = strOperativeFirstRecordFacade.list(new QueryWrapper<StrOperativeFirstRecord>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -452,7 +452,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 手术记录
|
|
|
- List<MedOperativeNote> medOperativeNoteList = medOperativeNoteFacade.list(new QueryWrapper<MedOperativeNote>()
|
|
|
+ List<StrOperativeNote> strOperativeNoteList = strOperativeNoteFacade.list(new QueryWrapper<StrOperativeNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -461,7 +461,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 阶段小结
|
|
|
- List<MedPeriodConclusion> medPeriodConclusionList = medPeriodConclusionFacade.list(new QueryWrapper<MedPeriodConclusion>()
|
|
|
+ List<StrPeriodConclusion> strPeriodConclusionList = strPeriodConclusionFacade.list(new QueryWrapper<StrPeriodConclusion>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -470,7 +470,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 术前讨论小结
|
|
|
- List<MedPreoperativeDiscussion> medPreoperativeDiscussionList = medPreoperativeDiscussionFacade.list(new QueryWrapper<MedPreoperativeDiscussion>()
|
|
|
+ List<StrPreoperativeDiscussion> strPreoperativeDiscussionList = strPreoperativeDiscussionFacade.list(new QueryWrapper<StrPreoperativeDiscussion>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -479,7 +479,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 抢救记录
|
|
|
- List<MedRescueNote> medRescueNoteList = medRescueNoteFacade.list(new QueryWrapper<MedRescueNote>()
|
|
|
+ List<StrRescueNote> strRescueNoteList = strRescueNoteFacade.list(new QueryWrapper<StrRescueNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -488,7 +488,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 转入记录
|
|
|
- List<MedTransferInNote> medTransferInNoteList = medTransferInNoteFacade.list(new QueryWrapper<MedTransferInNote>()
|
|
|
+ List<StrTransferInNote> strTransferInNoteList = strTransferInNoteFacade.list(new QueryWrapper<StrTransferInNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -497,7 +497,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 转出记录
|
|
|
- List<MedTransferOutNote> medTransferOutNoteList = medTransferOutNoteFacade.list(new QueryWrapper<MedTransferOutNote>()
|
|
|
+ List<StrTransferOutNote> strTransferOutNoteList = strTransferOutNoteFacade.list(new QueryWrapper<StrTransferOutNote>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -506,7 +506,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
);
|
|
|
|
|
|
// 查房记录
|
|
|
- List<MedWardRecord> medWardRecordList = medWardRecordFacade.list(new QueryWrapper<MedWardRecord>()
|
|
|
+ List<StrWardRecord> strWardRecordList = strWardRecordFacade.list(new QueryWrapper<StrWardRecord>()
|
|
|
.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.eq("hospital_id", hospitalId)
|
|
|
.eq("behospital_code", analyzeVO.getBehospitalCode())
|
|
@@ -607,136 +607,136 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
*/
|
|
|
|
|
|
// 会诊记录
|
|
|
- if (ListUtil.isNotEmpty(medConsultationRecordList)) {
|
|
|
- specialData("会诊", medConsultationRecordList, recMap, medrecVoList, "会诊记录");
|
|
|
+ if (ListUtil.isNotEmpty(strConsultationRecordList)) {
|
|
|
+ specialData("会诊", strConsultationRecordList, recMap, medrecVoList, "会诊记录");
|
|
|
} else {
|
|
|
specialDataWithKey("会诊", recMap, medrecVoList, "会诊记录",
|
|
|
Arrays.asList("会诊记录"));
|
|
|
}
|
|
|
|
|
|
//会诊申请单
|
|
|
- if (ListUtil.isNotEmpty(medConsultationApplyList)) {
|
|
|
- specialData("会诊", medConsultationApplyList, recMap, medrecVoList, "会诊申请单");
|
|
|
+ if (ListUtil.isNotEmpty(strConsultationApplyList)) {
|
|
|
+ specialData("会诊", strConsultationApplyList, recMap, medrecVoList, "会诊申请单");
|
|
|
} else {
|
|
|
specialDataWithKey("会诊", recMap, medrecVoList, "会诊申请单",
|
|
|
Arrays.asList("会诊申请单"));
|
|
|
}
|
|
|
//会诊结果单
|
|
|
- if (ListUtil.isNotEmpty(medConsultationResultList)) {
|
|
|
- specialData("会诊", medConsultationResultList, recMap, medrecVoList, "会诊结果单");
|
|
|
+ if (ListUtil.isNotEmpty(strConsultationResultList)) {
|
|
|
+ specialData("会诊", strConsultationResultList, recMap, medrecVoList, "会诊结果单");
|
|
|
} else {
|
|
|
specialDataWithKey("会诊", recMap, medrecVoList, "会诊结果单",
|
|
|
Arrays.asList("会诊记录", "会诊结果单", "会诊申请单"));
|
|
|
}
|
|
|
|
|
|
//会诊单(申请和结果)
|
|
|
- if (ListUtil.isNotEmpty(medConsultationNoteList)) {
|
|
|
- specialData("会诊", medConsultationNoteList, recMap, medrecVoList, "会诊单(申请和结果)");
|
|
|
+ if (ListUtil.isNotEmpty(strConsultationNoteList)) {
|
|
|
+ specialData("会诊", strConsultationNoteList, recMap, medrecVoList, "会诊单(申请和结果)");
|
|
|
}
|
|
|
//入院记录
|
|
|
- if (ListUtil.isNotEmpty(medAdmissionNoteList)) {
|
|
|
- newAddData("入院记录", medAdmissionNoteList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strAdmissionNoteList)) {
|
|
|
+ newAddData("入院记录", strAdmissionNoteList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("入院记录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//输血效果评价
|
|
|
- if (ListUtil.isNotEmpty(medBloodResultList)) {
|
|
|
- newAddData("输血后效果评价", medBloodResultList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strBloodResultList)) {
|
|
|
+ newAddData("输血后效果评价", strBloodResultList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("输血后效果评价", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//输血记录
|
|
|
- if (ListUtil.isNotEmpty(medBloodTransfusionList)) {
|
|
|
- newAddData("输血/血制品病程记录", medBloodTransfusionList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strBloodTransfusionList)) {
|
|
|
+ newAddData("输血/血制品病程记录", strBloodTransfusionList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("输血/血制品病程记录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
|
|
|
//危急值记录
|
|
|
- if (ListUtil.isNotEmpty(medCrisisNoteList)) {
|
|
|
- newAddData("危急值记录", medCrisisNoteList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strCrisisNoteList)) {
|
|
|
+ newAddData("危急值记录", strCrisisNoteList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("危急值记录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//死亡病例讨论记录
|
|
|
- if (ListUtil.isNotEmpty(medDeathDiscussionList)) {
|
|
|
- newAddData("死亡病例讨论记录", medDeathDiscussionList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strDeathDiscussionList)) {
|
|
|
+ newAddData("死亡病例讨论记录", strDeathDiscussionList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("死亡病例讨论记录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//死亡记录
|
|
|
- if (ListUtil.isNotEmpty(medDeathNoteList)) {
|
|
|
- newAddData("死亡记录", medDeathNoteList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strDeathNoteList)) {
|
|
|
+ newAddData("死亡记录", strDeathNoteList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("死亡记录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//疑难病例讨论记录
|
|
|
- if (ListUtil.isNotEmpty(medDifficultCaseList)) {
|
|
|
- newAddData("疑难病例讨论记录", medDifficultCaseList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strDifficultCaseList)) {
|
|
|
+ newAddData("疑难病例讨论记录", strDifficultCaseList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("疑难病例讨论记录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//首次病程录
|
|
|
- if (ListUtil.isNotEmpty(medFirstRecordList)) {
|
|
|
- newAddData("首次病程录", medFirstRecordList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strFirstRecordList)) {
|
|
|
+ newAddData("首次病程录", strFirstRecordList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("首次病程录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//病危通知单
|
|
|
- if (ListUtil.isNotEmpty(medIllCriticallyList)) {
|
|
|
- newAddData("病危通知书", medIllCriticallyList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strIllCriticallyList)) {
|
|
|
+ newAddData("病危通知书", strIllCriticallyList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("病危通知书", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//病重通知单
|
|
|
- if (ListUtil.isNotEmpty(medIllSeriouslList)) {
|
|
|
- newAddData("病重通知书", medIllSeriouslList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strIllSeriouslList)) {
|
|
|
+ newAddData("病重通知书", strIllSeriouslList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("病重通知书", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//出院小结
|
|
|
- if (ListUtil.isNotEmpty(medLeaveHospitalList)) {
|
|
|
- newAddData("出院小结", medLeaveHospitalList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strLeaveHospitalList)) {
|
|
|
+ newAddData("出院小结", strLeaveHospitalList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("出院小结", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//术后首程
|
|
|
- if (ListUtil.isNotEmpty(medOperativeFirstRecordList)) {
|
|
|
- specialData("手术", medOperativeFirstRecordList, recMap, medrecVoList, "术后首次病程及谈话记录");
|
|
|
+ if (ListUtil.isNotEmpty(strOperativeFirstRecordList)) {
|
|
|
+ specialData("手术", strOperativeFirstRecordList, recMap, medrecVoList, "术后首次病程及谈话记录");
|
|
|
} else {
|
|
|
specialDataWithKey("手术", recMap, medrecVoList, "术后首次病程及谈话记录",
|
|
|
null);
|
|
|
}
|
|
|
|
|
|
//手术记录
|
|
|
- if (ListUtil.isNotEmpty(medOperativeNoteList)) {
|
|
|
- specialData("手术", medOperativeNoteList, recMap, medrecVoList, "手术记录");
|
|
|
+ if (ListUtil.isNotEmpty(strOperativeNoteList)) {
|
|
|
+ specialData("手术", strOperativeNoteList, recMap, medrecVoList, "手术记录");
|
|
|
} else {
|
|
|
specialDataWithKey("手术", recMap, medrecVoList, "手术记录",
|
|
|
null);
|
|
|
}
|
|
|
|
|
|
//阶段小结
|
|
|
- if (ListUtil.isNotEmpty(medPeriodConclusionList)) {
|
|
|
- newAddData("阶段小结", medPeriodConclusionList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strPeriodConclusionList)) {
|
|
|
+ newAddData("阶段小结", strPeriodConclusionList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("阶段小结", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//术前讨论小结
|
|
|
- if (ListUtil.isNotEmpty(medPreoperativeDiscussionList)) {
|
|
|
- specialData("手术", medPreoperativeDiscussionList, recMap, medrecVoList, "术前讨论、术前小结");
|
|
|
+ if (ListUtil.isNotEmpty(strPreoperativeDiscussionList)) {
|
|
|
+ specialData("手术", strPreoperativeDiscussionList, recMap, medrecVoList, "术前讨论、术前小结");
|
|
|
} else {
|
|
|
specialDataWithKey("手术", recMap, medrecVoList, "术前讨论、术前小结",
|
|
|
null);
|
|
@@ -744,31 +744,31 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
|
|
|
|
|
|
|
|
|
//抢救记录
|
|
|
- if (ListUtil.isNotEmpty(medRescueNoteList)) {
|
|
|
- newAddData("抢救记录", medRescueNoteList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strRescueNoteList)) {
|
|
|
+ newAddData("抢救记录", strRescueNoteList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("抢救记录", recMap, medrecVoList);
|
|
|
}
|
|
|
|
|
|
//转入记录
|
|
|
- if (ListUtil.isNotEmpty(medTransferInNoteList)) {
|
|
|
- specialData("转科", medTransferInNoteList, recMap, medrecVoList, "转入记录");
|
|
|
+ if (ListUtil.isNotEmpty(strTransferInNoteList)) {
|
|
|
+ specialData("转科", strTransferInNoteList, recMap, medrecVoList, "转入记录");
|
|
|
} else {
|
|
|
specialDataWithKey("转科", recMap, medrecVoList, "转入记录",
|
|
|
null);
|
|
|
}
|
|
|
|
|
|
//转出记录
|
|
|
- if (ListUtil.isNotEmpty(medTransferOutNoteList)) {
|
|
|
- specialData("转科", medTransferOutNoteList, recMap, medrecVoList, "转出记录");
|
|
|
+ if (ListUtil.isNotEmpty(strTransferOutNoteList)) {
|
|
|
+ specialData("转科", strTransferOutNoteList, recMap, medrecVoList, "转出记录");
|
|
|
} else {
|
|
|
specialDataWithKey("转科", recMap, medrecVoList, "转出记录",
|
|
|
null);
|
|
|
}
|
|
|
|
|
|
//查房记录
|
|
|
- if (ListUtil.isNotEmpty(medWardRecordList)) {
|
|
|
- newAddData("查房记录", medWardRecordList, recMap, medrecVoList);
|
|
|
+ if (ListUtil.isNotEmpty(strWardRecordList)) {
|
|
|
+ newAddData("查房记录", strWardRecordList, recMap, medrecVoList);
|
|
|
} else {
|
|
|
addData("查房记录", recMap, medrecVoList);
|
|
|
}
|