mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Handles the case where other might have a None field as well (#4598)
This commit is contained in:
parent
72c6ac09ac
commit
07989bc2fa
@ -48,31 +48,32 @@ class DocumentMetadataOverrides:
|
|||||||
self.storage_path_id = other.storage_path_id
|
self.storage_path_id = other.storage_path_id
|
||||||
if self.owner_id is None:
|
if self.owner_id is None:
|
||||||
self.owner_id = other.owner_id
|
self.owner_id = other.owner_id
|
||||||
|
|
||||||
# merge
|
# merge
|
||||||
# TODO: Handle the case where other is also None
|
|
||||||
if self.tag_ids is None:
|
if self.tag_ids is None:
|
||||||
self.tag_ids = other.tag_ids
|
self.tag_ids = other.tag_ids
|
||||||
else:
|
elif other.tag_ids is not None:
|
||||||
self.tag_ids.extend(other.tag_ids)
|
self.tag_ids.extend(other.tag_ids)
|
||||||
|
|
||||||
if self.view_users is None:
|
if self.view_users is None:
|
||||||
self.view_users = other.view_users
|
self.view_users = other.view_users
|
||||||
else:
|
elif other.view_users is not None:
|
||||||
self.view_users.extend(other.view_users)
|
self.view_users.extend(other.view_users)
|
||||||
|
|
||||||
if self.view_groups is None:
|
if self.view_groups is None:
|
||||||
self.view_groups = other.view_groups
|
self.view_groups = other.view_groups
|
||||||
else:
|
elif other.view_groups is not None:
|
||||||
self.view_groups.extend(other.view_groups)
|
self.view_groups.extend(other.view_groups)
|
||||||
|
|
||||||
if self.change_users is None:
|
if self.change_users is None:
|
||||||
self.change_users = other.change_users
|
self.change_users = other.change_users
|
||||||
else:
|
elif other.change_users is not None:
|
||||||
self.change_users.extend(other.change_users)
|
self.change_users.extend(other.change_users)
|
||||||
|
|
||||||
if self.change_groups is None:
|
if self.change_groups is None:
|
||||||
self.change_groups = other.change_groups
|
self.change_groups = other.change_groups
|
||||||
else:
|
elif other.change_groups is not None:
|
||||||
self.change_groups = [
|
self.change_groups.extend(other.change_groups)
|
||||||
*self.change_groups,
|
|
||||||
*other.change_groups,
|
|
||||||
]
|
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
|
||||||
|
@ -617,7 +617,7 @@ class MailAccountHandler(LoggingMixin):
|
|||||||
f"{len(message.attachments)} attachment(s)",
|
f"{len(message.attachments)} attachment(s)",
|
||||||
)
|
)
|
||||||
|
|
||||||
tag_ids = [tag.id for tag in rule.assign_tags.all()]
|
tag_ids: list[int] = [tag.id for tag in rule.assign_tags.all()]
|
||||||
doc_type = rule.assign_document_type
|
doc_type = rule.assign_document_type
|
||||||
|
|
||||||
if (
|
if (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user