Commit 964efebd authored by chenzhao's avatar chenzhao

修改bug

parent 32b386e2
......@@ -864,7 +864,9 @@ public class OrgUsrServiceImpl extends BaseService<OrgUsrDto, OrgUsr, OrgUsrMapp
orgUsrFormVo.setXfaq(Xfaq != null ? Xfaq.get("name") : "");
orgUsrFormVo.setXfgl(Xfgl != null ? Xfgl.get("name") : "");
orgUsrFormVo.setDwfz(Dwfz != null ? Dwfz.get("name") : "");
orgUsrFormVo.setParentName(getById(orgUsr.getParentId()).getBizOrgName());
if (orgUsr.getParentId() != null){
orgUsrFormVo.setParentName(getById(orgUsr.getParentId()).getBizOrgName());
}
return orgUsrFormVo;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment