Skip to content

Commit 6d738e8

Browse files
JordiBForgeFlowMiquelRForgeFlow
authored andcommitted
[FIX] mis_builder: add sudo to access field_id due missing permissions
The user may not have permission to access to the field field_id in ir.model, which corresponds to an ir.model.fields record. It's a technical issue in nature, so we should use sudo to access it without error.
1 parent 83e8888 commit 6d738e8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

mis_builder/models/mis_report_instance.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -330,9 +330,11 @@ def _compute_allowed_cmpcol_ids(self):
330330
def _check_source_aml_model_id(self):
331331
for record in self:
332332
if record.source_aml_model_id:
333-
record_model = record.source_aml_model_id.field_id.filtered(
334-
lambda r: r.name == "account_id"
335-
).relation
333+
record_model = (
334+
record.source_aml_model_id.sudo()
335+
.field_id.filtered(lambda r: r.name == "account_id")
336+
.relation
337+
)
336338
report_account_model = record.report_id.account_model
337339
if record_model != report_account_model:
338340
raise ValidationError(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
The user may not have permission to access to the field field_id in ir.model, which corresponds to an ir.model.fields record.
2+
It's a technical issue in nature, so we should use sudo to access it without error.

0 commit comments

Comments
 (0)