In Odoo 16, how can I configure my model so that newly created records appear at the top of tree views by default?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
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
Hi
add in your model python file add _order attribute
_order = 'create_date desc'
example,
Its working file and newly created record first
Thanks
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
1
juil. 25
|
255 | ||
|
3
avr. 25
|
4636 | ||
|
0
juin 24
|
1368 | ||
|
1
janv. 24
|
2044 | ||
|
5
nov. 23
|
42951 |