|
@@ -39,6 +39,9 @@ public class OPE0323 extends QCCatalogue {
|
|
|
String surgeon = operationDoc.getOperationRecordDoc().getStructureMap().get("主刀医师");
|
|
|
String assist1 = operationDoc.getOperationRecordDoc().getStructureMap().get("一助");
|
|
|
String signature = operationDoc.getOperationRecordDoc().getStructureMap().get("主刀医师签名");
|
|
|
+ if (StringUtil.isBlank(signature)) {
|
|
|
+ return flag;
|
|
|
+ }
|
|
|
if (StringUtil.isNotBlank(surgeon) && StringUtil.isNotBlank(assist1)) {
|
|
|
String operator = surgeon + ", " + assist1;
|
|
|
if (!operator.contains(signature)) {
|