Skip to Content
मेन्यू
This question has been flagged
1 Reply
1749 Views
Hello, I would like to know a way to order and limit the number of records in a list of a many to one field in Odoo 13
many2one field: aprob_id
order_by: name
limit: 5 records


Avatar
Discard
Best Answer

Hi,

Use the following code to limit and order the records in the many2one field.

@api.onchange('aprob_id')

def _onchange_aprob_id(self):


    limited_records = self.env['related.model'].search([], limit=5,order='name')

    return {

         'domain': {'aprob_id': [('id', 'in', limited_records.ids)]}

        }

Hope it helps

Avatar
Discard
Related Posts Replies Views Activity
2
अप्रैल 24
2790
2
जन॰ 24
1236
1
जन॰ 22
3380
0
दिस॰ 15
5233
0
मार्च 15
4558