Hi everyone,
I'm using Odoo 10 and try to customize the applicant form. I add the new model to Odoo, and change the Applicant model with adding a new fields:
comment_ids : one2many
And I update the Applicant form view by adding information of "Comment" object:
<field name="x_comment_ids">
<tree>
<field name="x_name"/>
<field name="x_applicant_id"/>
</tree>
</field>
Now, the comment display per applicant is correct, .
But, If I "Add new item" for "comment" from applicant form, I have to select the applicant from the list.
So, is there anyway to pass the current applicant to the new comment form, and I don't have to select it again?
Thank you