Include disaply fields and mode for save view as

This commit is contained in:
shamoon 2024-04-21 09:53:49 -07:00
parent de4030994e
commit df46f53e38
2 changed files with 7 additions and 1 deletions

View File

@ -266,6 +266,8 @@ export class DocumentListComponent
filter_rules: this.list.filterRules, filter_rules: this.list.filterRules,
sort_reverse: this.list.sortReverse, sort_reverse: this.list.sortReverse,
sort_field: this.list.sortField, sort_field: this.list.sortField,
display_mode: this.list.displayMode,
display_fields: this.activeDisplayFields,
} }
this.savedViewService this.savedViewService

View File

@ -404,9 +404,13 @@ class SavedView(ModelWithOwner):
CREATED = ("created", _("Created")) CREATED = ("created", _("Created"))
ADDED = ("added", _("Added")) ADDED = ("added", _("Added"))
TAGS = ("tag"), _("Tags") TAGS = ("tag"), _("Tags")
DOCUMENT_TYPE = ("documenttype", _("Document Type"))
CORRESPONDENT = ("correspondent", _("Correspondent")) CORRESPONDENT = ("correspondent", _("Correspondent"))
DOCUMENT_TYPE = ("documenttype", _("Document Type"))
STORAGE_PATH = ("storagepath", _("Storage Path")) STORAGE_PATH = ("storagepath", _("Storage Path"))
NOTES = ("note", _("Note"))
OWNER = ("owner", _("Owner"))
SHARED = ("shared", _("Shared"))
ASN = ("asn", _("ASN"))
CUSTOM_FIELD = ("custom_field_%d", ("Custom Field")) CUSTOM_FIELD = ("custom_field_%d", ("Custom Field"))
name = models.CharField(_("name"), max_length=128) name = models.CharField(_("name"), max_length=128)