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 b4cde5c commit 963cd1fCopy full SHA for 963cd1f
server/tests/data/addons/module_1/models/diagnostics.py
@@ -10,6 +10,8 @@ class ModelWithDiagnostics(models.Model):
10
test_models = fields.One2many("pygls.tests.base_test_model", "diagnostics_id")
11
test_models_wrong_dep = fields.One2many("module_2.custom_model", "diag_id") # OLS03015, OLS03021
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
date = fields.Date()
16
17
to_compute = fields.Integer(compute="_compute_field")
0 commit comments