Skip to content

Commit e8b4005

Browse files
committed
IMP: bi_sql_editor raise UserError when matching on field is not found
When creating a new SQL view, if the naming is not met you end with that have an invalid definition. => the model is not found. This will lead to errors when trying to load the tree view The goal here is to raise an error and warn the user about it.
1 parent efa05ba commit e8b4005

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bi_sql_editor/models/bi_sql_view_field.py

+2
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,8 @@ def create(self, vals):
168168
many2one_model_id = (
169169
self.env["ir.model"].search([("model", "=", model_name)]).id
170170
)
171+
if not many2one_model_id:
172+
raise UserError(_("There is no relation matching for the field %s", field_without_prefix))
171173

172174
vals.update(
173175
{

0 commit comments

Comments
 (0)