Skip to content

Commit e0c6a3c

Browse files
JordiBForgeFlowMiquelRForgeFlow
authored andcommitted
[FIX] mis_builder: add sudo to access field_id due missing permissions
Resolve a permission issue when creating report periods with a user without admin rights.
1 parent c5cc9db commit e0c6a3c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

mis_builder/models/mis_report_instance.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,11 @@ def _compute_allowed_cmpcol_ids(self):
331331
def _check_source_aml_model_id(self):
332332
for record in self:
333333
if record.source_aml_model_id:
334-
record_model = record.source_aml_model_id.field_id.filtered(
335-
lambda r: r.name == "account_id"
336-
).relation
334+
record_model = (
335+
record.source_aml_model_id.sudo()
336+
.field_id.filtered(lambda r: r.name == "account_id")
337+
.relation
338+
)
337339
report_account_model = record.report_id.account_model
338340
if record_model != report_account_model:
339341
raise ValidationError(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Resolve a permission issue when creating report periods with a user without admin rights.

0 commit comments

Comments
 (0)