|
@@ -10,6 +10,8 @@ import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.regex.Matcher;
|
|
|
+import java.util.regex.Pattern;
|
|
|
|
|
|
/**
|
|
|
* @ClassName : CLI0569
|
|
@@ -38,6 +40,11 @@ public class CLI0569 extends QCCatalogue {
|
|
|
status.set("-1");
|
|
|
break;
|
|
|
}
|
|
|
+ Pattern compile = Pattern.compile("[a-zA-Z]+型");
|
|
|
+ Matcher matcher = compile.matcher(cliBStructureMap.get("输注种类、血型、数量"));
|
|
|
+ if(matcher.find()){
|
|
|
+ status.set("0");
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|