Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
778 Visualizzazioni

In Odoo 16, how can I configure my model so that newly created records appear at the top of tree views by default?

Avatar
Abbandona
Autore Risposta migliore

In your model's Python file, set the _order attribute to 'id desc' as shown below:

from odoo import models, fields 
class YourModel(models.Model): 
 _name = 'your.model' 
 _description = 'Your Model Description' 
 _order = 'id desc'

Alternative: Use the create_date Field:
_order = 'create_date desc'

Note:
The _order attribute sets the default sorting for all views associated with the model. If you need different sorting orders for different views, you can specify the default_order attribute directly in the view's XML definition. 

For example:

<tree default_order="create_date desc, id desc">

    <!-- Field definitions -->

</tree>



Best Regards,

NIZAMUDHEEN MJ
Accurates

Avatar
Abbandona
Risposta migliore

Hi

add in your model python file add _order attribute

_order = 'create_date desc'

example,

Its working file and newly created record first

Thanks

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
1
lug 25
254
3
apr 25
4612
0
giu 24
1367
1
gen 24
2040
5
nov 23
42943