|
@@ -245,13 +245,48 @@ public class ViewMRecordFacade extends MedicalRecordServiceImpl {
|
|
|
}else if ("0008".equals(recTypeId)){
|
|
|
if (recTitle.contains("出院记录")&&!recTitle.contains("24小时")){
|
|
|
modeId = Long.valueOf("5");
|
|
|
+ }else if (recTitle.contains("死亡记录")){
|
|
|
+ modeId = Long.valueOf("24");
|
|
|
}
|
|
|
}else if ("0002".equals(recTypeId)){
|
|
|
- if (recTitle.contains("查房")){
|
|
|
- modeId = Long.valueOf("4");
|
|
|
- }
|
|
|
if (recTitle.contains("首次病程记录")){
|
|
|
modeId = Long.valueOf("2");
|
|
|
+ }else if (recTitle.contains("查房")||recTitle.contains("病程记录")){
|
|
|
+ modeId = Long.valueOf("4");
|
|
|
+ }else if (recTitle.contains("疑难危重病例讨论记录")){
|
|
|
+ modeId = Long.valueOf("19");
|
|
|
+ }else if (recTitle.contains("抢救记录")){
|
|
|
+ modeId = Long.valueOf("22");
|
|
|
+ }else if (recTitle.contains("死亡病例讨论记录")){
|
|
|
+ modeId = Long.valueOf("3");
|
|
|
+ }else if (recTitle.contains("转入记录")){
|
|
|
+ modeId = Long.valueOf("26");
|
|
|
+ }
|
|
|
+ }else if ("0004".equals(recTypeId)){
|
|
|
+ if (recTitle.contains("病危(重)通知书")){
|
|
|
+ modeId = Long.valueOf("25");
|
|
|
+ }
|
|
|
+ }else if ("0006".equals(recTypeId)){
|
|
|
+ if (recTitle.contains("术后首次病程记录")){
|
|
|
+ modeId = Long.valueOf("18");
|
|
|
+ }else if (recTitle.contains("术前讨论")||recTitle.contains("术前小结")){
|
|
|
+ modeId = Long.valueOf("11");
|
|
|
+ }else if (recTitle.contains("手术记录")){
|
|
|
+ modeId = Long.valueOf("17");
|
|
|
+ }else if (recTitle.contains("同意书")){
|
|
|
+ modeId = Long.valueOf("16");
|
|
|
+ }
|
|
|
+ }else if ("0003".equals(recTypeId)){
|
|
|
+ if (recTitle.contains("会诊申请单")){
|
|
|
+ modeId = Long.valueOf("30");
|
|
|
+ }
|
|
|
+ }else if ("0015".equals(recTypeId)){
|
|
|
+ if (recTitle.contains("会诊记录")){
|
|
|
+ modeId = Long.valueOf("7");
|
|
|
+ }
|
|
|
+ }else if ("0005".equals(recTypeId)||"0011".equals(recTypeId)){
|
|
|
+ if (recTitle.contains("同意书")){
|
|
|
+ modeId = Long.valueOf("53");
|
|
|
}
|
|
|
}
|
|
|
|