Hello. I'm trying to add a new field here: https://prnt.sc/syh1w2
It's when you're creating a new contact and add a contact/address to it, a new window pops up which is called "child_ids" as far as I'm aware, that's where I want 'useri_id' field.
I believe that whole child_ids window is supposted to be in "Edit Form: View", this code:
<notebook colspan="4">
<page string="Contacts & Addresses" autofocus="autofocus">
<field name="child_ids" mode="kanban" context="{'default_parent_id': active_id, 'default_street': street, 'default_street2': street2, 'default_city': city, 'default_state_id': state_id, 'default_zip': zip, 'default_country_id': country_id, 'default_lang': lang, 'default_user_id': user_id, 'default_type': 'other'}">
<kanban>
<field name="id"/>
...
...
...
</templates>
</kanban>
<form string="Contact / Address">
However, I can't seem to add anything to it that would work, anyone can give me a hand here? Thanks.