Hi, i have a problem. When i create a project via project->create 2 projects are created. How this can be fixed?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Akuntansi
- Inventaris
- PoS
- Project
- MRP
Pertanyaan ini telah diberikan tanda
Hi daouda,
I have faced this kind of problem before. And I came to know that I've override create() method & then called super() and in return value I called super. So because of calling super two times I got record created two times.
Here is my problematic code,
def create(self, cr, uid, vals, context=None):
# My calculation & code
res = super(class_name, self).create(cr, uid, vals, context)
return super(class_name, self).create(cr, uid, vals, context)
By calling super two times record was created twice.
Instead that I did like this,
def create(self, cr, uid, vals, context=None):
# My calculation & code
res = super(class_name, self).create(cr, uid, vals, context)
return res
I am not sure you have done like this or not? But it is my suggestion, it is one of the possibility which is why records are created two times.
Hope this is helpful to solve your problem.
Thanks.
Menikmati diskusi? Jangan hanya membaca, ikuti!
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
Daftar