|
@@ -150,14 +150,14 @@ public class LisRule {
|
|
if (i == 1) {
|
|
if (i == 1) {
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(),
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(),
|
|
lisOtherDTO.getName(), "", TypeEnum.lisSelf.getName(), lisBean, msg);
|
|
lisOtherDTO.getName(), "", TypeEnum.lisSelf.getName(), lisBean, msg);
|
|
- otherList.add(billMsg);
|
|
|
|
|
|
+ CoreUtil.addBeanToList(otherList, billMsg);
|
|
} else { // 有其他条件符合
|
|
} else { // 有其他条件符合
|
|
// 诊断
|
|
// 诊断
|
|
if (ListUtil.isNotEmpty(lisOtherDTO.getDiseaseMsg())) {
|
|
if (ListUtil.isNotEmpty(lisOtherDTO.getDiseaseMsg())) {
|
|
for (String str : lisOtherDTO.getDiseaseMsg()) {
|
|
for (String str : lisOtherDTO.getDiseaseMsg()) {
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
str, TypeEnum.disease.getName(), lisBean, msg);
|
|
str, TypeEnum.disease.getName(), lisBean, msg);
|
|
- otherList.add(billMsg);
|
|
|
|
|
|
+ CoreUtil.addBeanToList(otherList, billMsg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 药品
|
|
// 药品
|
|
@@ -165,7 +165,7 @@ public class LisRule {
|
|
for (String str : lisOtherDTO.getDrugMsg()) {
|
|
for (String str : lisOtherDTO.getDrugMsg()) {
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
str, TypeEnum.drug.getName(), lisBean, msg);
|
|
str, TypeEnum.drug.getName(), lisBean, msg);
|
|
- otherList.add(billMsg);
|
|
|
|
|
|
+ CoreUtil.addBeanToList(otherList, billMsg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 人群
|
|
// 人群
|
|
@@ -173,7 +173,7 @@ public class LisRule {
|
|
for (String str : lisOtherDTO.getGroupMsg()) {
|
|
for (String str : lisOtherDTO.getGroupMsg()) {
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
str, TypeEnum.group.getName(), lisBean, msg);
|
|
str, TypeEnum.group.getName(), lisBean, msg);
|
|
- otherList.add(billMsg);
|
|
|
|
|
|
+ CoreUtil.addBeanToList(otherList, billMsg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 化验——暂无数据
|
|
// 化验——暂无数据
|
|
@@ -181,7 +181,7 @@ public class LisRule {
|
|
for (String str : lisOtherDTO.getLisMsg()) {
|
|
for (String str : lisOtherDTO.getLisMsg()) {
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
BillMsg billMsg = msgNewUtil.getCommonOtherMsg(TypeEnum.lis.getName(), lisOtherDTO.getName(),
|
|
str, TypeEnum.lis.getName(), lisBean, msg);
|
|
str, TypeEnum.lis.getName(), lisBean, msg);
|
|
- otherList.add(billMsg);
|
|
|
|
|
|
+ CoreUtil.addBeanToList(otherList, billMsg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|