修改数据
This commit is contained in:
@ -273,7 +273,11 @@ public class CoscoCategoryLibraryServiceImpl extends BaseServiceImpl<CoscoCatego
|
||||
}
|
||||
}
|
||||
SysOrg sysOrg = orgService.getOrgInfo(coscoCategoryLibrary.getApplyDeptId());
|
||||
vo.setDeptName(sysOrg.getOrgName());
|
||||
vo.setApplyDeptName(sysOrg.getOrgName());
|
||||
vo.setApplyOrgName(sysOrg.getCuCompanyName());
|
||||
SysOrg orgName = orgService.getOrgInfo(coscoCategoryLibrary.getDeptId());
|
||||
vo.setDeptName(orgName.getOrgName());
|
||||
vo.setOrgName(orgName.getCuCompanyName());
|
||||
vo.setCategoryName(sb.toString());
|
||||
vo.setCategoryPathName(categoryPathNames.toString());
|
||||
vo.setCoscoCategoryLibrarAttachments(coscoCategoryLibrarAttachmentsService.selectCoscoCategoryLibrarAttachmentsByCategoryLibraryId(id));
|
||||
|
@ -14,6 +14,12 @@ public class CoscoCategoryLibraryDetailVo extends CoscoCategoryLibrary {
|
||||
|
||||
private String deptName;
|
||||
|
||||
private String applyDeptName;
|
||||
|
||||
private String applyOrgName;
|
||||
|
||||
private String orgName;
|
||||
|
||||
private String createByName;
|
||||
|
||||
private String categoryName;
|
||||
|
@ -290,7 +290,7 @@
|
||||
<if test="vo.orgId!=null and vo.orgId!=''">
|
||||
and cat.org_id = #{vo.orgId}
|
||||
</if>
|
||||
and cat.level_name is not null
|
||||
and cats.review_result is not null
|
||||
</where>
|
||||
|
||||
order by cats.create_time desc
|
||||
|
@ -29,6 +29,7 @@
|
||||
select id,
|
||||
name,
|
||||
apply_dept_id,
|
||||
apply_org_id,
|
||||
approve_type,
|
||||
org_id,
|
||||
term_of_validity,
|
||||
|
Reference in New Issue
Block a user