We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963cd1f commit 57f13abCopy full SHA for 57f13ab
server/tests/data/addons/module_1/models/diagnostics.py
@@ -12,6 +12,8 @@ class ModelWithDiagnostics(models.Model):
12
test_models_wrong_dep_kw = fields.One2many(comodel_name="module_2.custom_model", inverse_name="diag_id") # OLS03015, OLS03021
13
test_no_model = fields.Many2one("non.existent.model") # OLS03016
14
test_no_model_kw = fields.Many2one(comodel_name="non.existent.model") # OLS03016
15
+ test_related = fields.Integer(related="test_models.test_int")
16
+ test_related_wrong = fields.Integer(related="test_models.diagnostics_ids") #OLS03017
17
date = fields.Date()
18
19
to_compute = fields.Integer(compute="_compute_field")
0 commit comments