Skip to Content
Menu
This question has been flagged
1 Reply
4364 Views

What i want is easy to understand but weird to ask .

to make it simple , i have a One2many view with fields : sequence ,article ,lot , location ,description , quantity

i want to disable sort by this fields (except sequence) while editing 

just sorted by sequence


Avatar
Discard
Best Answer

Hi,

Here you can use the '_order ' attribute of odoo which is used to sort the recordset in list view either in ascending or descending. 

Go to the class definition python code of your co-model of the One2many field, there we can set the attributes _name, _description, _rec_name, etc. Like that, _order can also be given as

_order = "sequence"

If you want to sort in descending order, give

_order = "sequence desc"

Regards

Avatar
Discard
Related Posts Replies Views Activity
1
Dec 22
6218
2
Oct 20
4387
1
Apr 24
12624
1
Oct 19
6759
0
Aug 19
3783