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

I have a function which creates 100s of records in a model running in a loop. However, I have noticed that many times, not all the records are created and some have been skipped. If I try again, it works, but the issue seems to be random. I assumed that overloading the create record statements caused the postgres server error out, but I have no idea. The logs also do not mentioned any issues. Could someone please tell me if there is any way of verifying that each record is created before continuing the iteration?

아바타
취소

could you pls post your code, I'm creating records by code, varying in numbers, max number I created was 25 with no fail. let us check your code to get more insight into your problem

베스트 답변

Hi, Shawn

Thanks for posting the above question. You can use "self._cr.commit()" by end of every iteration. Like below example,

for data in listdata:
    self.env['model'].create(data)
    self._cr.commit()
Thanks,
Ashish Singh (Team Lead)
Webkul Software Private Limited
아바타
취소
관련 게시물 답글 화면 활동
1
10월 15
25558
0
3월 15
5121
0
3월 16
5071
1
3월 15
7015
3
7월 25
8649