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
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
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.
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati