mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: also ensure symmetric doc link removal on bulk edit (#8963)
This commit is contained in:
parent
cf7422346a
commit
54e72d5b60
@ -178,12 +178,27 @@ def modify_custom_fields(
|
|||||||
field_id=field_id,
|
field_id=field_id,
|
||||||
defaults=defaults,
|
defaults=defaults,
|
||||||
)
|
)
|
||||||
if (
|
if custom_field.data_type == CustomField.FieldDataType.DOCUMENTLINK:
|
||||||
custom_field.data_type == CustomField.FieldDataType.DOCUMENTLINK
|
|
||||||
and value
|
|
||||||
):
|
|
||||||
doc = Document.objects.get(id=doc_id)
|
doc = Document.objects.get(id=doc_id)
|
||||||
reflect_doclinks(doc, custom_field, value)
|
reflect_doclinks(doc, custom_field, value)
|
||||||
|
|
||||||
|
# For doc link fields that are being removed, remove symmetrical links
|
||||||
|
for doclink_being_removed_instance in CustomFieldInstance.objects.filter(
|
||||||
|
document_id__in=affected_docs,
|
||||||
|
field__id__in=remove_custom_fields,
|
||||||
|
field__data_type=CustomField.FieldDataType.DOCUMENTLINK,
|
||||||
|
value_document_ids__isnull=False,
|
||||||
|
):
|
||||||
|
for target_doc_id in doclink_being_removed_instance.value:
|
||||||
|
remove_doclink(
|
||||||
|
document=Document.objects.get(
|
||||||
|
id=doclink_being_removed_instance.document.id,
|
||||||
|
),
|
||||||
|
field=doclink_being_removed_instance.field,
|
||||||
|
target_doc_id=target_doc_id,
|
||||||
|
)
|
||||||
|
|
||||||
|
# Finally, remove the custom fields
|
||||||
CustomFieldInstance.objects.filter(
|
CustomFieldInstance.objects.filter(
|
||||||
document_id__in=affected_docs,
|
document_id__in=affected_docs,
|
||||||
field_id__in=remove_custom_fields,
|
field_id__in=remove_custom_fields,
|
||||||
|
@ -282,14 +282,9 @@ class TestBulkEdit(DirectoriesMixin, TestCase):
|
|||||||
document=self.doc2,
|
document=self.doc2,
|
||||||
field=cf3,
|
field=cf3,
|
||||||
)
|
)
|
||||||
doc3: Document = Document.objects.create(
|
|
||||||
title="doc3",
|
|
||||||
content="content",
|
|
||||||
checksum="D3",
|
|
||||||
)
|
|
||||||
bulk_edit.modify_custom_fields(
|
bulk_edit.modify_custom_fields(
|
||||||
[self.doc1.id, self.doc2.id],
|
[self.doc1.id, self.doc2.id],
|
||||||
add_custom_fields={cf2.id: None, cf3.id: [doc3.id]},
|
add_custom_fields={cf2.id: None, cf3.id: [self.doc3.id]},
|
||||||
remove_custom_fields=[cf.id],
|
remove_custom_fields=[cf.id],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -306,7 +301,7 @@ class TestBulkEdit(DirectoriesMixin, TestCase):
|
|||||||
)
|
)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
self.doc1.custom_fields.get(field=cf3).value,
|
self.doc1.custom_fields.get(field=cf3).value,
|
||||||
[doc3.id],
|
[self.doc3.id],
|
||||||
)
|
)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
self.doc2.custom_fields.count(),
|
self.doc2.custom_fields.count(),
|
||||||
@ -314,12 +309,11 @@ class TestBulkEdit(DirectoriesMixin, TestCase):
|
|||||||
)
|
)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
self.doc2.custom_fields.get(field=cf3).value,
|
self.doc2.custom_fields.get(field=cf3).value,
|
||||||
[doc3.id],
|
[self.doc3.id],
|
||||||
)
|
)
|
||||||
# assert reflect document link
|
# assert reflect document link
|
||||||
doc3.refresh_from_db()
|
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
doc3.custom_fields.first().value,
|
self.doc3.custom_fields.first().value,
|
||||||
[self.doc2.id, self.doc1.id],
|
[self.doc2.id, self.doc1.id],
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -327,6 +321,21 @@ class TestBulkEdit(DirectoriesMixin, TestCase):
|
|||||||
args, kwargs = self.async_task.call_args
|
args, kwargs = self.async_task.call_args
|
||||||
self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc2.id])
|
self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc2.id])
|
||||||
|
|
||||||
|
# removal of document link cf, should also remove symmetric link
|
||||||
|
bulk_edit.modify_custom_fields(
|
||||||
|
[self.doc3.id],
|
||||||
|
add_custom_fields={},
|
||||||
|
remove_custom_fields=[cf3.id],
|
||||||
|
)
|
||||||
|
self.assertNotIn(
|
||||||
|
self.doc3.id,
|
||||||
|
self.doc1.custom_fields.filter(field=cf3).first().value,
|
||||||
|
)
|
||||||
|
self.assertNotIn(
|
||||||
|
self.doc3.id,
|
||||||
|
self.doc2.custom_fields.filter(field=cf3).first().value,
|
||||||
|
)
|
||||||
|
|
||||||
def test_delete(self):
|
def test_delete(self):
|
||||||
self.assertEqual(Document.objects.count(), 5)
|
self.assertEqual(Document.objects.count(), 5)
|
||||||
bulk_edit.delete([self.doc1.id, self.doc2.id])
|
bulk_edit.delete([self.doc1.id, self.doc2.id])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user