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 29, 2024
1 parent 2c104e4 commit 53b3600
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class PublishersDataServiceImpl @Autowired constructor(
publishers.forEach {
val publisherId = publishersDao.getPublisherId(dslContext, it.publishersCode)
if (publisherId != null) {
val records = getStorePublisherInfo(userId = userId, organization =it.organization)
val records = getStorePublisherInfo(userId = userId, organization = it.organization)
records.id = publisherId
records.publisherCode = it.publishersCode
records.publisherName = it.name
Expand Down Expand Up @@ -376,5 +376,4 @@ class PublishersDataServiceImpl @Autowired constructor(
}
return publisherInfo
}

}

0 comments on commit 53b3600

Please sign in to comment.