Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
3211 Ansichten

Hello,

I would like to ask for an advice about many2one fields please.

I created a model called 'mymodel' which is connected to 'project.issue' like this:

class project_issue_mymodel(models.Model):
_inherit = 'project.issue'
mymodel_id = fields.Many2one('mymodel',string='mymodel data', ondelete='cascade')

When I want to use 'mymodel_id' field in a view it works just fine when I add this into the xml file:

<field name="mymodel_id" />

Then 'name' of that record is displayed there.

But when I want to customize this further and display some more fields from the connected 'mymodel' record nothing more is displayed there. Basically everything inside <field name="mymodel_id">...</field> is ignored.I haven't found any way to display fields from my connected 'mymodel' record. This is my source code:

#mymodel.py file

class mymodel(models.Model):
_name = 'mymodel'
testfield1 = fields.Char()
testfield2 = fields.Char()

#project.issue view

<field name="mymodel_id">
<form>
<field name="id" />
<field name="testfield1" />
<field name="testfield2" />
</form>
</field>

Would you please give me some advice about this? Is this even possible?

Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Jan. 21
4079
5
Aug. 24
46887
0
Mai 24
46
2
Apr. 24
2686
3
Juni 23
6041