Merge branch 'dev'
This commit is contained in:
commit
f9bbd078c4
|
@ -19,7 +19,6 @@ import io.renren.modules.resourceBrowse.service.ResourceBrowseService;
|
|||
import io.renren.modules.security.user.SecurityUser;
|
||||
import io.renren.modules.security.user.UserDetail;
|
||||
import io.renren.modules.sys.dto.SysDeptDTO;
|
||||
import io.renren.modules.sys.enums.SuperAdminEnum;
|
||||
import io.renren.modules.sys.service.SysDeptService;
|
||||
import io.renren.modules.sys.service.SysUserService;
|
||||
import io.swagger.annotations.Api;
|
||||
|
@ -482,9 +481,10 @@ public class CensusController {
|
|||
if (user.getDeptId() != null) {
|
||||
SysDeptDTO sysDeptDTO = sysDeptService.get(user.getDeptId());
|
||||
params.put("region", sysDeptDTO.getDistrict()); // 管理员只出本部门区域
|
||||
} else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
|
||||
}
|
||||
// else if (SuperAdminEnum.YES.value() == user.getSuperAdmin()) { // 超级管理员
|
||||
//
|
||||
// }
|
||||
return new Result().ok(resourceService.selectCensusResourceTable(params));
|
||||
}
|
||||
|
||||
|
@ -503,9 +503,10 @@ public class CensusController {
|
|||
if (user.getDeptId() != null) {
|
||||
SysDeptDTO sysDeptDTO = sysDeptService.get(user.getDeptId());
|
||||
params.put("region", sysDeptDTO.getDistrict()); // 管理员只出本部门区域
|
||||
} else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
|
||||
}
|
||||
// else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
//
|
||||
// }
|
||||
ArrayList<Map> resultList = (ArrayList<Map>) resourceDao.selectCensusResourceTable(params);
|
||||
List<List<Object>> date = resultList.stream().map(index -> {
|
||||
List<Object> data = new ArrayList<>();
|
||||
|
@ -563,9 +564,10 @@ public class CensusController {
|
|||
if (user.getDeptId() != null) {
|
||||
SysDeptDTO sysDeptDTO = sysDeptService.get(user.getDeptId());
|
||||
params.put("region", sysDeptDTO.getDistrict()); // 管理员只出本部门区域
|
||||
} else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
|
||||
}
|
||||
// else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
//
|
||||
// }
|
||||
return new Result().ok(resourceService.selectCensusApplyTable(params));
|
||||
}
|
||||
|
||||
|
@ -584,9 +586,10 @@ public class CensusController {
|
|||
if (user.getDeptId() != null) {
|
||||
SysDeptDTO sysDeptDTO = sysDeptService.get(user.getDeptId());
|
||||
params.put("region", sysDeptDTO.getDistrict()); // 管理员只出本部门区域
|
||||
} else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
|
||||
}
|
||||
// else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
//
|
||||
// }
|
||||
ArrayList<Map> resultList = (ArrayList<Map>) resourceDao.selectCensusApplyTable(params);
|
||||
List<List<Object>> date = resultList.stream().map(index -> {
|
||||
List<Object> data = new ArrayList<>();
|
||||
|
|
|
@ -51,7 +51,6 @@ import io.renren.modules.sys.dao.SysRegionDao;
|
|||
import io.renren.modules.sys.dto.SysDeptDTO;
|
||||
import io.renren.modules.sys.dto.SysUserDTO;
|
||||
import io.renren.modules.sys.entity.SysDeptEntity;
|
||||
import io.renren.modules.sys.enums.SuperAdminEnum;
|
||||
import io.renren.modules.sys.service.SysDeptService;
|
||||
import io.renren.modules.sys.service.SysUserService;
|
||||
import lombok.SneakyThrows;
|
||||
|
@ -2082,9 +2081,10 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
|
|||
if (user.getDeptId() != null) {
|
||||
SysDeptDTO sysDeptDTO = deptService.get(user.getDeptId());
|
||||
params.put("region", sysDeptDTO.getDistrict()); // 管理员只出本部门区域
|
||||
} else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
|
||||
}
|
||||
// else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
//
|
||||
// }
|
||||
if (params.containsKey("deptId") && org.apache.commons.lang3.StringUtils.isNotEmpty(params.get("deptId").toString())) { // 部门精准查
|
||||
List<Map<String, Object>> typeCountListByApplyDept = resourceDao.selectApplyDeptDetailTypeCountList(params);
|
||||
Map<String, List<Map<String, Object>>> typeCountListMap = typeCountListByApplyDept.stream().collect(Collectors.groupingBy(m -> m.get("deptName").toString()));
|
||||
|
@ -2265,9 +2265,10 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
|
|||
if (user.getDeptId() != null) {
|
||||
SysDeptDTO sysDeptDTO = deptService.get(user.getDeptId());
|
||||
params.put("region", sysDeptDTO.getDistrict()); // 管理员只出本部门区域
|
||||
} else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
|
||||
}
|
||||
// else if (user.getSuperAdmin() == SuperAdminEnum.YES.value()) { // 超级管理员
|
||||
//
|
||||
// }
|
||||
if (params.containsKey("deptId") && org.apache.commons.lang3.StringUtils.isNotEmpty(params.get("deptId").toString())) {
|
||||
List<Map<String, Object>> typeCountListByDept = resourceDao.selectDeptDetailTypeCountList(params);
|
||||
Map<String, List<Map<String, Object>>> typeCountListMap = typeCountListByDept.stream().collect(Collectors.groupingBy(m -> m.get("deptName").toString()));
|
||||
|
|
Loading…
Reference in New Issue