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?
Diese Frage wurde gekennzeichnet
2
Antworten
6593
Ansichten
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
Diskutieren Sie gerne? Treten Sie bei, statt nur zu lesen!
Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!
Registrieren| Verknüpfte Beiträge | Antworten | Ansichten | Aktivität | |
|---|---|---|---|---|
|
Error Restoring database
Gelöst
|
|
1
Okt. 15
|
28320 | |
|
|
0
März 15
|
7166 | ||
|
|
0
März 16
|
6748 | ||
|
|
1
März 15
|
9420 | ||
|
|
0
Mai 26
|
2 |
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