Skip to content

Commit 338aef2

Browse files
authored
Merge pull request #2392 from anehx/fix-validation-context
fix(structure): fix passing of global validation context for structure
2 parents 8cccc7e + 2b1f7e4 commit 338aef2

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

caluma/caluma_form/domain_logic.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from caluma.caluma_core.exceptions import ConfigurationError
1010
from caluma.caluma_core.models import BaseModel
1111
from caluma.caluma_core.relay import extract_global_id
12-
from caluma.caluma_form import models, structure, validators
12+
from caluma.caluma_form import models, validators
1313
from caluma.caluma_form.utils import recalculate_field
1414
from caluma.caluma_user.models import BaseUser
1515
from caluma.utils import update_model
@@ -172,7 +172,9 @@ def recalculate_dependents(answer, update_info):
172172
return
173173
log.debug("update_calc_dependents(%s)", answer)
174174

175-
struc = structure.FieldSet(answer.document.family)
175+
struc = validators.DocumentValidator().get_validation_context(
176+
answer.document.family
177+
)
176178
field = struc.find_field_by_answer(answer)
177179
if not field: # pragma: no cover
178180
# not covering this, because it's a developer error
@@ -350,7 +352,7 @@ def _initialize_calculated_answers(document):
350352
In order to do this efficiently, we get all calculated questions with
351353
their dependents, sort them topoligically, and then update their answer.
352354
"""
353-
struc = structure.FieldSet(document.family)
355+
struc = validators.DocumentValidator().get_validation_context(document.family)
354356

355357
calculated_fields = (
356358
field

caluma/caluma_form/tests/test_question.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1295,5 +1295,5 @@ def test_init_of_calc_questions_queries(
12951295
question__calc_expression="'table'|answer|mapby('column')|sum + 'top_question'|answer + 'sub_question'|answer",
12961296
)
12971297

1298-
with django_assert_num_queries(31):
1298+
with django_assert_num_queries(34):
12991299
api.save_answer(questions_dict["top_question"], document, value="1")

caluma/caluma_form/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from logging import getLogger
22

3-
from caluma.caluma_form import models, structure
3+
from caluma.caluma_form import models, structure, validators
44
from caluma.caluma_form.jexl import QuestionJexl
55

66
log = getLogger(__name__)
@@ -87,6 +87,6 @@ def recalculate_dependent_fields(
8787
def update_or_create_calc_answer(question, document, update_dependents=True):
8888
"""Recalculate all answers in the document after calc dependency change."""
8989

90-
root = structure.FieldSet(document.family)
90+
root = validators.DocumentValidator().get_validation_context(document.family)
9191
for field in root.find_all_fields_by_slug(question.slug):
9292
recalculate_field(field, update_recursively=update_dependents)

caluma/caluma_form/validators.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _structure_field(self, document, question, validation_context):
116116

117117
# If we need to create the context ourselves here, we'll need to fetch
118118
# the field from the context.
119-
validation_context = structure.FieldSet(document)
119+
validation_context = DocumentValidator().get_validation_context(document)
120120
return validation_context.get_field(question.slug), validation_context
121121

122122
def _evaluate_options_jexl(
@@ -381,7 +381,7 @@ def validate(
381381
data_source_context=data_source_context,
382382
)
383383

384-
def get_validation_context(self, document):
384+
def get_validation_context(self, document, _fastloader=None):
385385
relevant_case: Case = (
386386
getattr(document, "case", None)
387387
or getattr(getattr(document, "work_item", None), "case", None)
@@ -425,7 +425,11 @@ def get_validation_context(self, document):
425425
}
426426
}
427427

428-
return structure.FieldSet(document, global_context=context)
428+
return structure.FieldSet(
429+
document,
430+
global_context=context,
431+
_fastloader=_fastloader,
432+
)
429433

430434
def visible_questions(self, document, validation_context=None) -> list[Question]:
431435
"""Evaluate the visibility of the questions for the given context.

0 commit comments

Comments
 (0)