注释提交
This commit is contained in:
parent
0de3c32f1d
commit
bf28fd557c
@ -212,7 +212,7 @@ public class LabelFieldContentServiceImpl implements ILabelFieldContentService {
|
||||
}
|
||||
PatientTaskDto patientTaskDto = new PatientTaskDto();
|
||||
patientTaskDto.setPatientId(patientId);
|
||||
//查询节点富文本所需标签
|
||||
//根据患者id查询节点富文本所需标签
|
||||
List<SignPatientManageRouteNode> nodeList = signPatientManageRouteNodeMapper.getNodeList(patientTaskDto);
|
||||
List<String> nodeContentList = nodeList.stream().filter(Objects::nonNull).map(SignPatientManageRouteNode::getNodeContent).filter(Objects::nonNull).collect(Collectors.toList());
|
||||
String nodeContentListJoin = String.join(",", nodeContentList);
|
||||
@ -229,7 +229,7 @@ public class LabelFieldContentServiceImpl implements ILabelFieldContentService {
|
||||
if (CollectionUtils.isNotEmpty(labelFieldContents)) {
|
||||
return labelFieldContents;
|
||||
}
|
||||
//查询未维护标签及从患者表取值
|
||||
//查询未维护标签及从患者表取值,患者视图无值返回分组,有值根据属性名遍历塞入
|
||||
List<GroupingValue> labelFieldContentList = labelFieldInfoMapper.selectLabelFieldInfoByTaskPartitionDictId(taskPartitionDictId);
|
||||
JSONObject paramsValue = getParamsValue(patientId);
|
||||
if (CollectionUtils.isEmpty(labelFieldContentList)) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user