콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
2992 화면
Hello, how could I limit the number of records shown by a many to one field and order the selection?


아바타
취소
베스트 답변

Hi,

You can use this module from OCA.It lets you define the number of records to be shown from settings.

https://apps.odoo.com/apps/modules/16.0/web_m2x_options/


Hope it helps

아바타
취소
베스트 답변
Try this for limit and ordered records,

@api.onchange('many2one_field') def limit_many2one_records(self): limit = 5 limited_records = self.env['related.model'].search([], limit=limit,order='order_field') return { 'domain': {'many2one_field': [('id', 'in', limited_records.ids)]} }
아바타
취소
관련 게시물 답글 화면 활동
1
4월 24
1873
1
7월 20
8851
2
7월 18
8774
1
1월 22
3516
0
12월 15
5419