This commit is contained in:
Daniel 2025-08-10 16:02:59 +08:00
parent 0220f38d94
commit 548ae028cc
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
5 changed files with 16 additions and 16 deletions

View file

@ -385,7 +385,7 @@ func fillAttributeViewAutoGeneratedValues(attrView *av.AttributeView, collection
}
if nil == destVal {
if destAv.ExistBlock(blockID) { // 数据库中存在项目但是字段值不存在是数据未初始化,这里补一个默认值
if destAv.ExistItem(blockID) { // 数据库中存在项目但是字段值不存在是数据未初始化,这里补一个默认值
destVal = av.GetAttributeViewDefaultValue(ast.NewNodeID(), rollupKey.Rollup.KeyID, blockID, destKey.Type)
}
if nil == destVal {

View file

@ -136,11 +136,11 @@ func fillAttributeViewGalleryCardCover(attrView *av.AttributeView, view *av.View
break
}
tree := trees[blockValue.BlockID]
tree := trees[blockValue.Block.ID]
if nil == tree {
break
}
node := treenode.GetNodeInTree(tree, blockValue.BlockID)
node := treenode.GetNodeInTree(tree, blockValue.Block.ID)
if nil == node {
break
}
@ -199,11 +199,11 @@ func fillAttributeViewGalleryCardCover(attrView *av.AttributeView, view *av.View
break
}
tree := trees[blockValue.BlockID]
tree := trees[blockValue.Block.ID]
if nil == tree {
break
}
node := treenode.GetNodeInTree(tree, blockValue.BlockID)
node := treenode.GetNodeInTree(tree, blockValue.Block.ID)
if nil == node {
break
}