İçereği Atla
Menü
Bu soru işaretlendi
2 Cevaplar
832 Görünümler

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

Avatar
Vazgeç
Üretici En İyi Yanıt

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
Vazgeç
En İyi Yanıt

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
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
1
Tem 25
324
3
Nis 25
4732
0
Haz 24
1422
1
Oca 24
2111
5
Kas 23
43063