Commit 2f516162 by 徐高华

Merge branch 'feature/xgh/202507迭代' into 'developer'

朋友圈门店分组

See merge request !3080
parents e4709445 e65ff68b
......@@ -643,10 +643,12 @@ public class QwMomentController {
public List<String> getGicStoreId(String groupIds , String enterpriseId) {
if(StringUtils.isBlank(groupIds)) {
logger.info("groupid is null");
return null;
}
List<String> groupIdList = Arrays.asList(groupIds.split(",")).stream().filter(StringUtils::isNotBlank).collect(Collectors.toList()) ;
if(CollectionUtils.isEmpty(groupIdList)) {
logger.info("groupid is null");
return null;
}
List<String> allGroupIds = storeGroupService.getStoreGroupIdsByParentGroupId(enterpriseId, groupIdList);
......@@ -663,6 +665,7 @@ public class QwMomentController {
storeIdList = new ArrayList<>();
storeIdList.add("-1") ;
}
logger.info("storeIdList={}",storeIdList);
return storeIdList;
}
}
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