|
|
@ -205,9 +205,9 @@ public class ProjectController extends JeecgController<Project, IProjectService> |
|
|
|
} |
|
|
|
} |
|
|
|
List<DictModel> dictModels2 = sysBaseApi.queryDictItemsByCode("depart_category"); |
|
|
|
List<DictModel> dictModels2 = sysBaseApi.queryDictItemsByCode("depart_category"); |
|
|
|
if(ObjectUtil.isNotEmpty(dictModels2)){ |
|
|
|
if(ObjectUtil.isNotEmpty(dictModels2)){ |
|
|
|
dictModels2.forEach(e->{ |
|
|
|
dictModels2.forEach(d->{ |
|
|
|
if(e.getValue().equals(dto.getOrgCategory())){ |
|
|
|
if(d.getValue().equals(dto.getOrgCategory())){ |
|
|
|
dto.setOrgCategory(e.getText()); |
|
|
|
dto.setOrgCategory(d.getText()); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|