Ir al contenido
Menú
Se marcó esta pregunta
4 Respuestas
9509 Vistas

Hi Everyone!

I need to sort the data by Next Activity Deadline in CRM which is relational field. By default in Odoo, we don't have right to sort any relational field.

Any idea how to do sorting of this relational field?

Avatar
Descartar

specifically which relation field many2one, x2many? field name?

Mejor respuesta

Hi. Do you tested storing the field? Odoo needs stored field to do a sort.

Avatar
Descartar
Mejor respuesta

I had a similar problem and I solved it by creating a second computed field and use this where required.

Example to get the idea:

@api.multi
def _compute_sorted_related_records(self):
for record in self:
record.sorted_related_records = record.related_records.sorted(
key=lambda r: r.my_sort_field
).ids

sorted_related_records = fields.Many2many(
'related.model',
compute=_compute_sorted_related_records,
)
Avatar
Descartar
Autor Mejor respuesta

Ravi Gadhia

I need to sort activity_date_deadline field in CRM which is datetime type field and that field is not stored in database

Avatar
Descartar
Mejor respuesta

You can add '_order' comment to sort record while listing out in list view. In that you can assign your field name and sorting method.


Avatar
Descartar
Autor

Relational field is not working in _order method

Publicaciones relacionadas Respuestas Vistas Actividad
0
feb 25
1326
0
ene 25
1147
1
dic 24
1486
1
jun 22
5636
1
feb 19
4989