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