mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 14:40:12 +01:00
🎨 The database rollup field supports using the updated/created field https://github.com/siyuan-note/siyuan/issues/15662
This commit is contained in:
parent
9bb6f4d134
commit
c2075e6387
3 changed files with 5 additions and 5 deletions
|
|
@ -800,7 +800,7 @@ func (r *ValueRollup) BuildContents(keyValues []*KeyValues, destKey *Key, relati
|
|||
r.Contents = nil
|
||||
for _, blockID := range relationVal.Relation.BlockIDs {
|
||||
destVal := GetValue(keyValues, destKey.ID, blockID)
|
||||
if nil != furtherCollection && KeyTypeTemplate == destKey.Type {
|
||||
if nil != furtherCollection && (KeyTypeTemplate == destKey.Type || KeyTypeUpdated == destKey.Type || KeyTypeCreated == destKey.Type) {
|
||||
destVal = furtherCollection.GetValue(blockID, destKey.ID)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1551,9 +1551,9 @@ func GetBlockAttributeViewKeys(nodeID string) (ret []*BlockAttributeViewKeys) {
|
|||
|
||||
destKey, _ := destAv.GetKey(kv.Key.Rollup.KeyID)
|
||||
if nil != destKey {
|
||||
isSameAv := destAv.ID == attrView.ID
|
||||
var furtherCollection av.Collection
|
||||
if av.KeyTypeTemplate == destKey.Type {
|
||||
// 渲染目标视图,这样才能汇总渲染后的模板字段值
|
||||
if av.KeyTypeTemplate == destKey.Type || (!isSameAv && (av.KeyTypeUpdated == destKey.Type || av.KeyTypeCreated == destKey.Type)) {
|
||||
viewable := sql.RenderView(destAv, destAv.Views[0], "")
|
||||
if nil != viewable {
|
||||
furtherCollection = viewable.(av.Collection)
|
||||
|
|
|
|||
|
|
@ -437,9 +437,9 @@ func fillAttributeViewAutoGeneratedValues(attrView *av.AttributeView, collection
|
|||
break
|
||||
}
|
||||
|
||||
isSameAv := destAv.ID == attrView.ID
|
||||
var furtherCollection av.Collection
|
||||
if av.KeyTypeTemplate == destKey.Type {
|
||||
// 渲染目标视图,这样才能汇总渲染后的模板字段值
|
||||
if av.KeyTypeTemplate == destKey.Type || (!isSameAv && (av.KeyTypeUpdated == destKey.Type || av.KeyTypeCreated == destKey.Type)) {
|
||||
viewable := renderView(destAv, destAv.Views[0], "", depth, renderedAttrViews)
|
||||
if nil != viewable {
|
||||
furtherCollection = viewable.(av.Collection)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue