콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3 답글
6252 화면

Hi, I noticed that the API search_read method can't return more than 100 records, can you confirm that? Is it possibile to avoid that?

Thank you in advance.

아바타
취소
작성자 베스트 답변

Thank you very much

아바타
취소
베스트 답변

HI

The search_read method of the XML-RPC API is used to search and read records from the database. By default, this method returns a maximum of 100 records, to prevent overloading the system with too many records.

However, this limit can be overridden by passing the limit parameter to the method with the desired number of records to return. For example, to return 200 records, you would call the method like this: 

search_read(model, domain, fields, offset=0, limit=200)

아바타
취소
베스트 답변

Hi,

The default limit for the search read method in the Odoo API is 100 records.
However, by passing the limit argument in the method's options, you can define a higher limit.

For instance, you would execute search read(limit=500) to get up to 500 records.

Additionally, you can use the offset parameter to specify a starting point for the records. The offset parameter can be used in conjunction with the limit parameter to retrieve large amounts of data.

For example, you would execute a search read(limit=100,offset=100) to return records from 100 to 200.

Regards

아바타
취소
관련 게시물 답글 화면 활동
1
3월 22
4462
1
2월 22
4444
1
7월 20
8632
1
1월 24
2364
0
9월 23
27