mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix some handling, add tests
This commit is contained in:
parent
3ad2eaf1e3
commit
e2888f12d7
@ -576,8 +576,6 @@ def cleanup_custom_field_deletion(sender, instance: CustomField, **kwargs):
|
|||||||
f"Removing custom field {instance} from sort field of {views_with_sort_updated} views",
|
f"Removing custom field {instance} from sort field of {views_with_sort_updated} views",
|
||||||
)
|
)
|
||||||
|
|
||||||
# Remove from workflow actions
|
|
||||||
|
|
||||||
|
|
||||||
def add_to_index(sender, document, **kwargs):
|
def add_to_index(sender, document, **kwargs):
|
||||||
from documents import index
|
from documents import index
|
||||||
@ -772,29 +770,38 @@ def run_workflows(
|
|||||||
if action.assign_custom_fields.exists():
|
if action.assign_custom_fields.exists():
|
||||||
if not use_overrides:
|
if not use_overrides:
|
||||||
for field in action.assign_custom_fields.all():
|
for field in action.assign_custom_fields.all():
|
||||||
if not CustomFieldInstance.objects.filter(
|
value_field_name = CustomFieldInstance.get_value_field_name(
|
||||||
|
data_type=field.data_type,
|
||||||
|
)
|
||||||
|
args = {
|
||||||
|
value_field_name: action.assign_custom_fields_values.get(
|
||||||
|
str(field.pk),
|
||||||
|
None,
|
||||||
|
),
|
||||||
|
}
|
||||||
|
# for some reason update_or_create doesn't work here
|
||||||
|
instance = CustomFieldInstance.objects.filter(
|
||||||
field=field,
|
field=field,
|
||||||
document=document,
|
document=document,
|
||||||
).exists():
|
).first()
|
||||||
# can be triggered on existing docs, so only add the field if it doesn't already exist
|
if instance:
|
||||||
value_field_name = CustomFieldInstance.get_value_field_name(
|
setattr(instance, value_field_name, args[value_field_name])
|
||||||
data_type=field.data_type,
|
instance.save()
|
||||||
|
else:
|
||||||
|
CustomFieldInstance.objects.create(
|
||||||
|
**args,
|
||||||
|
field=field,
|
||||||
|
document=document,
|
||||||
)
|
)
|
||||||
args = {
|
|
||||||
"field": field,
|
|
||||||
"document": document,
|
|
||||||
value_field_name: action.assign_custom_fields_values.get(
|
|
||||||
field.pk,
|
|
||||||
None,
|
|
||||||
),
|
|
||||||
}
|
|
||||||
CustomFieldInstance.objects.create(**args)
|
|
||||||
else:
|
else:
|
||||||
if overrides.custom_fields is None:
|
if overrides.custom_fields is None:
|
||||||
overrides.custom_fields = {}
|
overrides.custom_fields = {}
|
||||||
overrides.custom_fields.update(
|
overrides.custom_fields.update(
|
||||||
{
|
{
|
||||||
field.pk: action.assign_custom_fields_values.get(field.pk, None)
|
field.pk: action.assign_custom_fields_values.get(
|
||||||
|
str(field.pk),
|
||||||
|
None,
|
||||||
|
)
|
||||||
for field in action.assign_custom_fields.all()
|
for field in action.assign_custom_fields.all()
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -133,6 +133,9 @@ class TestWorkflows(
|
|||||||
action.assign_change_groups.add(self.group1.pk)
|
action.assign_change_groups.add(self.group1.pk)
|
||||||
action.assign_custom_fields.add(self.cf1.pk)
|
action.assign_custom_fields.add(self.cf1.pk)
|
||||||
action.assign_custom_fields.add(self.cf2.pk)
|
action.assign_custom_fields.add(self.cf2.pk)
|
||||||
|
action.assign_custom_fields_values = {
|
||||||
|
self.cf2.pk: 42,
|
||||||
|
}
|
||||||
action.save()
|
action.save()
|
||||||
w = Workflow.objects.create(
|
w = Workflow.objects.create(
|
||||||
name="Workflow 1",
|
name="Workflow 1",
|
||||||
@ -209,6 +212,10 @@ class TestWorkflows(
|
|||||||
list(document.custom_fields.all().values_list("field", flat=True)),
|
list(document.custom_fields.all().values_list("field", flat=True)),
|
||||||
[self.cf1.pk, self.cf2.pk],
|
[self.cf1.pk, self.cf2.pk],
|
||||||
)
|
)
|
||||||
|
self.assertEqual(
|
||||||
|
document.custom_fields.get(field=self.cf2.pk).value,
|
||||||
|
42,
|
||||||
|
)
|
||||||
|
|
||||||
info = cm.output[0]
|
info = cm.output[0]
|
||||||
expected_str = f"Document matched {trigger} from {w}"
|
expected_str = f"Document matched {trigger} from {w}"
|
||||||
@ -1215,11 +1222,11 @@ class TestWorkflows(
|
|||||||
def test_document_updated_workflow_existing_custom_field(self):
|
def test_document_updated_workflow_existing_custom_field(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
- Existing workflow with UPDATED trigger and action that adds a custom field
|
- Existing workflow with UPDATED trigger and action that assigns a custom field with a value
|
||||||
WHEN:
|
WHEN:
|
||||||
- Document is updated that already contains the field
|
- Document is updated that already contains the field
|
||||||
THEN:
|
THEN:
|
||||||
- Document update succeeds without trying to re-create the field
|
- Document update succeeds and updates the field
|
||||||
"""
|
"""
|
||||||
trigger = WorkflowTrigger.objects.create(
|
trigger = WorkflowTrigger.objects.create(
|
||||||
type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
|
type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED,
|
||||||
@ -1227,6 +1234,8 @@ class TestWorkflows(
|
|||||||
)
|
)
|
||||||
action = WorkflowAction.objects.create()
|
action = WorkflowAction.objects.create()
|
||||||
action.assign_custom_fields.add(self.cf1)
|
action.assign_custom_fields.add(self.cf1)
|
||||||
|
action.assign_custom_fields_values = {self.cf1.pk: "new value"}
|
||||||
|
action.save()
|
||||||
w = Workflow.objects.create(
|
w = Workflow.objects.create(
|
||||||
name="Workflow 1",
|
name="Workflow 1",
|
||||||
order=0,
|
order=0,
|
||||||
@ -1251,6 +1260,9 @@ class TestWorkflows(
|
|||||||
format="json",
|
format="json",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
doc.refresh_from_db()
|
||||||
|
self.assertEqual(doc.custom_fields.get(field=self.cf1).value, "new value")
|
||||||
|
|
||||||
def test_document_updated_workflow_merge_permissions(self):
|
def test_document_updated_workflow_merge_permissions(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user