|
@@ -27,6 +27,12 @@ public class QcModeFacade extends QcModeServiceImpl {
|
|
|
.orderByAsc("parent_id", "order_no")
|
|
|
);
|
|
|
|
|
|
+ for (int i = 0; i < qcModeList.size(); i++) {
|
|
|
+ String key = qcModeList.get(i).getName();
|
|
|
+ if (!pageData.containsKey(qcModeList.get(i).getName()) && !"病程信息".equals(key)) {
|
|
|
+ qcModeList.remove(i--);
|
|
|
+ }
|
|
|
+ }
|
|
|
Map<Long, List<QcMode>> map = EntityUtil.makeEntityListMap(qcModeList, "parentId");
|
|
|
|
|
|
// 获取根节点
|