|
@@ -38,6 +38,17 @@ public class THR0601 extends QCCatalogue {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ if (inputInfo.getFirstCourseRecordDoc() != null) {
|
|
|
+ Map<String, String> structureMap = inputInfo.getFirstCourseRecordDoc().getStructureMap();
|
|
|
+ String recordDoctor = structureMap.get("记录医生");
|
|
|
+ if (StringUtil.isNotBlank(recordDoctor)) {
|
|
|
+ String operationProfessor = getCourseProfessor(recordDoctor);
|
|
|
+ if (operationProfessor.contains("主治") || operationProfessor.contains("主任")) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/* 如果存在手术记录,判断主刀医生是否为主治医生 */
|
|
|
String operatorName = "";
|
|
|
List<OperationDoc> operationDocs = inputInfo.getOperationDocs();
|