Commit c3caa16f by fudahua

会员标签同步-同步没有打的标签

parent dcbc8703
......@@ -703,7 +703,7 @@ public class QywxTagApiServiceImpl implements QywxTagApiService {
List<MemberTagDTO> gicItems = memberTagService.listMemberTag(clerkRelated.getEnterpriseId(), clerkRelated.getMemberId());
Set<String> noSyncTagItemIds = new HashSet<>();
if (!CollectionUtils.isEmpty(gicItems)) {
noSyncTagItemIds = gicItems.stream().filter(itemId -> !entQywxSyncTagItemIds.contains(itemId)).map(dto -> dto.getTagsId()).collect(Collectors.toSet());
noSyncTagItemIds = gicItems.stream().filter(item -> !entQywxSyncTagItemIds.contains(item.getTagsId())).map(dto -> dto.getTagsId()).collect(Collectors.toSet());
logger.info("没有同步的标签:{}", JSONObject.toJSONString(noSyncTagItemIds));
}
//该企业下会员需要设置的标签
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment