|
@@ -62,8 +62,9 @@ public class PRE0328 extends QCCatalogue {
|
|
|
FirstCourseRecordDoc firstCourseRecordDoc = inputInfo.getFirstCourseRecordDoc();
|
|
|
if (firstCourseRecordDoc != null) {
|
|
|
String treatPlan = firstCourseRecordDoc.getStructureMap().get("诊疗计划");
|
|
|
+ // 根据医学部要求,加入“急症”和“术”
|
|
|
if (StringUtil.isNotBlank(treatPlan)) {
|
|
|
- String regex = ".*急诊.*术.*";
|
|
|
+ String regex = ".*急诊.*术.*|.*急症.*术.*";
|
|
|
return treatPlan.matches(regex);
|
|
|
}
|
|
|
}
|
|
@@ -78,8 +79,9 @@ public class PRE0328 extends QCCatalogue {
|
|
|
List<ThreeLevelWardDoc> allDoctorWradDocs = threeLevelWardDocs.get(0).getAllDoctorWradDocs();
|
|
|
for (ThreeLevelWardDoc threeLevelWardDoc : allDoctorWradDocs) {
|
|
|
String content = threeLevelWardDoc.getStructureMap().get("病情记录");
|
|
|
+ // 根据医学部要求,加入“急症”和“术”
|
|
|
if (StringUtil.isNotBlank(content)) {
|
|
|
- String regex = ".*急诊.*术.*";
|
|
|
+ String regex = ".*急诊.*术.*|.*急症.*术.*";
|
|
|
if (content.matches(regex)) {
|
|
|
return true;
|
|
|
}
|