mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: allow bulk edit with existing fields (#6625)
This commit is contained in:
parent
ce08400f4e
commit
caec0ed4d1
@ -140,16 +140,12 @@ def modify_custom_fields(doc_ids: list[int], add_custom_fields, remove_custom_fi
|
||||
qs = Document.objects.filter(id__in=doc_ids).only("pk")
|
||||
affected_docs = list(qs.values_list("pk", flat=True))
|
||||
|
||||
fields_to_add = []
|
||||
for field in add_custom_fields:
|
||||
for doc_id in affected_docs:
|
||||
fields_to_add.append(
|
||||
CustomFieldInstance(
|
||||
document_id=doc_id,
|
||||
field_id=field,
|
||||
),
|
||||
CustomFieldInstance.objects.update_or_create(
|
||||
document_id=doc_id,
|
||||
field_id=field,
|
||||
)
|
||||
CustomFieldInstance.objects.bulk_create(fields_to_add)
|
||||
CustomFieldInstance.objects.filter(
|
||||
document_id__in=affected_docs,
|
||||
field_id__in=remove_custom_fields,
|
||||
|
Loading…
x
Reference in New Issue
Block a user