You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ofbiz.apache.org by "Deepak Dixit (JIRA)" <ji...@apache.org> on 2019/02/13 09:16:00 UTC

[jira] [Commented] (OFBIZ-10835) In the main interface of the HR module, when the organization structure is displayed in a tree, the name of the person is not displayed.

    [ https://issues.apache.org/jira/browse/OFBIZ-10835?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16766960#comment-16766960 ] 

Deepak Dixit commented on OFBIZ-10835:
--------------------------------------

Hi [~qepkwwl]

It will be good if you do not use localized language while reporting the issue.  

> In the main interface of the HR module, when the organization structure is displayed in a tree, the name of the person is not displayed.
> ----------------------------------------------------------------------------------------------------------------------------------------
>
>                 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
>            Priority: Trivial
>
> 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)