Skip to content

Commit

Permalink
bug: 用户组织架构新增线一级别组织层级,用户信息获取逻辑未更新导致部分组织架构校验逻辑校验失败 TencentBlueKing#9967
Browse files Browse the repository at this point in the history
  • Loading branch information
yjieliang committed Jan 25, 2024
1 parent 95c2f7c commit d6ae12e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ class UserDao {
.set(GROUP_NAME, userDeptDetail.groupName)
.set(UPDATE_TIME, LocalDateTime.now())
userDeptDetail.businessLineId?.let { baseStep.set(BUSINESS_LINE_ID, it.toLong()) }
baseStep.where(USER_ID.eq(userDeptDetail.userId))
.execute()
userDeptDetail.businessLineName?.let { baseStep.set(BUSINESS_LINE_NAME, it) }
baseStep.where(USER_ID.eq(userDeptDetail.userId)).execute()
}
}
}

0 comments on commit d6ae12e

Please sign in to comment.