|
@@ -27,14 +27,9 @@ public class PRE0330 extends QCCatalogue {
|
|
|
return;
|
|
|
}
|
|
|
for (OperationDoc operationDoc : operationDocs) {
|
|
|
- if (operationDoc.getPreoperativeDiscussionDoc() != null) {
|
|
|
- Map<String, String> structureMap = operationDoc.getPreoperativeDiscussionDoc().getStructureMap();
|
|
|
- if (structureMap.get("拟施手术名称和方式及可能的变更") != null) {
|
|
|
- return;
|
|
|
- }
|
|
|
- if (StringUtil.isEmpty(structureMap.get("拟行术式")) && StringUtil.isEmpty(structureMap.get("可能的变更"))) {
|
|
|
- status.set("-1");
|
|
|
- }
|
|
|
+ if (operationDoc.getPreoperativeDiscussionDoc() != null
|
|
|
+ && StringUtil.isEmpty(operationDoc.getPreoperativeDiscussionDoc().getStructureMap().get("拟施手术名称和方式及可能的变更"))) {
|
|
|
+ status.set("-1");
|
|
|
}
|
|
|
}
|
|
|
}
|