|
@@ -50,9 +50,9 @@ public class FIRP0192 extends QCCatalogue {
|
|
|
operationName = operationDoc.getOperationDiscussionDoc().getStructureMap().get("手术名称");
|
|
|
}
|
|
|
if (StringUtil.isNotBlank(operationName)) {
|
|
|
- operationName = operationName.replaceAll("[\\p{Punct}\\pP]", "").replaceAll("\\s*", "");
|
|
|
+ String operationNm = operationName.replaceAll("[\\p{Punct}\\pP]", "").replaceAll("\\s*", "");
|
|
|
oName = oName.replaceAll("[\\p{Punct}\\pP]", "").replaceAll("\\s*", "");
|
|
|
- if (operationName.contains(oName)) {
|
|
|
+ if (operationNm.contains(oName)) {
|
|
|
return;
|
|
|
}
|
|
|
String[] operationNames = operationName.split("\\+");
|