|
@@ -41,8 +41,12 @@ public class THR03090 extends QCCatalogue {
|
|
|
//北仑传入急诊标志,在首次病程录中
|
|
|
if (inputInfo.getFirstCourseRecordDoc() != null) {
|
|
|
Map<String, String> structureMap = inputInfo.getFirstCourseRecordDoc().getStructureMap();
|
|
|
- String title = structureMap.get("标题");
|
|
|
- if (StringUtil.isNotBlank(title) && title.contains("急诊")) {
|
|
|
+ String EDStr = structureMap.get("病例特点");
|
|
|
+ if (StringUtil.isNotBlank(EDStr) && EDStr.contains("急诊")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ EDStr = structureMap.get("诊疗计划");
|
|
|
+ if (StringUtil.isNotBlank(EDStr) && EDStr.contains("急诊")) {
|
|
|
return;
|
|
|
}
|
|
|
}
|