zhangqing created OFBIZ-10835:
---------------------------------
Summary: HR模块的Main界面中,以树状显示组织结构时,没有显示出人员的名称
Key: OFBIZ-10835
URL:
https://issues.apache.org/jira/browse/OFBIZ-10835 Project: OFBiz
Issue Type: Bug
Components: humanres
Affects Versions: 16.11.04
Reporter: zhangqing
HR模块的Main界面中,以树状显示组织结构时,没有显示出人员的名称
原因是:
/ofbiz/applications/humanres/src/main/java/org/apache/ofbiz/humanres/HumanResEvents.java中的getCurrentEmployeeDetails方法中有2个参数错误。
GenericValue memCtx = EntityQuery.use(delegator).from("Person").where("partyId", partyId).queryOne();
应为:
GenericValue memCtx = EntityQuery.use(delegator).from("Person").where("partyId", memberId).queryOne();
GenericValue memGroupCtx = EntityQuery.use(delegator).from("PartyGroup").where("partyId", partyId).queryOne();
应为:
GenericValue memGroupCtx = EntityQuery.use(delegator).from("PartyGroup").where("partyId", memberId).queryOne();
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)