How to set default value from parent form in one2many field while creating records in one2many field, before saving parent form
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kirjanpito
- Varastointi
- PoS
- Project
- MRP
Tämä kysymys on merkitty
4
Vastaukset
21044
Näkymät
Hi,
Using context you can achieve it.
See the sample code,
<field name="timesheet_ids" context="{'default_project_id': project_id}">
<tree editable="bottom" string="Timesheet Activities" default_order="date">
<field name="date"/>
<field name="user_id" invisible="1"/>
<field name="employee_id" required="1"/>
<field name="name"/>
<field name="unit_amount" string="Duration" widget="float_time"/>
<field name="project_id" invisible="1"/>
</tree>
</field>
Here,
context="{'default_field_in_one2many': field_in_parent}"
Thanks
Thank you , it is correct
How we can pass custom one2many field to sale.order.line one2many field please.?
Nautitko keskustelusta? Älä vain lue, vaan osallistu!
Luo tili jo tänään nauttiaksesi yksinoikeusominaisuuksista ja osallistuaksesi mahtavaan yhteisöömme!
RekisteröidyAiheeseen liittyviä artikkeleita | Vastaukset | Näkymät | Toimenpide | |
---|---|---|---|---|
|
0
marrask. 23
|
1417 | ||
|
1
syysk. 23
|
3337 | ||
|
2
lokak. 22
|
21289 | ||
|
1
kesäk. 22
|
6282 | ||
|
1
kesäk. 22
|
3105 |
To get parent value in one2many we may use context in XML.
Reference: https://goo.gl/XXg5D3
There is a complete guide about context hope this will helps you and others.