|
@@ -410,11 +410,11 @@ public class QwMsgController extends BaseController
|
|
|
String tagIds = externalContact.getTagIds();
|
|
String tagIds = externalContact.getTagIds();
|
|
|
|
|
|
|
|
List<QwTagVO> tagList = new ArrayList<>();
|
|
List<QwTagVO> tagList = new ArrayList<>();
|
|
|
- if (StringUtils.isBlank(externalContact.getTagIds()) || "[]".equals(externalContact.getTagIds())) {
|
|
|
|
|
|
|
+ if (StringUtils.isBlank(tagIds) || "[]".equals(tagIds)) {
|
|
|
return getDataTable(tagList);
|
|
return getDataTable(tagList);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- List<String> ids = Arrays.asList(tagIds.replace("[", "").replace("]", "").split(","));
|
|
|
|
|
|
|
+ List<String> ids = JSON.parseObject(externalContact.getTagIds(), new TypeReference<List<String>>(){}.getType());
|
|
|
|
|
|
|
|
startPage();
|
|
startPage();
|
|
|
tagList = tagService.selectQwTagVOListByTagIds(ids);
|
|
tagList = tagService.selectQwTagVOListByTagIds(ids);
|