...
|
...
|
@@ -51,9 +51,9 @@ func (l *ArticleCategoryUpdateLogic) ArticleCategoryUpdate(req *types.ArticleCat |
|
|
if err = transaction.UseTrans(l.ctx, l.svcCtx.DB, func(ctx context.Context, conn transaction.Conn) error {
|
|
|
// 同步标签的分类名称
|
|
|
if changeName {
|
|
|
_, articleTags, _ := l.svcCtx.ArticleTagRepository.Find(l.ctx, conn, userToken.CompanyId, domain.NewQueryOptions().MustWithKV("name", dm.Name))
|
|
|
_, articleTags, _ := l.svcCtx.ArticleTagRepository.Find(l.ctx, conn, userToken.CompanyId, domain.NewQueryOptions().MustWithKV("categoryId", dm.Id))
|
|
|
for _, articleTag := range articleTags {
|
|
|
if articleTag.Name != dm.Name || articleTag.CategoryId != dm.Id {
|
|
|
if articleTag.CategoryId != dm.Id {
|
|
|
continue
|
|
|
}
|
|
|
// 新的分类名称
|
...
|
...
|
|