x
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
2
Respuestas
3741
Vistas
x
as far as i know, there isn't any widget called one2many_list in Odoo.
There is onyl widget="one2many"
Hi,
The widget=”one2many_list” is used when we want to view a field as one2many.
In python file
account_ids = fields.One2many('account.fiscal.position.account', 'position_id', string='Account Mapping')
In XML
<field name="account_ids" widget="one2many_list">
<tree string="Values">
<field name="name"/>
</tree>
</field>
Regards
But where is the widget "one2many_list" defined??
I can't find any definition in the code and the browser console tells me "Missing widget"
@Klaus-Dieter Gundermann: Highlighted Ibrahim Boudmir's comment to become an answer. one2many_list just isn't a thing hence you get that error.
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
RegistrarsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
2
ene 24
|
1569 | ||
|
3
ago 25
|
2647 | ||
|
1
may 25
|
2664 | ||
|
1
abr 25
|
3664 | ||
|
1
abr 25
|
4518 |
I was not able to post a piece of xml code in this Forum.
I do not think this is a good way to support developers.
Hi,
Hope this reference will help you.