|
@@ -31,7 +31,8 @@ public class BEH0444 extends QCCatalogue {
|
|
|
}
|
|
|
PresentLabel presentLabel = beHospitalizedDoc.getPresentLabel();
|
|
|
if (presentLabel != null) {
|
|
|
- List<String> words = Lists.newArrayList("神志", "神清", "神不清", "意识清", "意识不清", "昏迷","精神","意识");
|
|
|
+ List<String> words = Lists.newArrayList("神志", "神清", "神不清", "意识清", "意识不清", "昏迷", "精神", "意识",
|
|
|
+ "自言自语", "烦躁", "激惹", "疲乏", "心情", "情绪", "精力", "担心", "多想");
|
|
|
String presentLabelText = presentLabel.getText();
|
|
|
if (StringUtil.isNotBlank(presentLabelText)) {
|
|
|
for (String word : words) {
|
|
@@ -50,7 +51,7 @@ public class BEH0444 extends QCCatalogue {
|
|
|
if (ListUtil.isNotEmpty(generals)) {
|
|
|
for (GeneralDesc general : generals) {
|
|
|
for (String word : words) {
|
|
|
- if (general.getName().contains(word)){
|
|
|
+ if (general.getName().contains(word)) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
@@ -61,7 +62,7 @@ public class BEH0444 extends QCCatalogue {
|
|
|
if (ListUtil.isNotEmpty(gens)) {
|
|
|
for (General general : gens) {
|
|
|
for (String word : words) {
|
|
|
- if (general.getName().contains(word)){
|
|
|
+ if (general.getName().contains(word)) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|