Commit 85cbc715 by 陶光胜

门店控件查询

parent 94d79fc8
......@@ -108,6 +108,9 @@ public class DataAuthUtils {
for(UnionEnterpriseAuthDTO dto : unionEnterpriseAuthDTOS){
Integer resourceGroupId = dto.getResourceGroupId();
ResourceGroupDTO resourceGroupDTO = resourceGroupApiService.getResourceGroup(resourceGroupId).getResult();
if(resourceGroupDTO == null){
continue;
}
//线上店铺ids
String weimobStoreIds = (StringUtils.isBlank(resourceGroupDTO.getWeimobStoreIdOwn()) ? "" : resourceGroupDTO.getWeimobStoreIdOwn()) +
(StringUtils.isBlank(resourceGroupDTO.getWeimobStoreIdShare()) ? "" : resourceGroupDTO.getWeimobStoreIdShare());
......
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