Skip to content

Commit

Permalink
fix-DepartmentController-column v_name_at_auth_userinfo appeared twic…
Browse files Browse the repository at this point in the history
…e in this resultset
  • Loading branch information
aruis committed Nov 21, 2024
1 parent f251660 commit e917666
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ public Integer sort(String id, String prevId, String nextId, String parentId) {
public List<ReferenceInfo> getReferenceList() {
return List.of(
organizationProvider.get().toReferenceInfo("id_at_org_organization"),
userInfoControllerProvider.get().toReferenceInfo("id_at_auth_user__leader"),
userInfoControllerProvider.get().toReferenceInfo("id_at_auth_user__boss")
userInfoControllerProvider.get().toReferenceInfo("id_at_auth_user__leader").add("v_name", "v_leader_name"),
userInfoControllerProvider.get().toReferenceInfo("id_at_auth_user__boss").add("v_name", "v_boss_name")
);
}

Expand Down

0 comments on commit e917666

Please sign in to comment.