Commit a21f415c by songyinghui

Merge branch 'feature-content4-3' into test_branch

parents b9250982 1699b411
......@@ -559,8 +559,10 @@ public class HaobanRoleApiServiceImpl implements HaobanRoleApiService {
if (CollectionUtils.isEmpty(highMenuCodes) || CollectionUtils.isEmpty(lowMenuCodes)) {
continue;
}
highMenuCodes.removeAll(lowMenuCodes);
menuCodes = highMenuCodes;
menuCodes = highMenuCodes
.stream()
.filter(item -> !lowMenuCodes.contains(item))
.collect(Collectors.toList());
}
logger.info("本次对应的menuCode:{}", JSON.toJSONString(menuCodes));
List<String> hasExistMenuCodes = haobanRoleMenuService.getByWxEnterpriseIdAndRoleId(wxEnterpriseId, haobanRoleBO.getRoleId());
......
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