|
@@ -39,12 +39,12 @@ public class OPE0359 extends QCCatalogue {
|
|
|
long count = operationDocs.stream().filter(operationDoc -> {
|
|
|
boolean flag = false;
|
|
|
if (operationDoc.getOperationRecordDoc() != null
|
|
|
- && StringUtil.isNotBlank(operationDoc.getOperationRecordDoc().getStructureMap().get("手术经过及处理"))) {
|
|
|
+ && StringUtil.isBlank(operationDoc.getOperationRecordDoc().getStructureMap().get("手术经过及处理"))) {
|
|
|
flag = true;
|
|
|
}
|
|
|
return flag;
|
|
|
}).count();
|
|
|
- if (count == 0) {
|
|
|
+ if (count > 0) {
|
|
|
status.set("-1");
|
|
|
}
|
|
|
}
|