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?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
2
Réponses
4627
Vues
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
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
Error Restoring database
Résolu
|
|
1
oct. 15
|
25411 | |
|
0
mars 15
|
4999 | ||
|
0
mars 16
|
4939 | ||
|
1
mars 15
|
6905 | ||
|
1
mai 25
|
801 |
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