Is possible to order the line in a one2many without to modify the original class order?
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
Finally, I found a way to manage this, downloading this module:
https://www.odoo.com/apps/modules/7.0/one2many_sorted/
Then, I overrided the one2many whose order I want to alter, in my case the field was child_ids, and I wanted it to be ordered by email:
'child_ids' : one2many_sorted.one2many_sorted(
'res.partner',
'parent_id',
'Contacts',
order='email',
)
Note that the only difference between this field and the one2many is the param order (you can use a couple new more though, search and set).
I also imported the library at the top of the file:
import one2many_sorted
Now, I'm seeing the tree and kanban of res.partner ordered by name, but this one2many is ordered by email. Great!
well done Juan !! :)
Just add attribute default_order to tree viewdefault_order="date desc"
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
0
mar 15
|
4619 | ||
|
0
sept 17
|
10748 | ||
|
1
ene 25
|
1782 | ||
Pre-fill one2many field from action
Resuelto
|
|
2
abr 24
|
1778 | |
|
1
ene 24
|
2182 |
This could be also useful for open a tree view with a particular order by clause... maybe a context parameter like order_by?
Finally, was it possible? Now I have the same question.