Merge branch 'dev'
This commit is contained in:
commit
3228cbd926
|
@ -2808,7 +2808,10 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
|
||||||
if (params.get("provideDept") != null) {
|
if (params.get("provideDept") != null) {
|
||||||
Map<String, Object> lcDept = sysDeptDao.selectLCDeptByUcsDeptName(params.get("provideDept").toString());
|
Map<String, Object> lcDept = sysDeptDao.selectLCDeptByUcsDeptName(params.get("provideDept").toString());
|
||||||
|
|
||||||
if (lcDept.isEmpty() || org.apache.commons.lang3.StringUtils.isBlank(lcDept.get("lc_name").toString())) {
|
if (lcDept.isEmpty()
|
||||||
|
|| lcDept.get("lc_name") == null
|
||||||
|
|| (lcDept.get("lc_name") != null && org.apache.commons.lang3.StringUtils.isBlank(lcDept.get("lc_name").toString()))
|
||||||
|
) {
|
||||||
logger.error("未查询到{}对应的浪潮系统部门", params.get("provideDept").toString());
|
logger.error("未查询到{}对应的浪潮系统部门", params.get("provideDept").toString());
|
||||||
return new ArrayList<>();
|
return new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue